/* =========================================================
   BRAINFOOD CLOUD — PREMIUM NAVIGATION & 2026 SITE UPGRADE
   Loaded after styles.css so the existing visual language is
   preserved while shared chrome and new experiences evolve.
   ========================================================= */

@property --header-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

body.navigation-open {
  overflow: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

/* SHARED HEADER */

.header,
.header.scrolled {
  min-height: 88px;
  padding: 12px clamp(24px, 4vw, 68px);
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(5, 6, 17, 0.92), rgba(5, 6, 17, 0.71));
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.13);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
  transition:
    min-height 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    padding 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.header::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: -1px;
  left: 5%;
  height: 1px;
  pointer-events: none;
  opacity: 0.62;
  background: linear-gradient(90deg, transparent, rgba(139, 108, 255, 0.42), rgba(88, 220, 255, 0.2), transparent);
}

.header.scrolled {
  min-height: 76px;
  background: rgba(4, 5, 15, 0.9);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.brand.brand-lockup {
  position: relative;
  z-index: 3;
  width: clamp(218px, 18.5vw, 282px);
  flex: 0 0 auto;
  gap: 0;
}

.brand.brand-lockup img,
.header.scrolled .brand.brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 63px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 22px rgba(139, 108, 255, 0.18));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand.brand-lockup:hover img {
  filter: drop-shadow(0 0 25px rgba(156, 132, 255, 0.34));
  transform: translateY(-1px);
}

.header-navigation {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 38px);
}

.header .nav,
.home-header .nav {
  position: relative;
  left: auto;
  min-height: 52px;
  margin: 0 auto;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 3px;
  transform: none;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.57);
  background: rgba(255, 255, 255, 0.027);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.12);
}

.header .nav > a,
.nav-dropdown-trigger {
  position: relative;
  min-height: 40px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.57);
  background: transparent;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.135em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.header .nav > a::before,
.nav-dropdown-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(120deg, rgba(139, 108, 255, 0.13), rgba(88, 220, 255, 0.04)) padding-box;
  transition: opacity 0.25s ease;
}

.header .nav > a:hover,
.header .nav > a.active,
.header .nav > a[aria-current="page"],
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger,
.nav-dropdown.active .nav-dropdown-trigger {
  color: #fff;
}

.header .nav > a:hover::before,
.header .nav > a.active::before,
.header .nav > a[aria-current="page"]::before,
.nav-dropdown:hover .nav-dropdown-trigger::before,
.nav-dropdown:focus-within .nav-dropdown-trigger::before,
.nav-dropdown.is-open .nav-dropdown-trigger::before,
.nav-dropdown.active .nav-dropdown-trigger::before {
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  gap: 7px;
}

.nav-dropdown-trigger > span,
.nav-dropdown-trigger > svg {
  position: relative;
  z-index: 1;
}

.nav-dropdown-trigger svg {
  width: 13px;
  height: 13px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg,
.nav-dropdown.is-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
  width: min(448px, calc(100vw - 34px));
  padding: 12px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -10px) scale(0.965);
  transform-origin: 50% 0;
  border: 1px solid rgba(176, 158, 255, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 0%, rgba(139, 108, 255, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018) 45%),
    rgba(6, 7, 19, 0.97);
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.62),
    0 0 55px rgba(111, 80, 255, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(30px) saturate(135%);
  backdrop-filter: blur(30px) saturate(135%);
  transition:
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.42s;
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(206, 194, 255, 0.8), transparent);
  box-shadow: 0 0 22px rgba(139, 108, 255, 0.55);
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 0s;
}

.nav-dropdown-link {
  position: relative;
  min-height: 92px;
  margin-top: 6px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    border-color 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-link,
.nav-dropdown:focus-within .nav-dropdown-link,
.nav-dropdown.is-open .nav-dropdown-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-link:nth-of-type(1),
.nav-dropdown:focus-within .nav-dropdown-link:nth-of-type(1),
.nav-dropdown.is-open .nav-dropdown-link:nth-of-type(1) { transition-delay: 0.055s; }
.nav-dropdown:hover .nav-dropdown-link:nth-of-type(2),
.nav-dropdown:focus-within .nav-dropdown-link:nth-of-type(2),
.nav-dropdown.is-open .nav-dropdown-link:nth-of-type(2) { transition-delay: 0.095s; }
.nav-dropdown:hover .nav-dropdown-link:nth-of-type(3),
.nav-dropdown:focus-within .nav-dropdown-link:nth-of-type(3),
.nav-dropdown.is-open .nav-dropdown-link:nth-of-type(3) { transition-delay: 0.135s; }

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  border-color: rgba(179, 160, 255, 0.28);
  background:
    linear-gradient(115deg, rgba(139, 108, 255, 0.16), rgba(88, 220, 255, 0.05));
}

.nav-dropdown-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 165, 255, 0.18);
  border-radius: 17px;
  color: #b9a7ff;
  background: rgba(139, 108, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-dropdown-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.nav-dropdown-copy strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.nav-dropdown-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11.5px;
  line-height: 1.42;
}

.nav-dropdown-link em {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nav-dropdown-link:nth-of-type(2) .nav-dropdown-icon {
  color: #7ee8ff;
  border-color: rgba(88, 220, 255, 0.2);
  background: rgba(88, 220, 255, 0.07);
}

.nav-dropdown-link:nth-of-type(3) .nav-dropdown-icon {
  color: #77edc8;
  border-color: rgba(25, 230, 164, 0.2);
  background: rgba(25, 230, 164, 0.065);
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-action {
  --header-border-angle: 0deg;
  position: relative;
  min-width: 92px;
  min-height: 45px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 11px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  background:
    linear-gradient(#080918, #080918) padding-box,
    conic-gradient(from var(--header-border-angle), rgba(255, 255, 255, 0.1), rgba(139, 108, 255, 0.9), rgba(88, 220, 255, 0.76), rgba(255, 255, 255, 0.1) 70%) border-box;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: headerBorderOrbit 4.8s linear infinite;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.25s ease, box-shadow 0.3s ease;
}

.header-action::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -55%;
  z-index: -1;
  width: 45%;
  height: 300%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(24deg);
  transition: left 0.62s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.header-action:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.31),
    0 0 28px rgba(139, 108, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-action:hover::before {
  left: 112%;
  opacity: 1;
}

.header-trial {
  min-width: 105px;
  color: #080918;
  background:
    linear-gradient(112deg, #ffffff, #ded5ff 58%, #bdeeff) padding-box,
    conic-gradient(from var(--header-border-angle), #ffffff, #7f62ff, #55dcff, #ffffff) border-box;
  box-shadow:
    0 15px 34px rgba(102, 77, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.header-trial:hover {
  color: #070812;
  box-shadow:
    0 19px 45px rgba(102, 77, 255, 0.31),
    0 0 30px rgba(109, 225, 255, 0.14);
}

@keyframes headerBorderOrbit {
  to { --header-border-angle: 360deg; }
}

/* Match the Log In button's orbiting border on the homepage platform cards. */

#platform .feature-card {
  --header-border-angle: 0deg;
  border-color: transparent;
  background:
    radial-gradient(circle at top right, rgba(139, 108, 255, 0.18), transparent 42%) padding-box,
    linear-gradient(180deg, rgba(14, 16, 38, 0.96), rgba(5, 6, 18, 0.96)) padding-box,
    conic-gradient(
      from var(--header-border-angle),
      rgba(255, 255, 255, 0.1),
      rgba(139, 108, 255, 0.9),
      rgba(88, 220, 255, 0.76),
      rgba(255, 255, 255, 0.1) 70%
    ) border-box;
  animation: headerBorderOrbit 4.8s linear infinite;
}

#platform .feature-card::before,
#platform .feature-card::after {
  content: none;
  animation: none;
}

#platform .feature-grid .feature-card:hover {
  border-color: transparent;
}

.feature-card-title-ai {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card-title-ai img {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  filter: drop-shadow(0 0 13px rgba(139, 108, 255, 0.48));
}

.nav-toggle {
  position: relative;
  z-index: 4;
  width: 45px;
  height: 45px;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.header.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg); }
.header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.header.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg); }

/* SOLUTIONS PRODUCT TITLES */

.solution-card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.16em 0.22em;
  overflow: visible;
}

.hero-reveal-space {
  display: inline;
  width: auto;
  white-space: normal;
}

.solution-role {
  display: inline-flex;
  align-items: center;
  min-height: 0.78em;
  padding: 0.19em 0.36em 0.16em;
  border: 1px solid rgba(190, 174, 255, 0.24);
  border-radius: 999px;
  color: #d7ccff;
  background:
    linear-gradient(120deg, rgba(139, 108, 255, 0.17), rgba(88, 220, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 28px rgba(139, 108, 255, 0.08);
  font-size: 0.38em;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.015em;
  vertical-align: middle;
}

.solution-publio .solution-role {
  border-color: rgba(25, 230, 164, 0.23);
  color: #8ef4d1;
  background: rgba(25, 230, 164, 0.08);
}

.solution-cleon .solution-role {
  border-color: rgba(255, 138, 42, 0.25);
  color: #ffc08c;
  background: rgba(255, 138, 42, 0.08);
}

/* AI ENGINE — SHARED PRODUCT LANGUAGE */

.solution-ai-engine {
  background:
    radial-gradient(circle at 20% 20%, rgba(88, 220, 255, 0.12), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(139, 108, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 18, 0.82);
}

.solution-ai-engine .solution-eyebrow > span {
  color: #9eeaff;
  background: rgba(88, 220, 255, 0.08);
  border-color: rgba(88, 220, 255, 0.28);
  box-shadow: 0 0 25px rgba(88, 220, 255, 0.08);
}

.solution-ai-engine .solution-role {
  border-color: rgba(128, 213, 255, 0.25);
  color: #bcefff;
  background: linear-gradient(120deg, rgba(139, 108, 255, 0.13), rgba(88, 220, 255, 0.09));
}

.solution-ai-engine .solution-link span {
  color: #77e6ff;
}

.solution-ai-mark {
  width: 0.78em;
  height: 0.78em;
  flex: 0 0 0.78em;
  display: grid;
  place-items: center;
  border: 1px solid rgba(142, 220, 255, 0.22);
  border-radius: 0.25em;
  background: linear-gradient(145deg, rgba(139, 108, 255, 0.13), rgba(88, 220, 255, 0.07));
  box-shadow: 0 0 34px rgba(105, 179, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.solution-ai-mark img {
  width: 62%;
  height: 62%;
}

.ai-engine-console {
  position: relative;
  padding: 17px;
  display: grid;
  grid-template-rows: auto auto auto minmax(92px, 1fr);
  gap: 10px;
  overflow: hidden;
  border-color: rgba(125, 205, 255, 0.15);
  background:
    radial-gradient(circle at 82% 10%, rgba(88, 220, 255, 0.13), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(139, 108, 255, 0.13), transparent 37%),
    linear-gradient(rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    rgba(4, 7, 19, 0.88);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
  box-shadow:
    inset 0 0 55px rgba(116, 84, 255, 0.055),
    0 22px 55px rgba(0, 0, 0, 0.25);
}

.ai-engine-console::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -42%;
  width: 30%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(181, 225, 255, 0.12), transparent);
  transform: rotate(18deg);
  animation: aiEngineConsoleScan 5.2s ease-in-out infinite;
}

.ai-engine-console > * {
  position: relative;
  z-index: 2;
}

.ai-engine-console-head {
  min-height: 39px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.ai-engine-console-mark {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(134, 217, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(139, 108, 255, 0.12), rgba(88, 220, 255, 0.06));
  box-shadow: 0 0 18px rgba(101, 184, 255, 0.1);
}

.ai-engine-console-mark img {
  width: 16px;
  height: 16px;
}

.ai-engine-console-head > strong {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ai-engine-console-head > em {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #82e8ff;
  font-size: 5.5px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.ai-engine-console-head > em i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  animation: aiEngineStatusPulse 1.8s ease-in-out infinite;
}

.ai-engine-prompt {
  min-height: 67px;
  padding: 12px 13px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(151, 132, 255, 0.15);
  border-radius: 14px;
  background: linear-gradient(115deg, rgba(139, 108, 255, 0.075), rgba(88, 220, 255, 0.025));
}

.ai-engine-prompt small {
  color: #bca9ff;
  font-size: 5.5px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.ai-engine-prompt strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 8px;
  line-height: 1.25;
}

.ai-engine-prompt > span {
  display: block;
  width: 82%;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.ai-engine-prompt > span:last-child { width: 55%; }

.ai-engine-modes {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-engine-modes span {
  min-height: 23px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.02);
  font-size: 5.5px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.ai-engine-modes span.is-active {
  border-color: rgba(124, 222, 255, 0.26);
  color: #a9edff;
  background: rgba(88, 220, 255, 0.075);
  box-shadow: 0 0 18px rgba(88, 220, 255, 0.07);
}

.ai-engine-output-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ai-engine-output {
  position: relative;
  min-width: 0;
  min-height: 88px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.ai-output-copy {
  padding: 15px 11px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.ai-output-copy i {
  display: block;
  width: 88%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #bca9ff, rgba(188, 169, 255, 0.12));
  animation: aiEngineLineBuild 2.8s ease-in-out infinite alternate;
}

.ai-output-copy i:nth-child(2) { width: 68%; animation-delay: -0.8s; }
.ai-output-copy i:nth-child(3) { width: 78%; animation-delay: -1.6s; }

.ai-output-image {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.28), transparent 10%),
    linear-gradient(145deg, rgba(88, 220, 255, 0.18), rgba(139, 108, 255, 0.08) 54%, rgba(5, 7, 19, 0.7));
}

.ai-output-image span {
  position: absolute;
  right: 12%;
  bottom: 14%;
  left: 12%;
  height: 48%;
  opacity: 0.8;
  clip-path: polygon(0 100%, 28% 38%, 47% 68%, 66% 18%, 100% 100%);
  background: linear-gradient(135deg, #7de5ff, #9c84ff 64%, #4b37ac);
  filter: drop-shadow(0 0 12px rgba(113, 180, 255, 0.25));
}

.ai-output-video {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(139, 108, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.ai-output-video b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 25px rgba(139, 108, 255, 0.24);
}

.ai-output-video b::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #090914;
}

.ai-output-video i {
  position: absolute;
  right: 11px;
  bottom: 10px;
  left: 11px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.ai-output-video i::after {
  content: "";
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b6cff, #58dcff);
  box-shadow: 0 0 10px rgba(88, 220, 255, 0.38);
}

.ai-engine-product-visual {
  min-height: 390px;
  padding: 23px;
  gap: 13px;
}

@keyframes aiEngineConsoleScan {
  0%, 18% { left: -42%; opacity: 0; }
  42% { opacity: 1; }
  72%, 100% { left: 118%; opacity: 0; }
}

@keyframes aiEngineStatusPulse {
  50% { opacity: 0.35; transform: scale(0.75); }
}

@keyframes aiEngineLineBuild {
  from { opacity: 0.42; transform: scaleX(0.56); transform-origin: left; }
  to { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

/* FIVE-CARD HOMEPAGE WORKFLOW */

.workflow-story {
  min-height: 560vh;
}

.workflow-engine-card {
  --workflow-card-accent: #83ddff;
}

.workflow-story-steps::before {
  background: linear-gradient(
    180deg,
    rgba(139, 108, 255, 0.48),
    rgba(188, 169, 255, 0.34) 38%,
    rgba(88, 220, 255, 0.35) 54%,
    rgba(25, 230, 164, 0.34) 76%,
    rgba(255, 138, 42, 0.24)
  );
}

.workflow-story-step:nth-child(3).is-active small { color: #8fe6ff; }
.workflow-story-step:nth-child(4).is-active small { color: var(--green); }
.workflow-story-step:nth-child(5).is-active small { color: var(--orange); }

.workflow-story-step:nth-child(3).is-active > span {
  border-color: rgba(88, 220, 255, 0.54);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 27%),
    rgba(88, 220, 255, 0.13);
  box-shadow:
    0 0 0 5px rgba(88, 220, 255, 0.035),
    0 0 25px rgba(88, 220, 255, 0.18);
}

.workflow-story-step:nth-child(4).is-active > span {
  border-color: rgba(25, 230, 164, 0.52);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.15), transparent 27%),
    rgba(25, 230, 164, 0.13);
  box-shadow:
    0 0 0 5px rgba(25, 230, 164, 0.035),
    0 0 25px rgba(25, 230, 164, 0.17);
}

.workflow-story-step:nth-child(5).is-active > span {
  border-color: rgba(255, 138, 42, 0.52);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.15), transparent 27%),
    rgba(255, 138, 42, 0.13);
  box-shadow:
    0 0 0 5px rgba(255, 138, 42, 0.035),
    0 0 25px rgba(255, 138, 42, 0.17);
}

.workflow-deck-wrap[data-active="2"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(88, 220, 255, 0.2), rgba(139, 108, 255, 0.08) 42%, transparent 67%);
}

.workflow-deck-wrap[data-active="3"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(25, 230, 164, 0.18), transparent 65%);
}

.workflow-deck-wrap[data-active="4"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(255, 138, 42, 0.17), transparent 65%);
}

.workflow-deck-progress > span {
  background: linear-gradient(
    90deg,
    var(--purple),
    var(--purple-2) 31%,
    #58dcff 51%,
    var(--green) 73%,
    var(--orange)
  );
}

.perception-iq-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 6;
  min-width: 147px;
  min-height: 47px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(100, 220, 255, 0.2);
  border-radius: 13px;
  background: rgba(5, 10, 23, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 25px rgba(88, 220, 255, 0.08);
  backdrop-filter: blur(12px);
}

.perception-iq-badge svg {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  fill: none;
  stroke: #7ee7ff;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(88, 220, 255, 0.35));
}

.perception-iq-badge span,
.perception-iq-badge small,
.perception-iq-badge strong {
  display: block;
}

.perception-iq-badge small {
  color: #8eeaff;
  font-size: 5.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.perception-iq-badge strong {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 5.5px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

/* FIVE-STAGE HOMEPAGE FLOW */

.publishing-loop-track {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 18px);
}

.publishing-loop-rail {
  left: 8.333%;
  right: 8.333%;
  background: linear-gradient(
    90deg,
    rgba(139, 108, 255, 0.38),
    rgba(139, 108, 255, 0.54) 14%,
    rgba(25, 230, 164, 0.56) 32%,
    rgba(255, 138, 42, 0.57) 50%,
    rgba(88, 220, 255, 0.55) 67%,
    rgba(126, 140, 255, 0.52) 83%,
    rgba(189, 171, 255, 0.34)
  );
}

.publishing-loop-rail > span {
  width: 13%;
  animation-duration: 6.2s;
}

.publishing-loop-generate {
  --loop-accent: #58dcff;
}

.publishing-loop-control {
  --loop-accent: #7e8cff;
}

.publishing-loop-icon .publishing-loop-product-mark {
  position: relative;
  z-index: 2;
  width: 49%;
  height: 49%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 9px color-mix(in srgb, var(--loop-accent) 45%, transparent));
}

.publishing-loop-improve {
  --loop-accent: #bca9ff;
}

.publishing-loop-step small {
  min-height: 23px;
  margin-top: 9px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--loop-accent) 25%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--loop-accent) 88%, white 12%);
  background: color-mix(in srgb, var(--loop-accent) 8%, transparent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--loop-accent) 8%, transparent);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

.publishing-loop-step:hover small {
  border-color: color-mix(in srgb, var(--loop-accent) 42%, transparent);
  background: color-mix(in srgb, var(--loop-accent) 13%, transparent);
}

/* PUBLISHER DNA COUNTERS */

.publisher-proof-metric strong {
  min-width: 2.9ch;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  transform-origin: left center;
}

.publisher-proof-metric strong.is-counting {
  animation: publisherNumberPulse 0.72s ease both;
}

@keyframes publisherNumberPulse {
  0% { opacity: 0.35; filter: blur(4px); transform: translateY(7px) scale(0.96); }
  60% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1.035); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

/* COMPACT SHARED FOOTER */

.footer {
  position: relative;
  z-index: 20;
  min-height: 112px;
  margin: 0;
  padding: 18px clamp(24px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  overflow: clip;
  border-top: 1px solid rgba(190, 174, 255, 0.28);
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 15% 0%, rgba(139, 108, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(17, 15, 39, 0.99), rgba(7, 8, 23, 0.995));
  box-shadow:
    0 -20px 70px rgba(91, 64, 210, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

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

.footer-brand-logo {
  width: clamp(150px, 12.5vw, 180px);
  flex: 0 0 auto;
}

.footer-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(149, 124, 255, 0.2));
}

.footer-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy p {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-status {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #20e1a4;
  box-shadow: 0 0 14px rgba(32, 225, 164, 0.78);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.065);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link:hover {
  color: #fff;
  border-color: rgba(190, 174, 255, 0.58);
  background: rgba(139, 108, 255, 0.19);
  box-shadow: 0 0 28px rgba(139, 108, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social-link.is-pending {
  opacity: 0.62;
  cursor: default;
}

.footer-social-link.is-pending:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: none;
  transform: none;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 21px;
}

.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: #a994ff;
  transition: right 0.3s ease;
}

.footer-links a:hover { color: #fff; }
.footer-links a:hover::after { right: 0; }

main > section:last-child.scroll-glow-section {
  overflow: clip;
}

/* =========================================================
   SHOWCASES
   ========================================================= */

.showcases-page {
  background: #03040d;
}

.showcases-hero {
  position: relative;
  min-height: min(940px, 100svh);
  padding-top: 170px;
  padding-bottom: 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.showcases-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 10%;
  left: 50%;
  width: min(1080px, 88vw);
  height: 690px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(139, 108, 255, 0.18), transparent 43%),
    radial-gradient(circle at 25% 70%, rgba(88, 220, 255, 0.075), transparent 28%);
  filter: blur(16px);
  transform: translateX(-50%);
}

.showcases-hero::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(circle at 50% 55%, black, transparent 69%);
  mask-image: radial-gradient(circle at 50% 55%, black, transparent 69%);
}

.showcases-hero .inner-hero-purple-sweep {
  position: absolute;
  z-index: -1;
  top: -32%;
  left: 50%;
  width: 230px;
  height: 145%;
  opacity: 0.58;
  background: linear-gradient(180deg, transparent, rgba(155, 126, 255, 0.38) 45%, rgba(88, 220, 255, 0.05) 72%, transparent);
  filter: blur(54px);
  transform: translateX(-50%) rotate(11deg);
  animation: showcaseSweep 8s ease-in-out infinite alternate;
}

@keyframes showcaseSweep {
  from { transform: translateX(-72%) rotate(8deg); opacity: 0.32; }
  to { transform: translateX(-30%) rotate(14deg); opacity: 0.66; }
}

.showcases-hero-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.showcases-hero .cinematic-title {
  width: 100%;
  margin-top: 28px;
  overflow: visible;
}

.showcases-hero .cinematic-title-line {
  display: block;
  overflow: visible;
}

.showcases-hero .cinematic-title-sans {
  font-family: "Inter", sans-serif;
  font-size: clamp(58px, 8.8vw, 145px);
  font-weight: 580;
  line-height: 0.86;
  letter-spacing: -0.082em;
}

.showcases-hero .cinematic-title-serif {
  padding: 0.02em 0 0.12em;
  color: transparent;
  background: linear-gradient(105deg, #fff 5%, #d9ceff 43%, #8d75ff 76%, #72e8ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(65px, 9.8vw, 158px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.showcases-hero-inner > p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.75;
}

.showcase-orbit {
  position: relative;
  width: min(700px, 74vw);
  aspect-ratio: 2.35 / 1;
  margin-top: 44px;
  display: grid;
  place-items: center;
}

.showcase-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(177, 159, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.showcase-orbit-ring.ring-one {
  width: 68%;
  height: 72%;
  box-shadow: inset 0 0 42px rgba(139, 108, 255, 0.06), 0 0 38px rgba(139, 108, 255, 0.07);
}

.showcase-orbit-ring.ring-two {
  width: 96%;
  height: 96%;
  border-color: rgba(88, 220, 255, 0.08);
}

.showcase-orbit-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8f77ff 24%, rgba(255, 255, 255, 0.8) 50%, #5ee5cb 76%, transparent);
  box-shadow: 0 0 20px rgba(139, 108, 255, 0.43);
  transform: translate(-50%, -50%);
}

.showcase-orbit-beam::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 4%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px #8f77ff;
  animation: showcaseSignal 4.8s ease-in-out infinite;
}

@keyframes showcaseSignal {
  0%, 100% { left: 4%; opacity: 0; }
  12%, 88% { opacity: 1; }
  50% { left: 94%; }
}

.showcase-orbit-core {
  position: relative;
  z-index: 3;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 181, 255, 0.33);
  border-radius: 29px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.17), transparent 25%),
    rgba(13, 10, 36, 0.92);
  box-shadow: 0 0 0 12px rgba(139, 108, 255, 0.035), 0 0 64px rgba(139, 108, 255, 0.35);
  transform: rotate(-3deg);
}

.showcase-orbit-core img {
  width: 61px;
  filter: drop-shadow(0 0 14px rgba(175, 158, 255, 0.55));
}

.showcase-orbit-node {
  position: absolute;
  z-index: 4;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(5, 6, 18, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36), 0 0 24px currentColor;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.node-mediasync { left: 2%; top: 44%; color: #9f89ff; }
.node-publio { right: 2%; top: 25%; color: #4ae4b4; }
.node-cleon { right: 9%; bottom: 9%; color: #ff9d51; }

.showcase-products-section {
  position: relative;
  padding-top: 112px;
  overflow: hidden;
}

.showcase-products-section::before {
  content: "";
  position: absolute;
  top: 3%;
  right: -16%;
  width: 620px;
  height: 620px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.15), transparent 68%);
  filter: blur(25px);
}

.showcase-products-section > .section-heading {
  max-width: 950px;
  margin-bottom: 58px;
}

.showcase-product-grid {
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 25px;
}

.showcase-product-card {
  --showcase-accent: #8b6cff;
  position: relative;
  min-height: 520px;
  padding: clamp(34px, 5vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(450px, 1.17fr);
  align-items: center;
  gap: clamp(45px, 6vw, 92px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--showcase-accent) 24%, rgba(255, 255, 255, 0.06));
  border-radius: 42px;
  background:
    radial-gradient(circle at 90% 15%, color-mix(in srgb, var(--showcase-accent) 14%, transparent), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 52%),
    rgba(5, 6, 18, 0.86);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.showcase-product-card::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 1px;
  opacity: 0.6;
  background: linear-gradient(90deg, transparent, var(--showcase-accent), transparent);
  box-shadow: 0 0 24px var(--showcase-accent);
}

.showcase-product-publio { --showcase-accent: #19e6a4; }
.showcase-product-cleon { --showcase-accent: #ff8a2a; }

.showcase-product-copy {
  position: relative;
  z-index: 3;
}

.showcase-product-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--showcase-accent) 82%, white 18%);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.showcase-product-copy h2 {
  max-width: 650px;
  margin-top: 24px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.showcase-product-copy p {
  max-width: 570px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.75;
}

.showcase-product-copy a {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.showcase-product-copy a span {
  color: var(--showcase-accent);
  font-size: 17px;
  transition: transform 0.25s ease;
}

.showcase-product-copy a:hover span { transform: translate(4px, -4px); }

.showcase-product-visual {
  position: relative;
  z-index: 2;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--showcase-accent) 27%, rgba(255, 255, 255, 0.07));
  border-radius: 32px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, color-mix(in srgb, var(--showcase-accent) 15%, transparent), transparent 56%),
    rgba(4, 5, 15, 0.88);
  background-size: 38px 38px, 38px 38px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 55px rgba(0, 0, 0, 0.29);
}

/* MediaSync console */

.media-console-top {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.media-console-top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.media-console-top i:first-child { background: #8b6cff; box-shadow: 0 0 10px #8b6cff; }
.media-console-top span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.34);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.media-console-radar {
  position: absolute;
  top: 79px;
  left: 33px;
  width: 178px;
  height: 178px;
  overflow: hidden;
  border: 1px solid rgba(139, 108, 255, 0.26);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(139, 108, 255, 0.13) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(139, 108, 255, 0.13) 50%, transparent 50.5%),
    repeating-radial-gradient(circle, transparent 0 28px, rgba(139, 108, 255, 0.11) 29px, transparent 30px);
}

.media-console-radar span {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 20deg, rgba(139, 108, 255, 0.48), transparent 24%);
  animation: showcaseRadar 4.8s linear infinite;
}

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

.media-console-radar i,
.media-console-radar b {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b9a8ff;
  box-shadow: 0 0 14px #8b6cff;
}

.media-console-radar i { left: 33%; top: 25%; }
.media-console-radar b { right: 25%; bottom: 32%; }

.media-console-feed {
  position: absolute;
  top: 88px;
  right: 24px;
  width: min(48%, 280px);
  display: grid;
  gap: 10px;
}

.media-console-feed > span {
  min-height: 49px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
}

.media-console-feed i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b6cff;
  box-shadow: 0 0 11px #8b6cff;
}

.media-console-feed em {
  margin-left: auto;
  color: #a994ff;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.media-console-score {
  position: absolute;
  left: 41px;
  bottom: 25px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #fff;
  font-size: 38px;
  letter-spacing: -0.07em;
}

.media-console-score small {
  color: #a994ff;
  font-size: 7px;
  letter-spacing: 0.12em;
}

/* Publio console */

.publio-console-card {
  position: absolute;
  width: 33%;
  height: 61%;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(25, 230, 164, 0.2);
  border-radius: 21px;
  background:
    radial-gradient(circle at 50% 24%, rgba(25, 230, 164, 0.17), transparent 42%),
    rgba(6, 17, 19, 0.84);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.publio-console-card span {
  color: #6ae9c1;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.publio-console-card i {
  position: absolute;
  top: 56px;
  left: 15px;
  width: calc(100% - 30px);
  height: 42%;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(25, 230, 164, 0.24), rgba(113, 93, 255, 0.25));
}

.publio-console-card b {
  position: absolute;
  right: 15px;
  bottom: 16px;
  left: 15px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #19e6a4 55%, rgba(255, 255, 255, 0.12) 55%);
}

.publio-console-card.card-one { left: 7%; top: 21%; transform: rotate(-7deg); }
.publio-console-card.card-two { left: 34%; top: 13%; z-index: 2; transform: rotate(1deg); }
.publio-console-card.card-three { right: 7%; top: 23%; transform: rotate(7deg); }

.publio-console-route {
  position: absolute;
  right: 10%;
  bottom: 30px;
  left: 10%;
  height: 1px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(90deg, transparent, rgba(25, 230, 164, 0.4), transparent);
}

.publio-console-route span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #19e6a4;
  box-shadow: 0 0 11px #19e6a4;
  transform: translateY(-2px);
}

.publio-console > strong {
  position: absolute;
  right: 9%;
  bottom: 47px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  letter-spacing: 0.14em;
}

/* Cleon console */

.cleon-console-screen {
  position: absolute;
  top: 31px;
  right: 5%;
  left: 5%;
  height: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 42, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 138, 42, 0.24), transparent 33%),
    linear-gradient(140deg, rgba(139, 108, 255, 0.22), rgba(255, 138, 42, 0.08)),
    #080811;
}

.cleon-console-screen span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(4, 4, 10, 0.52);
  transform: translate(-50%, -50%);
}

.cleon-console-screen i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
}

.cleon-console-screen b {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a2a 74%, rgba(255, 255, 255, 0.15) 74%);
}

.cleon-console-metric {
  position: absolute;
  left: 7%;
  bottom: 36px;
  display: grid;
  gap: 7px;
}

.cleon-console-metric small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.cleon-console-metric strong {
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.cleon-console-chart {
  position: absolute;
  right: 7%;
  bottom: 36px;
  width: 43%;
  height: 74px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.cleon-console-chart i {
  width: 100%;
  height: 35%;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, #ff9a4d, rgba(255, 138, 42, 0.18));
  box-shadow: 0 0 12px rgba(255, 138, 42, 0.12);
}

.cleon-console-chart i:nth-child(2) { height: 53%; }
.cleon-console-chart i:nth-child(3) { height: 44%; }
.cleon-console-chart i:nth-child(4) { height: 68%; }
.cleon-console-chart i:nth-child(5) { height: 60%; }
.cleon-console-chart i:nth-child(6) { height: 83%; }
.cleon-console-chart i:nth-child(7) { height: 96%; }

.showcase-loop-section {
  padding: 30px 6vw 120px;
}

.showcase-loop-shell {
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(160, 138, 255, 0.2);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 120%, rgba(139, 108, 255, 0.17), transparent 45%),
    rgba(6, 7, 19, 0.84);
}

.showcase-loop-copy {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.showcase-loop-copy h2 {
  max-width: 770px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.showcase-loop-track {
  position: relative;
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.showcase-loop-track::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, #8b6cff, #19e6a4, #ff8a2a, #58dcff, #bca9ff);
  box-shadow: 0 0 18px rgba(139, 108, 255, 0.32);
}

.showcase-loop-track li {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0 8px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.showcase-loop-track li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(172, 151, 255, 0.28);
  border-radius: 17px;
  color: #bca9ff;
  background: rgba(9, 9, 26, 0.96);
  box-shadow: 0 0 25px rgba(139, 108, 255, 0.12);
  font-size: 8px;
  font-weight: 850;
}

.showcase-loop-track strong {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.7vw, 23px);
  letter-spacing: -0.04em;
}

.showcase-loop-track small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .header,
  .header.scrolled {
    padding-right: 28px;
    padding-left: 28px;
    gap: 19px;
  }

  .brand.brand-lockup { width: 218px; }
  .header-navigation { gap: 14px; }
  .header .nav > a,
  .nav-dropdown-trigger { padding: 0 12px; }
  .header-action { min-width: 82px; padding: 0 15px; }
  .header-trial { min-width: 96px; }

  .showcase-product-card {
    grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
    gap: 42px;
  }
}

@media (max-width: 980px) {
  .header,
  .header.scrolled {
    min-height: 82px;
    padding: 10px 5vw;
    justify-content: space-between;
  }

  .brand.brand-lockup { width: clamp(205px, 32vw, 245px); }

  .nav-toggle { display: grid; }

  .header-navigation {
    position: absolute;
    top: calc(100% + 10px);
    right: 4vw;
    left: 4vw;
    max-height: calc(100svh - 108px);
    padding: 13px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    transform-origin: 50% 0;
    border: 1px solid rgba(165, 143, 255, 0.19);
    border-radius: 27px;
    background:
      radial-gradient(circle at 85% 0%, rgba(139, 108, 255, 0.18), transparent 40%),
      rgba(5, 6, 18, 0.975);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.64), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    transition: opacity 0.28s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.38s;
  }

  .header.nav-open .header-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .header .nav,
  .home-header .nav {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 5px;
    display: grid;
    align-items: stretch;
    gap: 2px;
    border-radius: 20px;
  }

  .header .nav > a,
  .nav-dropdown-trigger {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    justify-content: space-between;
    border-radius: 15px;
    font-size: 10px;
  }

  .nav-dropdown-panel {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0 8px;
    border-width: 0;
    border-radius: 18px;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    transform: none;
    transition: max-height 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease, padding 0.3s ease, visibility 0s linear 0.42s;
  }

  .nav-dropdown:hover .nav-dropdown-panel {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    transform: none;
  }

  .nav-dropdown:focus-within .nav-dropdown-panel,
  .nav-dropdown.is-open .nav-dropdown-panel {
    max-height: 420px;
    padding-top: 8px;
    padding-bottom: 8px;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .nav-dropdown-link {
    min-height: 82px;
    padding: 11px 13px;
  }

  .header-actions {
    width: 100%;
    gap: 8px;
  }

  .header-action { flex: 1 1 50%; }

  .footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 17px 24px;
  }

  .footer-brand {
    width: 100%;
    grid-column: 1 / -1;
  }

  .footer-socials { justify-self: start; }
  .footer-links { justify-self: end; }

  .publishing-loop-icon {
    width: 76px;
    height: 76px;
    border-radius: 23px;
  }

  .publishing-loop-icon::before { border-radius: 16px; }
  .publishing-loop-icon svg { width: 37px; height: 37px; }
  .publishing-loop-rail { top: 95px; }

  .showcase-product-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showcase-product-visual { min-height: 410px; }
}

@media (max-width: 760px) {
  .footer {
    min-height: 0;
    padding: 24px 5vw;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 17px;
  }

  .footer-brand {
    order: 1;
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .footer-brand-logo { width: 180px; }
  .footer-copy { order: initial; }
  .footer-copy p { white-space: normal; text-align: left; }
  .footer-socials { order: 2; justify-self: start; }
  .footer-links {
    order: 3;
    justify-self: start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .showcases-hero {
    min-height: 820px;
    padding-top: 138px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .showcases-hero .cinematic-title-sans {
    font-size: clamp(47px, 15vw, 82px);
    line-height: 0.92;
  }

  .showcases-hero .cinematic-title-serif {
    font-size: clamp(55px, 17vw, 92px);
    line-height: 0.9;
  }

  .showcase-orbit {
    width: min(620px, 100%);
    aspect-ratio: 1.65 / 1;
    margin-top: 38px;
  }

  .showcase-orbit-core { width: 76px; height: 76px; border-radius: 24px; }
  .showcase-orbit-core img { width: 51px; }
  .showcase-orbit-node { min-height: 30px; padding: 0 10px; font-size: 6.5px; }

  .showcase-product-card {
    min-height: 0;
    padding: 37px 23px 23px;
    border-radius: 30px;
  }

  .showcase-product-copy h2 {
    font-size: clamp(39px, 12.5vw, 61px);
  }

  .showcase-product-copy p { font-size: 14px; }
  .showcase-product-visual { min-height: 340px; border-radius: 23px; }

  .showcase-loop-shell { padding: 38px 23px; border-radius: 30px; }
  .showcase-loop-copy { display: grid; }

  .showcase-loop-track {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .showcase-loop-track::before {
    top: 26px;
    bottom: 26px;
    left: 25px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, #8b6cff, #19e6a4, #ff8a2a, #58dcff, #bca9ff);
  }

  .showcase-loop-track li {
    min-height: 60px;
    padding: 0 0 0 70px;
    grid-template-columns: auto;
    justify-items: start;
    align-content: center;
    text-align: left;
  }

  .showcase-loop-track li > span {
    position: absolute;
    left: 0;
    top: 5px;
  }

  .showcase-loop-track strong,
  .showcase-loop-track small { margin-top: 0; }
  .showcase-loop-track small { margin-top: 5px; }
}

@media (max-width: 680px) {
  .publishing-loop-track {
    grid-template-columns: 1fr;
  }

  .publishing-loop-rail {
    left: 67px;
    right: auto;
    background: linear-gradient(180deg, #8b6cff, #19e6a4, #ff8a2a, #58dcff, #bca9ff);
  }

  .publishing-loop-step small {
    min-height: 21px;
    margin-top: 7px;
  }

  .media-console-radar {
    top: 87px;
    left: 23px;
    width: 142px;
    height: 142px;
  }

  .media-console-feed {
    right: 16px;
    width: 45%;
  }

  .media-console-feed > span { padding: 0 8px; font-size: 6.5px; }
  .media-console-score { left: 27px; }
}

@media (max-width: 520px) {
  .header,
  .header.scrolled { min-height: 74px; }
  .brand.brand-lockup { width: min(190px, calc(100vw - 98px)); }
  .nav-toggle { width: 42px; height: 42px; border-radius: 14px; }

  .header-navigation {
    right: 3vw;
    left: 3vw;
  }

  .header-action { min-height: 44px; padding: 0 13px; }

  .solution-card h3 { gap: 0.22em; }
  .solution-role { font-size: 0.34em; }

  .hero-layout,
  .hero-copy {
    min-width: 0;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    width: calc(100vw - 12vw);
    max-width: calc(100vw - 12vw);
    justify-self: stretch;
  }

  .hero h1.hero-split-text {
    min-width: 0;
    width: 100%;
    max-width: none;
    font-size: clamp(40px, 10.2vw, 48px);
    line-height: 0.97;
    letter-spacing: -0.065em;
  }

  .showcases-hero { min-height: 740px; }
  .showcase-orbit-node { letter-spacing: 0.07em; }
  .node-mediasync { left: -1%; }
  .node-publio { right: -1%; }
  .node-cleon { right: 1%; bottom: 4%; }

  .showcase-product-visual { min-height: 295px; }
  .media-console-radar { width: 116px; height: 116px; }
  .media-console-feed { top: 76px; }
  .media-console-feed > span { min-height: 42px; }
  .media-console-score { bottom: 19px; font-size: 31px; }

  .publio-console-card { padding: 10px; border-radius: 15px; }
  .publio-console-card i { top: 45px; left: 10px; width: calc(100% - 20px); }
  .publio-console-card b { right: 10px; bottom: 12px; left: 10px; }
  .cleon-console-chart { gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .header-action,
  #platform .feature-card,
  .ai-engine-console::before,
  .ai-engine-console-head > em i,
  .ai-output-copy i,
  .showcases-hero .inner-hero-purple-sweep,
  .showcase-orbit-beam::after,
  .media-console-radar span {
    animation: none !important;
  }

  .nav-dropdown-panel,
  .nav-dropdown-link,
  .header-navigation,
  .nav-toggle span {
    transition-duration: 0.01ms !important;
  }

  .cinematic-title .hero-reveal-char {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 1180px) and (min-width: 1041px) {
  #platform .feature-card {
    min-height: 410px;
    padding: 28px 25px;
  }

  #platform .feature-card h3 { font-size: 28px; }
  #platform .feature-icon { margin-bottom: 54px; }
}

@media (max-width: 900px) {
  .workflow-story { min-height: 0; }
}

@media (max-width: 760px) {
  .ai-engine-product-visual {
    min-height: 340px;
    padding: 15px;
    gap: 9px;
  }

  .solution-ai-mark {
    width: 0.74em;
    height: 0.74em;
    flex-basis: 0.74em;
  }

  .perception-iq-badge {
    top: 10px;
    left: 10px;
    min-width: 136px;
    min-height: 43px;
    padding: 6px 8px;
  }

  .perception-iq-badge svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}

@media (max-width: 430px) {
  .ai-engine-console {
    padding: 12px;
    gap: 8px;
  }

  .ai-engine-console-head {
    min-height: 36px;
    grid-template-columns: 28px 1fr auto;
    gap: 7px;
  }

  .ai-engine-console-head > em {
    font-size: 5px;
    letter-spacing: 0.07em;
  }

  .ai-engine-prompt {
    min-height: 60px;
    padding: 10px;
  }

  .ai-engine-modes span {
    min-height: 21px;
    padding: 0 8px;
  }

  .ai-engine-output-grid { gap: 6px; }
  .ai-engine-output { min-height: 78px; border-radius: 11px; }
  .ai-output-copy { padding: 12px 8px; gap: 7px; }
  .ai-output-video b { width: 27px; height: 27px; }
}

/* =========================================================
   SHOWCASES — PROOF, CUSTOMER IMPACT & TRUST
   ========================================================= */

.showcases-page .showcases-hero {
  min-height: clamp(610px, 76svh, 820px);
  padding-top: 150px;
  padding-bottom: 70px;
}

.showcases-page .showcases-hero::before {
  top: 2%;
  height: 620px;
}

.showcases-page .showcases-hero .cinematic-title {
  margin-top: 0;
}

.showcase-impact-section,
.showcase-avopolis-section,
.showcase-trust-section {
  position: relative;
  overflow: clip;
}

.showcase-impact-section {
  padding-top: 128px;
  padding-bottom: 92px;
}

.showcase-impact-section .section-purple-glow,
.showcase-avopolis-section .section-purple-glow {
  position: absolute;
  z-index: -1;
  width: min(880px, 78vw);
  height: min(880px, 78vw);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(126, 91, 255, 0.18), rgba(86, 45, 214, 0.055) 42%, transparent 70%);
  filter: blur(26px);
}

.showcase-impact-section .section-purple-glow {
  top: 8%;
  right: -31%;
}

.showcase-avopolis-section .section-purple-glow {
  left: -34%;
  top: 2%;
}

.showcase-proof-heading {
  width: min(1320px, 100%);
  margin: 0 auto 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.6fr);
  column-gap: clamp(55px, 8vw, 130px);
  align-items: end;
}

.showcase-proof-heading .pill {
  grid-column: 1 / -1;
  margin-bottom: 25px;
  justify-self: start;
}

.showcase-proof-heading h2 {
  max-width: 920px;
  font-size: clamp(46px, 6.5vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.073em;
}

.showcase-proof-heading h2 span {
  color: rgba(255, 255, 255, 0.42);
}

.showcase-proof-heading > p {
  max-width: 560px;
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 15px;
  line-height: 1.75;
}

.impact-metric-grid {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.impact-metric-card {
  --metric-accent: #947cff;
  position: relative;
  min-height: 300px;
  grid-column: span 3;
  padding: clamp(27px, 3.1vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(171, 150, 255, 0.17);
  border-radius: 31px;
  background:
    radial-gradient(circle at 82% 14%, color-mix(in srgb, var(--metric-accent) 19%, transparent), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012) 58%),
    rgba(6, 7, 19, 0.86);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.impact-metric-card:nth-child(2) {
  --metric-accent: #63dcff;
  grid-column: span 5;
}

.impact-metric-card:nth-child(3) {
  --metric-accent: #63ffd0;
  grid-column: span 4;
}

.impact-metric-card:nth-child(4) {
  --metric-accent: #d5c7ff;
  grid-column: span 5;
}

.impact-metric-card:nth-child(5) {
  --metric-accent: #b698ff;
  grid-column: span 7;
}

.impact-metric-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from var(--metric-angle, 0deg), transparent 0 68%, var(--metric-accent) 78%, #fff 82%, transparent 90%);
  opacity: 0;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 0.45s ease;
}

.impact-metric-card:hover::before {
  opacity: 0.72;
  animation: impactBorderOrbit 2.8s linear infinite;
}

@property --metric-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes impactBorderOrbit {
  to { --metric-angle: 360deg; }
}

.impact-metric-index {
  align-self: flex-start;
  min-width: 38px;
  height: 26px;
  padding: 0 9px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: color-mix(in srgb, var(--metric-accent) 75%, white 25%);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.impact-metric-card > strong {
  margin-top: auto;
  color: #fff;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 640;
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-shadow: 0 0 32px color-mix(in srgb, var(--metric-accent) 28%, transparent);
}

.impact-metric-card > strong i,
.avopolis-case-metrics strong i {
  margin: 0 0.08em;
  color: rgba(255, 255, 255, 0.29);
  font-style: normal;
  font-weight: 300;
}

.impact-metric-card > p {
  max-width: 460px;
  margin-top: 21px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.55;
}

.impact-action-row {
  width: min(1400px, 100%);
  margin: 22px auto 0;
  padding: 28px 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.025);
}

.impact-action-row p {
  max-width: 910px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.65;
}

.impact-action-row .btn { flex: 0 0 auto; }

.showcase-avopolis-section {
  padding-top: 90px;
  padding-bottom: 110px;
}

.avopolis-case-shell {
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 84px);
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(52px, 7vw, 110px);
  overflow: hidden;
  border: 1px solid rgba(155, 128, 255, 0.2);
  border-radius: 46px;
  background:
    radial-gradient(circle at 2% 20%, rgba(139, 108, 255, 0.19), transparent 35%),
    radial-gradient(circle at 93% 82%, rgba(88, 220, 255, 0.075), transparent 33%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 45%),
    rgba(5, 6, 18, 0.91);
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.avopolis-case-shell::after {
  content: "AVOPOLIS";
  position: absolute;
  right: -0.05em;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.018);
  font-size: clamp(90px, 17vw, 260px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.avopolis-case-intro,
.avopolis-case-metrics,
.avopolis-case-outcome {
  position: relative;
  z-index: 1;
}

.avopolis-case-intro .pill { margin-bottom: 27px; }

.avopolis-case-intro h2 {
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.067em;
}

.avopolis-case-intro > p {
  max-width: 610px;
  margin-top: 29px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.78;
}

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

.avopolis-case-metrics article {
  min-height: 174px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.032);
  backdrop-filter: blur(12px);
}

.avopolis-case-metrics article:nth-child(2),
.avopolis-case-metrics article:nth-child(5) {
  border-color: rgba(113, 224, 255, 0.14);
}

.avopolis-case-metrics article:nth-child(4) {
  border-color: rgba(157, 132, 255, 0.25);
  background: linear-gradient(140deg, rgba(139, 108, 255, 0.17), rgba(255, 255, 255, 0.025));
}

.avopolis-case-metrics small,
.avopolis-case-metrics em {
  color: rgba(255, 255, 255, 0.39);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.avopolis-case-metrics strong {
  color: #fff;
  font-size: clamp(35px, 4vw, 57px);
  font-weight: 620;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.avopolis-case-outcome {
  grid-column: 1 / -1;
  padding-top: 7px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 28px;
}

.avopolis-case-outcome p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.68;
}

.avopolis-case-outcome .btn {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.showcase-trust-section {
  padding-top: 92px;
  padding-bottom: 135px;
}

.showcase-trust-shell {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.showcase-trust-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 25px;
}

.showcase-trust-heading .pill { grid-column: 1 / -1; }

.showcase-trust-heading h2 {
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.showcase-trust-heading p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.65;
}

.trust-scale-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-scale-grid article {
  position: relative;
  min-height: 290px;
  padding: clamp(30px, 4.4vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(158, 133, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 15%, rgba(139, 108, 255, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.trust-scale-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 82% 15%, rgba(88, 220, 255, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.trust-scale-grid strong {
  font-size: clamp(78px, 10.5vw, 158px);
  font-weight: 610;
  line-height: 0.76;
  letter-spacing: -0.085em;
}

.trust-scale-grid p {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recognition-panel {
  margin-top: 18px;
  padding: clamp(33px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(50px, 8vw, 125px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 34px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.012));
}

.recognition-title span {
  color: #a991ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.recognition-title strong {
  margin-top: 24px;
  display: block;
  font-size: clamp(35px, 4.6vw, 67px);
  font-weight: 570;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.recognition-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recognition-list li {
  min-height: 67px;
  padding: 12px 4px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.recognition-list li > span {
  color: rgba(181, 164, 255, 0.62);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.recognition-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.recognition-list strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
}

.recognition-list small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .showcase-proof-heading {
    grid-template-columns: 1fr;
  }

  .showcase-proof-heading > p {
    margin-top: 28px;
  }

  .impact-metric-card,
  .impact-metric-card:nth-child(2),
  .impact-metric-card:nth-child(3) {
    grid-column: span 6;
  }

  .impact-metric-card:nth-child(4) { grid-column: span 5; }
  .impact-metric-card:nth-child(5) { grid-column: span 7; }

  .avopolis-case-shell {
    grid-template-columns: 1fr;
  }

  .avopolis-case-intro > p { max-width: 780px; }

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

  .avopolis-case-outcome .btn { justify-self: start; }

  .recognition-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .showcases-page .showcases-hero {
    min-height: 620px;
    padding-top: 135px;
    padding-bottom: 55px;
  }

  .showcases-page .showcases-hero .cinematic-title-sans {
    font-size: clamp(45px, 14.6vw, 72px);
    line-height: 0.91;
    letter-spacing: -0.073em;
  }

  .showcases-page .showcases-hero .cinematic-title-serif {
    padding-right: 0.09em;
    padding-bottom: 0.17em;
    font-size: clamp(53px, 17vw, 84px);
    line-height: 0.9;
    letter-spacing: -0.06em;
  }

  .showcase-impact-section {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .showcase-proof-heading {
    margin-bottom: 38px;
  }

  .showcase-proof-heading h2 {
    font-size: clamp(41px, 13vw, 62px);
  }

  .impact-metric-grid { gap: 12px; }

  .impact-metric-card,
  .impact-metric-card:nth-child(2),
  .impact-metric-card:nth-child(3),
  .impact-metric-card:nth-child(4),
  .impact-metric-card:nth-child(5) {
    min-height: 235px;
    grid-column: 1 / -1;
    border-radius: 24px;
  }

  .impact-metric-card > strong {
    font-size: clamp(54px, 17vw, 81px);
  }

  .impact-action-row {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-avopolis-section {
    padding-top: 68px;
    padding-bottom: 78px;
  }

  .avopolis-case-shell {
    padding: 29px 20px;
    gap: 36px;
    border-radius: 29px;
  }

  .avopolis-case-intro h2 {
    font-size: clamp(39px, 12vw, 57px);
  }

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

  .avopolis-case-metrics article {
    min-height: 152px;
  }

  .avopolis-case-outcome {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .showcase-trust-section {
    padding-top: 68px;
    padding-bottom: 95px;
  }

  .showcase-trust-heading {
    grid-template-columns: 1fr;
  }

  .showcase-trust-heading p { margin-top: 6px; }

  .trust-scale-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-scale-grid article {
    min-height: 220px;
    border-radius: 25px;
  }

  .trust-scale-grid strong {
    font-size: clamp(76px, 25vw, 122px);
  }

  .recognition-panel {
    padding: 31px 21px;
    gap: 38px;
    border-radius: 25px;
  }

  .recognition-list li {
    grid-template-columns: 30px 1fr;
  }

  .recognition-list p {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .recognition-list small { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .impact-metric-card:hover::before { animation: none; }
}

/* =========================================================
   FIVE-PRODUCT PLATFORM
   ========================================================= */

#platform .feature-grid {
  gap: 18px;
}

#platform .feature-card {
  min-height: 430px;
  padding: 28px;
}

#platform .feature-icon {
  margin-bottom: 54px;
}

#platform .feature-card h3 {
  font-size: clamp(23px, 1.95vw, 30px);
}

#platform .feature-card-perception h3 {
  font-size: clamp(20px, 1.65vw, 25px);
  letter-spacing: -0.065em;
}

.feature-card-title-perception {
  display: flex;
  align-items: center;
  gap: 8px;
}

.perception-mini-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(99, 220, 255, 0.24);
  border-radius: 9px;
  color: #77e6ff;
  background: linear-gradient(145deg, rgba(139, 108, 255, 0.13), rgba(88, 220, 255, 0.075));
}

.perception-mini-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-perception {
  color: #77e6ff;
  border-color: rgba(99, 220, 255, 0.32);
  background: linear-gradient(145deg, rgba(139, 108, 255, 0.15), rgba(88, 220, 255, 0.09));
  box-shadow: 0 0 28px rgba(88, 220, 255, 0.09);
}

.feature-icon-perception svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-perception .feature-details li::before {
  background: #6ee6ff;
  box-shadow: 0 0 14px rgba(88, 220, 255, 0.8);
}

@media (max-width: 1230px) and (min-width: 761px) {
  #platform .feature-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #platform .feature-card {
    min-height: 390px;
    grid-column: span 2;
    padding: 28px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  #platform .feature-card:nth-child(4) { grid-column: 2 / span 2; }
  #platform .feature-card:nth-child(5) { grid-column: 4 / span 2; }

  #platform .feature-grid:hover .feature-card,
  #platform .feature-grid .feature-card:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-8px);
  }
}

@media (max-width: 1600px) and (min-width: 901px) {
  #platform .perception-mini-mark { display: none; }
}

@media (max-width: 900px) and (min-width: 761px) {
  #platform .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #platform .feature-card,
  #platform .feature-card:nth-child(4) {
    grid-column: auto;
  }

  #platform .feature-card:nth-child(5) {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  #platform .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #platform .feature-card,
  #platform .feature-card:nth-child(4),
  #platform .feature-card:nth-child(5) {
    min-height: 360px;
    grid-column: auto;
    padding: 27px;
  }

  #platform .feature-card h3,
  #platform .feature-card-perception h3 {
    font-size: 30px;
  }

  #platform .feature-card-perception h3 { font-size: 28px; }
}

/* =========================================================
   SOLUTIONS — AI ENGINE & PERCEPTIONIQ
   ========================================================= */

.overview-perception-rail {
  position: relative;
  min-height: 112px;
  margin-top: 4px;
  padding: 21px 25px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 17px;
  overflow: hidden;
  border: 1px solid rgba(106, 222, 255, 0.21);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(88, 220, 255, 0.13), transparent 42%),
    linear-gradient(90deg, rgba(139, 108, 255, 0.12), transparent 68%),
    rgba(4, 5, 17, 0.72);
}

.overview-perception-rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(#8b6cff, #58dcff);
  box-shadow: 0 0 20px rgba(88, 220, 255, 0.65);
}

.overview-perception-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 226, 255, 0.25);
  border-radius: 17px;
  color: #86e9ff;
  background: rgba(88, 220, 255, 0.07);
}

.overview-perception-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-perception-rail > span:last-child {
  display: grid;
  gap: 7px;
}

.overview-perception-rail small {
  color: #77e6ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.overview-perception-rail strong {
  max-width: 540px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.solution-ai-engine,
.solution-perception {
  align-items: start;
}

.solution-ai-engine {
  background:
    radial-gradient(circle at 18% 14%, rgba(88, 220, 255, 0.11), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(139, 108, 255, 0.19), transparent 37%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 18, 0.86);
}

.solution-perception {
  background:
    radial-gradient(circle at 82% 19%, rgba(88, 220, 255, 0.15), transparent 36%),
    radial-gradient(circle at 16% 76%, rgba(139, 108, 255, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.016)),
    rgba(5, 6, 18, 0.84);
}

.solution-perception .solution-eyebrow > span {
  color: #77e6ff;
  border-color: rgba(88, 220, 255, 0.3);
  background: rgba(88, 220, 255, 0.085);
}

.solution-perception .solution-link span { color: #77e6ff; }

.solution-deep-dive {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  order: 3;
  width: 100%;
  margin-top: 8px;
  padding-top: clamp(34px, 4.2vw, 58px);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) repeat(2, minmax(240px, 1fr));
  gap: clamp(30px, 4.2vw, 65px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.solution-deep-intro > span {
  color: #a991ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.perception-deep-dive .solution-deep-intro > span { color: #77e6ff; }

.solution-deep-intro p {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.72;
}

.solution-deep-column h4 {
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 16px;
  letter-spacing: -0.025em;
}

.solution-deep-column ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.solution-deep-column li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.52;
}

.solution-deep-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9f89ff;
  box-shadow: 0 0 10px rgba(139, 108, 255, 0.65);
}

.perception-deep-dive .solution-deep-column li::before {
  background: #68e3ff;
  box-shadow: 0 0 10px rgba(88, 220, 255, 0.66);
}

.solution-card-copy .solution-link {
  max-width: 100%;
  line-height: 1.45;
}

.perception-product-visual {
  min-height: 430px;
  background:
    radial-gradient(circle at center, rgba(88, 220, 255, 0.09), transparent 38%),
    rgba(6, 8, 22, 0.88);
}

.perception-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle, black, transparent 75%);
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.perception-source-cluster {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.perception-ai-sources {
  top: 25px;
  left: 25px;
  width: 48%;
}

.perception-social-sources {
  right: 25px;
  bottom: 29px;
  width: 44%;
  justify-content: flex-end;
}

.perception-source-cluster span {
  min-height: 26px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(8, 10, 27, 0.78);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.perception-route {
  position: absolute;
  z-index: 1;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #74e4ff, rgba(139, 108, 255, 0.55));
  box-shadow: 0 0 15px rgba(88, 220, 255, 0.3);
  transform-origin: left center;
}

.perception-route::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px #69e2ff;
  animation: perceptionSignal 3s ease-in-out infinite;
}

.perception-route.route-a { left: 24%; top: 35%; transform: rotate(21deg); }
.perception-route.route-b { left: 51%; top: 60%; transform: rotate(28deg); }
.perception-route.route-b::after { animation-delay: -1.45s; }

@keyframes perceptionSignal {
  0%, 100% { left: 0; opacity: 0; }
  18%, 82% { opacity: 1; }
  50% { left: calc(100% - 5px); }
}

.perception-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 174px;
  height: 174px;
  padding: 21px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(111, 228, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.14), transparent 28%),
    rgba(8, 10, 29, 0.94);
  box-shadow: 0 0 0 13px rgba(88, 220, 255, 0.025), 0 0 60px rgba(88, 220, 255, 0.18);
  transform: translate(-50%, -50%);
}

.perception-core svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #83e9ff;
  stroke-width: 1.4;
}

.perception-core small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.perception-core strong {
  margin-top: 3px;
  font-size: 35px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.perception-brain {
  position: relative;
  width: 116px;
  height: 106px;
  display: grid;
  place-items: center;
}

.perception-brain::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 232, 255, 0.24), rgba(139, 108, 255, 0.08) 52%, transparent 72%);
  filter: blur(8px);
  animation: perceptionBrainAura 2.8s ease-in-out infinite;
}

.perception-core .perception-brain-mark {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  overflow: visible;
  fill: none;
  stroke: #83e9ff;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(88, 220, 255, 0.45));
  animation: perceptionBrainFloat 3.8s ease-in-out infinite;
}

.perception-brain-outline {
  stroke: #8eeaff;
  stroke-dasharray: 190;
  animation: perceptionBrainTrace 4.6s ease-in-out infinite;
}

.perception-brain-folds {
  stroke: rgba(180, 165, 255, 0.82);
}

.perception-brain-chip {
  fill: rgba(111, 232, 255, 0.08);
  stroke: #d7faff;
  animation: perceptionChipPulse 2.2s ease-in-out infinite;
}

.perception-brain-circuit {
  stroke: rgba(176, 235, 255, 0.88);
  stroke-width: 1;
}

.perception-spark {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 230, 255, 0), #f7fdff);
  box-shadow: 0 0 9px rgba(100, 226, 255, 0.9);
  transform-origin: 0 50%;
  animation: perceptionSpark 3.4s ease-out infinite;
  animation-delay: var(--spark-delay);
}

@keyframes perceptionBrainAura {
  0%, 100% { opacity: 0.52; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes perceptionBrainFloat {
  0%, 100% { transform: translateY(1px); }
  50% { transform: translateY(-2px); }
}

@keyframes perceptionBrainTrace {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.72; }
  50% { stroke-dashoffset: -32; opacity: 1; }
}

@keyframes perceptionChipPulse {
  0%, 100% { fill: rgba(111, 232, 255, 0.06); stroke-width: 1.1; }
  50% { fill: rgba(139, 108, 255, 0.22); stroke-width: 1.8; }
}

@keyframes perceptionSpark {
  0%, 56%, 100% {
    opacity: 0;
    transform: rotate(var(--spark-angle)) translateX(39px) scaleX(0.15);
  }
  64% {
    opacity: 1;
    transform: rotate(var(--spark-angle)) translateX(45px) scaleX(1);
  }
  88% {
    opacity: 0;
    transform: rotate(var(--spark-angle)) translateX(57px) scaleX(0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-page .solution-card::after,
  .solutions-page .solution-card::before {
    transition: none;
  }

  .perception-brain::before,
  .perception-brain-mark,
  .perception-brain-outline,
  .perception-brain-chip,
  .perception-spark {
    animation: none !important;
  }

  .perception-spark { display: none; }
}

.perception-report-bars {
  position: absolute;
  left: 28px;
  bottom: 31px;
  width: 31%;
  height: 60px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.perception-report-bars i {
  width: 100%;
  height: 35%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#8b75ff, rgba(88, 220, 255, 0.18));
}

.perception-report-bars i:nth-child(2) { height: 52%; }
.perception-report-bars i:nth-child(3) { height: 43%; }
.perception-report-bars i:nth-child(4) { height: 72%; }
.perception-report-bars i:nth-child(5) { height: 92%; }

.perception-product-note {
  grid-column: 1 / -1;
  padding: 23px 25px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  border: 1px solid rgba(88, 220, 255, 0.11);
  border-radius: 20px;
  background: rgba(88, 220, 255, 0.025);
}

.perception-product-note p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .solution-deep-dive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-deep-intro,
  .perception-product-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .overview-perception-rail {
    grid-template-columns: 47px 1fr;
    padding: 18px;
  }

  .overview-perception-icon {
    width: 43px;
    height: 43px;
    border-radius: 14px;
  }

  .solution-deep-dive {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .solution-deep-intro,
  .perception-product-note {
    grid-column: auto;
  }

  .solution-card-copy .solution-link {
    width: auto;
  }

  .perception-product-visual {
    min-height: 350px;
  }

  .perception-core {
    width: 145px;
    height: 145px;
  }

  .perception-product-note {
    grid-template-columns: 1fr;
    gap: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .perception-route::after { animation: none; }
}

/* =========================================================
   ADAPTIVE INTELLIGENCE — SCROLLING LEARNING CYCLE
   ========================================================= */

.adaptive-intelligence-story {
  min-height: 760vh;
  background:
    radial-gradient(circle at 13% 30%, rgba(139, 108, 255, 0.075), transparent 26%),
    radial-gradient(circle at 83% 48%, rgba(88, 220, 255, 0.075), transparent 34%),
    linear-gradient(180deg, #03050e, #050512 52%, #07040f);
}

.adaptive-intelligence-story .workflow-story-sticky {
  min-height: 720px;
}

.adaptive-intelligence-story .workflow-story-shell {
  grid-template-columns: minmax(310px, 0.75fr) minmax(630px, 1.25fr);
  gap: clamp(44px, 5vw, 82px);
  padding-top: 100px;
  padding-bottom: 30px;
}

.adaptive-intelligence-story .workflow-story-title {
  max-width: 610px;
  margin-top: 19px;
  font-size: clamp(43px, 4.4vw, 68px);
  line-height: 0.94;
}

.adaptive-intelligence-story .workflow-story-lead {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.adaptive-intelligence-thesis {
  max-width: 510px;
  margin-top: 13px;
  padding-left: 15px;
  border-left: 1px solid rgba(164, 142, 255, 0.44);
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.58;
}

.adaptive-intelligence-story .workflow-story-steps {
  margin-top: 21px;
  gap: 1px;
}

.adaptive-intelligence-story .workflow-story-step {
  min-height: 43px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.adaptive-intelligence-story .workflow-story-step > span {
  width: 34px;
  height: 34px;
  left: 3px;
  border-radius: 11px;
}

.adaptive-intelligence-story .workflow-story-steps::before {
  left: 19px;
  background: linear-gradient(180deg, #876eff, #6bdcff 52%, #beadff);
}

.adaptive-intelligence-story .workflow-story-step strong { font-size: 10px; }
.adaptive-intelligence-story .workflow-story-step small { font-size: 6.5px; }

.adaptive-intelligence-story .workflow-story-step.is-active small {
  color: #bcaaff;
}

.adaptive-intelligence-story .workflow-story-step.is-active > span {
  border-color: rgba(160, 137, 255, 0.62);
  background: rgba(116, 91, 244, 0.2);
  box-shadow: 0 0 0 5px rgba(117, 100, 255, 0.035), 0 0 25px rgba(117, 100, 255, 0.2);
}

.adaptive-intelligence-story .workflow-scroll-cue { margin-top: 13px; }

.adaptive-intelligence-story .workflow-deck-wrap {
  height: min(78svh, 760px);
  min-height: 590px;
  overflow: hidden;
  border-color: rgba(160, 137, 255, 0.2);
  background:
    radial-gradient(circle at 50% 39%, rgba(114, 82, 245, 0.075), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), transparent 42%),
    rgba(5, 6, 18, 0.8);
}

.adaptive-intelligence-visual {
  position: absolute;
  z-index: 2;
  top: 45px;
  left: 18px;
  right: 18px;
  bottom: 205px;
}

.adaptive-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 74%);
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.adaptive-visual-aura {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.2), rgba(88, 220, 255, 0.04) 48%, transparent 70%);
  filter: blur(25px);
  transform: translate(-50%, -50%);
  transition: background 0.8s ease, opacity 0.8s ease;
}

.adaptive-orbit-ring {
  position: absolute;
  left: 50%;
  top: 49%;
  border: 1px solid rgba(159, 138, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.adaptive-ring-one {
  width: 63%;
  height: 79%;
  box-shadow: inset 0 0 35px rgba(139, 108, 255, 0.04), 0 0 40px rgba(139, 108, 255, 0.04);
}

.adaptive-ring-two {
  width: 86%;
  height: 92%;
  border-color: rgba(88, 220, 255, 0.09);
}

.adaptive-ring-two::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 15px #8f77ff;
  animation: adaptiveOrbitSignal 5.8s linear infinite;
  transform-origin: 0 calc(46% + 3px);
}

@keyframes adaptiveOrbitSignal {
  from { transform: rotate(0deg) translateX(0); }
  to { transform: rotate(360deg) translateX(0); }
}

.adaptive-orbit-node {
  position: absolute;
  z-index: 5;
  min-height: 31px;
  padding: 0 10px 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(7, 8, 22, 0.88);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease, transform 0.55s ease, background 0.55s ease;
}

.adaptive-orbit-node i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.045);
  font-size: 6px;
  font-style: normal;
}

.node-environment { left: 50%; top: 0; transform: translateX(-50%); }
.node-relevance { right: 7%; top: 18%; }
.node-editor { right: 1%; top: 54%; }
.node-distribution { right: 22%; bottom: 0; }
.node-revenue { left: 22%; bottom: 0; }
.node-connect { left: 1%; top: 54%; }
.node-improve { left: 7%; top: 18%; }

.workflow-deck-wrap[data-active="0"] [data-orbit-node="0"],
.workflow-deck-wrap[data-active="1"] [data-orbit-node="1"],
.workflow-deck-wrap[data-active="2"] [data-orbit-node="2"],
.workflow-deck-wrap[data-active="3"] [data-orbit-node="3"],
.workflow-deck-wrap[data-active="4"] [data-orbit-node="4"],
.workflow-deck-wrap[data-active="5"] [data-orbit-node="5"],
.workflow-deck-wrap[data-active="6"] [data-orbit-node="6"] {
  color: #fff;
  border-color: rgba(171, 151, 255, 0.48);
  background: linear-gradient(110deg, rgba(139, 108, 255, 0.21), rgba(88, 220, 255, 0.075)), rgba(7, 8, 22, 0.94);
  box-shadow: 0 0 0 5px rgba(139, 108, 255, 0.03), 0 0 28px rgba(139, 108, 255, 0.22);
}

.workflow-deck-wrap[data-active="0"] [data-orbit-node="0"],
.workflow-deck-wrap[data-active="3"] [data-orbit-node="3"],
.workflow-deck-wrap[data-active="4"] [data-orbit-node="4"] { transform: translateY(-4px); }

.workflow-deck-wrap[data-active="0"] [data-orbit-node="0"] { transform: translate(-50%, -4px); }

.adaptive-intelligence-core {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 49%;
  width: clamp(170px, 22vw, 222px);
  height: clamp(170px, 22vw, 222px);
  padding: 22px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(181, 160, 255, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 50% 65%, rgba(98, 70, 212, 0.35), rgba(8, 8, 26, 0.97) 68%);
  box-shadow: 0 0 0 14px rgba(139, 108, 255, 0.03), 0 0 75px rgba(139, 108, 255, 0.27), inset 0 0 35px rgba(139, 108, 255, 0.1);
  transform: translate(-50%, -50%);
}

.adaptive-core-pulse {
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(139, 108, 255, 0.18);
  border-radius: 50%;
  animation: adaptiveCorePulse 3.4s ease-in-out infinite;
}

@keyframes adaptiveCorePulse {
  50% { opacity: 0.35; transform: scale(1.06); }
}

.adaptive-intelligence-core svg {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
  fill: none;
  stroke: #c9bbff;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adaptive-intelligence-core small {
  color: rgba(255, 255, 255, 0.39);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.adaptive-intelligence-core strong {
  margin-top: 5px;
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 620;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.adaptive-intelligence-core em {
  margin-top: 8px;
  color: #9f8bff;
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.adaptive-owned-signals {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 13%;
  width: 84%;
  display: flex;
  justify-content: center;
  gap: 6px;
  transform: translateX(-50%);
}

.adaptive-owned-signals span {
  min-height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.29);
  background: rgba(7, 8, 22, 0.72);
  font-size: 5.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.adaptive-stage-deck {
  position: absolute;
  z-index: 8;
  left: 42px;
  right: 42px;
  bottom: 39px;
  height: 155px;
}

.adaptive-stage-copy {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  opacity: 0;
  pointer-events: none;
  filter: blur(5px);
  transform: translateY(25px);
  transition: opacity 0.62s ease, filter 0.62s ease, transform 0.72s cubic-bezier(0.16, 0.84, 0.33, 1);
}

.adaptive-stage-copy.is-active {
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: translateY(0);
}

.adaptive-stage-copy.is-past {
  opacity: 0;
  transform: translateY(-22px);
}

.adaptive-stage-copy > span {
  color: #9f89ff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.adaptive-stage-copy h3 {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(29px, 3.4vw, 48px);
  font-weight: 580;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.adaptive-stage-copy p {
  max-width: 740px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.55;
}

.adaptive-stage-final {
  align-content: center;
}

.adaptive-stage-final h3 {
  color: transparent;
  background: linear-gradient(105deg, #fff, #cfc0ff 55%, #74e4ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.adaptive-stage-final > strong {
  max-width: 760px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  line-height: 1.45;
}

.adaptive-intelligence-story .workflow-deck-progress {
  left: 42px;
  right: 42px;
  bottom: 20px;
}

.adaptive-intelligence-story .workflow-deck-progress > span {
  background: linear-gradient(90deg, #8065ff, #bdaaff 42%, #6ee3ff 72%, #ffffff);
}

.workflow-deck-wrap[data-active="5"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(94, 213, 255, 0.17), rgba(139, 108, 255, 0.07) 42%, transparent 67%);
}

.workflow-deck-wrap[data-active="6"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(186, 165, 255, 0.23), transparent 66%);
}

@media (max-width: 1230px) and (min-width: 901px) {
  .adaptive-intelligence-story .workflow-story-shell {
    grid-template-columns: minmax(280px, 0.66fr) minmax(560px, 1.34fr);
    gap: 34px;
    padding-inline: 4vw;
  }

  .adaptive-intelligence-story .workflow-story-title {
    font-size: clamp(41px, 4.5vw, 57px);
  }

  .adaptive-orbit-node strong { display: none; }
  .adaptive-orbit-node { padding-right: 6px; }
  .adaptive-owned-signals span { padding-inline: 5px; font-size: 5px; }
}

@media (max-width: 900px) {
  .adaptive-intelligence-story {
    min-height: 0;
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .adaptive-intelligence-story .workflow-story-title {
    max-width: 730px;
    font-size: clamp(47px, 10vw, 74px);
  }

  .adaptive-intelligence-thesis {
    max-width: 670px;
    font-size: 12px;
  }

  .adaptive-intelligence-story .workflow-deck-wrap {
    height: auto;
    margin-top: 49px;
    overflow: visible;
  }

  .adaptive-intelligence-visual {
    position: relative;
    inset: auto;
    height: 400px;
    overflow: hidden;
    border: 1px solid rgba(151, 128, 255, 0.17);
    border-radius: 29px;
    background: rgba(7, 8, 22, 0.64);
  }

  .adaptive-orbit-nodes,
  .adaptive-owned-signals {
    display: none;
  }

  .adaptive-ring-one { width: 300px; height: 300px; }
  .adaptive-ring-two { width: 390px; height: 350px; }

  .adaptive-intelligence-core {
    width: 205px;
    height: 205px;
  }

  .adaptive-stage-deck {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    margin-top: 16px;
    display: grid;
    gap: 12px;
  }

  .adaptive-stage-copy,
  .adaptive-stage-copy.is-active,
  .adaptive-stage-copy.is-next,
  .adaptive-stage-copy.is-future,
  .adaptive-stage-copy.is-past {
    position: relative;
    inset: auto;
    min-height: 205px;
    padding: 28px;
    display: grid;
    align-content: center;
    opacity: 1;
    pointer-events: auto;
    filter: none;
    transform: none;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 24px;
    background:
      radial-gradient(circle at 90% 10%, rgba(139, 108, 255, 0.11), transparent 40%),
      rgba(255, 255, 255, 0.025);
  }

  .adaptive-stage-copy h3 {
    max-width: 720px;
    font-size: clamp(33px, 6vw, 46px);
  }

  .adaptive-stage-copy p {
    max-width: 720px;
    font-size: 12px;
  }

  .adaptive-stage-final > strong { font-size: 11px; }
}

@media (max-width: 600px) {
  .adaptive-intelligence-story {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .adaptive-intelligence-story .workflow-story-title {
    font-size: clamp(40px, 12.5vw, 57px);
  }

  .adaptive-intelligence-visual { height: 335px; }

  .adaptive-ring-one { width: 245px; height: 245px; }
  .adaptive-ring-two { width: 330px; height: 295px; }

  .adaptive-intelligence-core {
    width: 174px;
    height: 174px;
  }

  .adaptive-stage-copy,
  .adaptive-stage-copy.is-active,
  .adaptive-stage-copy.is-next,
  .adaptive-stage-copy.is-future,
  .adaptive-stage-copy.is-past {
    min-height: 220px;
    padding: 25px 21px;
    border-radius: 21px;
  }

  .adaptive-stage-copy h3 {
    font-size: clamp(31px, 9.3vw, 43px);
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .adaptive-intelligence-story .workflow-story-shell {
    padding-top: 78px;
    padding-bottom: 18px;
  }

  .adaptive-intelligence-story .workflow-story-title {
    margin-top: 14px;
    font-size: clamp(37px, 4vw, 52px);
  }

  .adaptive-intelligence-story .workflow-story-lead { margin-top: 12px; }
  .adaptive-intelligence-thesis { margin-top: 9px; font-size: 9px; }
  .adaptive-intelligence-story .workflow-story-steps { margin-top: 13px; }
  .adaptive-intelligence-story .workflow-story-step { min-height: 36px; }
  .adaptive-intelligence-story .workflow-story-step > span { width: 30px; height: 30px; }
  .adaptive-intelligence-story .workflow-scroll-cue { display: none; }
  .adaptive-intelligence-story .workflow-deck-wrap { min-height: 540px; }
}

@media (prefers-reduced-motion: reduce) {
  .adaptive-ring-two::after,
  .adaptive-core-pulse {
    animation: none !important;
  }

  .adaptive-stage-copy,
  .adaptive-orbit-node {
    transition: none !important;
  }
}

/* =========================================================
   2026-08 READABILITY PASS — SIMPLE, CONSISTENT, PREMIUM
   ========================================================= */

/* The following superseded pass is intentionally disabled so the original
   product-card design remains untouched. */
@media not all {

/* Keep every homepage platform card on the same footprint. */
@media (max-width: 900px) and (min-width: 761px) {
  #platform .feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #platform .feature-card {
    width: auto;
    grid-column: span 2;
  }

  #platform .feature-card:nth-child(4) { grid-column: 2 / span 2; }
  #platform .feature-card:nth-child(5) {
    width: auto;
    grid-column: 4 / span 2;
    justify-self: stretch;
  }
}

/* Solutions: one shared hierarchy and footprint for all five products. */
.solutions-page .solution-stack {
  gap: 26px;
}

.solutions-page .solution-card,
.solutions-page .solution-card:nth-child(even) {
  width: 100%;
  min-height: 780px;
  padding: clamp(38px, 4.7vw, 64px);
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  grid-template-rows: minmax(360px, auto) auto;
  column-gap: clamp(42px, 5.4vw, 74px);
  row-gap: 38px;
  align-items: center;
  border-radius: 34px;
  transform: none !important;
  transform-style: flat;
  will-change: auto;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.solutions-page .solution-card:hover {
  transform: none !important;
  border-color: rgba(203, 188, 255, 0.28);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34), inset 0 0 70px rgba(139, 108, 255, 0.035);
}

.solutions-page .solution-card-copy {
  order: 1;
  transform: none;
}

.solutions-page .solution-card-visual {
  order: 2;
  width: 100%;
  min-height: 360px;
  transform: none;
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), inset 0 0 44px rgba(139, 108, 255, 0.045);
}

.solutions-page .solution-card:nth-child(even) .solution-card-copy { order: 2; }
.solutions-page .solution-card:nth-child(even) .solution-card-visual { order: 1; }

.solutions-page .solution-ai-engine,
.solutions-page .solution-perception {
  align-items: center;
}

.solutions-page .solution-card h3 {
  max-width: 640px;
  margin-top: 26px;
  gap: 0.16em 0.21em;
  font-size: clamp(43px, 4.5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.068em;
}

.solutions-page .solution-card-copy > p {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.62;
}

.solutions-page .solution-link {
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.solutions-page .solution-card-visual .social-card,
.solutions-page .solution-card-visual .video-progress span,
.solutions-page .solution-card-visual .revenue-chart i,
.solutions-page .solution-card-visual .ai-engine-output,
.solutions-page .solution-card-visual .perception-route::after {
  animation: none;
}

.solution-essentials {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  order: 3;
  width: 100%;
  padding-top: 32px;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) repeat(2, minmax(230px, 1fr));
  gap: clamp(28px, 4vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.solution-essential-intro > span {
  color: #aa97ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.solution-perception .solution-essential-intro > span { color: #77e6ff; }
.solution-publio .solution-essential-intro > span { color: #74e9c1; }
.solution-cleon .solution-essential-intro > span { color: #ffb879; }

.solution-essential-intro p {
  max-width: 430px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13.5px;
  line-height: 1.66;
}

.solution-essential-column h4 {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.solution-essential-column ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.solution-essential-column li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12.5px;
  line-height: 1.52;
}

.solution-essential-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9f89ff;
}

.solution-publio .solution-essential-column li::before { background: #48ddb0; }
.solution-cleon .solution-essential-column li::before { background: #ff9f4f; }
.solution-perception .solution-essential-column li::before { background: #68e3ff; }

.solution-impact-column li strong {
  color: #ffc28e;
  font-size: 1.02em;
  font-weight: 750;
}

/* A clear MediaSync story-to-opportunity visual, without decorative clutter. */
.mediasync-opportunity-visual {
  background:
    radial-gradient(circle at 72% 44%, rgba(139, 108, 255, 0.14), transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    rgba(7, 8, 23, 0.92);
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.mediasync-visual-label {
  position: absolute;
  left: 25px;
  top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.mediasync-visual-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a48dff;
  box-shadow: 0 0 12px rgba(164, 141, 255, 0.75);
}

.mediasync-source-stack {
  position: absolute;
  left: 25px;
  top: 82px;
  width: 39%;
  display: grid;
  gap: 10px;
}

.mediasync-source-stack > span {
  min-height: 48px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.67);
  background: rgba(255, 255, 255, 0.035);
  font-size: 9px;
  font-weight: 650;
}

.mediasync-source-stack i {
  color: #9f89ff;
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.mediasync-opportunity-card {
  position: absolute;
  right: 25px;
  top: 86px;
  width: 48%;
  min-height: 174px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(169, 145, 255, 0.25);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(139, 108, 255, 0.13), rgba(255, 255, 255, 0.035)), rgba(8, 9, 26, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.mediasync-opportunity-card small {
  color: #ad9aff;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.mediasync-opportunity-card strong {
  max-width: 260px;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 590;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.mediasync-opportunity-card > div {
  display: flex;
  gap: 7px;
}

.mediasync-opportunity-card > div span,
.mediasync-output-row span {
  min-height: 25px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.53);
  background: rgba(255, 255, 255, 0.035);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mediasync-output-row {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 48%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mediasync-output-row span { justify-content: center; }

.mediasync-visual-route {
  position: absolute;
  left: 40%;
  top: 42%;
  width: 13%;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 108, 255, 0.16), #9e87ff);
}

.mediasync-visual-route::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8ceff;
  box-shadow: 0 0 12px rgba(159, 137, 255, 0.72);
}

.mediasync-visual-route.route-two { top: 64%; }

@media (max-width: 1180px) {
  .solutions-page .solution-card,
  .solutions-page .solution-card:nth-child(even) {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 34px;
  }

  .solutions-page .solution-card-copy,
  .solutions-page .solution-card-visual,
  .solutions-page .solution-card:nth-child(even) .solution-card-copy,
  .solutions-page .solution-card:nth-child(even) .solution-card-visual {
    order: initial;
  }

  .solutions-page .solution-card-visual { min-height: 390px; }

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

  .solution-essential-intro { grid-column: 1 / -1; }
  .solution-essential-intro p { max-width: 760px; }
}

@media (max-width: 760px) {
  .solutions-page .solution-card,
  .solutions-page .solution-card:nth-child(even) {
    padding: 32px 21px;
    gap: 30px;
    border-radius: 27px;
  }

  .solutions-page .solution-card h3 {
    font-size: clamp(38px, 11.4vw, 54px);
  }

  .solutions-page .solution-card-copy > p {
    font-size: 15px;
    line-height: 1.62;
  }

  .solutions-page .solution-card-visual {
    min-height: 330px;
    border-radius: 22px;
  }

  .solution-essentials {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 27px;
  }

  .solution-essential-intro { grid-column: auto; }
  .solution-essential-intro p { font-size: 13px; }
  .solution-essential-column li { font-size: 12.5px; }

  .mediasync-visual-label { left: 18px; top: 18px; }
  .mediasync-source-stack { left: 18px; top: 61px; width: 43%; gap: 8px; }
  .mediasync-source-stack > span { min-height: 43px; padding-inline: 10px; font-size: 7px; }
  .mediasync-opportunity-card { right: 18px; top: 78px; width: 48%; min-height: 158px; padding: 17px; }
  .mediasync-opportunity-card strong { font-size: 18px; }
  .mediasync-opportunity-card > div { flex-direction: column; align-items: flex-start; }
  .mediasync-opportunity-card > div span { min-height: 21px; }
  .mediasync-output-row { right: 18px; bottom: 20px; width: calc(100% - 36px); }
  .mediasync-visual-route { display: none; }
}

/* Adaptive Intelligence: 40% visual system, 60% readable story. */
@media (min-width: 901px) {
  .adaptive-intelligence-visual {
    top: 48px;
    left: 24px;
    right: 24px;
    bottom: auto;
    height: 38%;
  }

  .adaptive-intelligence-core {
    width: clamp(126px, 14vw, 158px);
    height: clamp(126px, 14vw, 158px);
    padding: 17px;
    box-shadow: 0 0 0 10px rgba(139, 108, 255, 0.025), 0 0 52px rgba(139, 108, 255, 0.23), inset 0 0 26px rgba(139, 108, 255, 0.09);
  }

  .adaptive-intelligence-core svg {
    width: 25px;
    height: 25px;
    margin-bottom: 5px;
  }

  .adaptive-intelligence-core strong {
    margin-top: 4px;
    font-size: clamp(17px, 1.65vw, 22px);
  }

  .adaptive-intelligence-core em { margin-top: 5px; font-size: 5px; }
  .adaptive-owned-signals { display: none; }

  .adaptive-orbit-node {
    min-height: 27px;
    padding: 0 8px 0 5px;
    gap: 5px;
    font-size: 6px;
  }

  .adaptive-orbit-node i {
    width: 18px;
    height: 18px;
    font-size: 5px;
  }

  .adaptive-stage-deck {
    top: 44%;
    left: 46px;
    right: 46px;
    bottom: 38px;
    height: auto;
  }

  .adaptive-stage-copy,
  .adaptive-stage-final {
    align-content: center;
  }

  .adaptive-stage-copy > span { font-size: 8px; }

  .adaptive-stage-copy h3 {
    max-width: 850px;
    margin-top: 12px;
    font-size: clamp(39px, 4.25vw, 59px);
    line-height: 0.98;
    letter-spacing: -0.058em;
  }

  .adaptive-stage-copy p {
    max-width: 790px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.62;
  }

  .adaptive-stage-final > strong {
    max-width: 790px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    line-height: 1.55;
  }
}

@media (max-width: 900px) {
  .adaptive-intelligence-visual { height: 285px; }
  .adaptive-ring-one { width: 225px; height: 225px; }
  .adaptive-ring-two { width: 310px; height: 265px; }
  .adaptive-intelligence-core { width: 150px; height: 150px; }

  .adaptive-stage-copy,
  .adaptive-stage-copy.is-active,
  .adaptive-stage-copy.is-next,
  .adaptive-stage-copy.is-future,
  .adaptive-stage-copy.is-past {
    min-height: 190px;
  }

  .adaptive-stage-copy h3 { font-size: clamp(34px, 6.4vw, 46px); }
  .adaptive-stage-copy p { color: rgba(255, 255, 255, 0.62); font-size: 12.5px; line-height: 1.62; }
}

@media (max-width: 600px) {
  .adaptive-intelligence-visual { height: 245px; }
  .adaptive-ring-one { width: 190px; height: 190px; }
  .adaptive-ring-two { width: 270px; height: 225px; }
  .adaptive-intelligence-core { width: 132px; height: 132px; padding: 15px; }
  .adaptive-intelligence-core svg { width: 27px; height: 27px; }
  .adaptive-intelligence-core strong { font-size: 17px; }

  .adaptive-stage-copy,
  .adaptive-stage-copy.is-active,
  .adaptive-stage-copy.is-next,
  .adaptive-stage-copy.is-future,
  .adaptive-stage-copy.is-past {
    min-height: 195px;
    padding: 25px 21px;
  }

  .adaptive-stage-copy h3 { font-size: clamp(30px, 8.8vw, 40px); }
}

}

/* Showcases: quieter hierarchy, compact cards and clearer recognition. */
.showcase-proof-heading {
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  column-gap: clamp(45px, 6vw, 92px);
}

.showcase-proof-heading h2 {
  max-width: 760px;
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: 1;
  letter-spacing: -0.062em;
}

.impact-metric-card {
  min-height: 260px;
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.impact-metric-card::before { content: none; }

.impact-metric-card > strong {
  font-size: clamp(44px, 5vw, 76px);
  text-shadow: none;
}

.avopolis-case-shell {
  padding: clamp(34px, 5vw, 68px);
  gap: clamp(44px, 6vw, 82px);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.avopolis-case-shell::after { content: none; }

.avopolis-case-brand {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}

.avopolis-logo-badge {
  width: 106px;
  height: 74px;
  padding: 7px 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: #f3f2f5;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.22);
}

.avopolis-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.avopolis-case-intro .pill { margin-bottom: 0; }

.avopolis-case-intro h2 {
  max-width: 660px;
  font-size: clamp(39px, 4.2vw, 59px);
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.avopolis-case-metrics article {
  min-height: 156px;
  border-radius: 19px;
  backdrop-filter: none;
}

.avopolis-case-metrics strong { font-size: clamp(34px, 3.4vw, 50px); }

.showcase-trust-heading h2 {
  font-size: clamp(50px, 5.8vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.trust-scale-grid { margin-top: 44px; }

.trust-scale-grid article {
  min-height: 230px;
  border-radius: 27px;
}

.trust-scale-grid strong { font-size: clamp(68px, 8vw, 116px); }

.recognition-panel {
  margin-top: 16px;
  padding: clamp(31px, 4vw, 54px);
  grid-template-columns: 1fr;
  gap: 31px;
  border-radius: 28px;
}

.recognition-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.recognition-title strong {
  margin-top: 0;
  max-width: 610px;
  font-size: clamp(34px, 3.8vw, 53px);
  line-height: 1;
  text-align: right;
}

.recognition-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 0;
}

.recognition-list li {
  min-height: 104px;
  padding: 17px;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.022);
}

.recognition-list p {
  display: grid;
  align-content: start;
  justify-content: initial;
  gap: 7px;
}

.recognition-list strong {
  font-size: 13px;
  line-height: 1.36;
}

.recognition-list small {
  font-size: 7px;
  line-height: 1.4;
  text-align: left;
}

@media (max-width: 1080px) {
  .showcase-proof-heading { grid-template-columns: 1fr; }
  .recognition-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .showcase-proof-heading h2 { font-size: clamp(37px, 10.8vw, 52px); }
  .impact-metric-card { min-height: 215px; }
  .impact-metric-card > strong { font-size: clamp(49px, 15vw, 71px); }

  .avopolis-case-shell { padding: 27px 19px; gap: 33px; border-radius: 27px; }
  .avopolis-case-brand { margin-bottom: 21px; gap: 13px; }
  .avopolis-logo-badge { width: 92px; height: 64px; padding: 6px 15px; border-radius: 15px; }
  .avopolis-case-intro h2 { font-size: clamp(36px, 10.6vw, 49px); }

  .showcase-trust-heading h2 { font-size: clamp(47px, 14vw, 67px); }
  .trust-scale-grid article { min-height: 195px; }
  .trust-scale-grid strong { font-size: clamp(69px, 22vw, 102px); }

  .recognition-panel { padding: 27px 19px; gap: 27px; }
  .recognition-title { align-items: flex-start; flex-direction: column; gap: 14px; }
  .recognition-title strong { font-size: clamp(32px, 9.7vw, 43px); text-align: left; }
  .recognition-list { grid-template-columns: 1fr; gap: 8px; }
  .recognition-list li { min-height: 92px; padding: 15px; }
}

/* =========================================================
   REQUESTED CORRECTIONS — SOLUTIONS OVERVIEW + ADAPTIVE ONLY
   ========================================================= */

/* PerceptionIQ is the fifth full-size stage, not a secondary rail. */
.flow-stage-perception::before {
  background: linear-gradient(#8b6cff, #58dcff);
  box-shadow: 0 0 20px rgba(88, 220, 255, 0.65);
}

.flow-stage-perception span {
  color: #77e6ff;
}

@media (max-width: 360px) {
  .overview-flow .flow-stage {
    min-height: 142px;
  }
}

/* Preserve the original product cards; keep their added information compact. */
.solution-compact-details {
  align-items: start;
}

.solution-compact-details .solution-deep-intro p {
  font-size: 14px;
  line-height: 1.68;
}

.solution-compact-details .solution-deep-column li {
  font-size: 13px;
  line-height: 1.55;
}

.solution-impact-column li strong {
  color: #ffc08c;
  font-weight: 760;
}

/* Adaptive Intelligence — a true 40/60 side-by-side composition. */
@media (min-width: 901px) {
  .adaptive-intelligence-story .workflow-story-shell {
    grid-template-columns: minmax(320px, 0.72fr) minmax(640px, 1.28fr);
    gap: clamp(46px, 5vw, 78px);
  }

  .adaptive-intelligence-story .workflow-story-title {
    max-width: 560px;
    font-size: clamp(44px, 3.85vw, 60px);
    line-height: 0.98;
    letter-spacing: -0.068em;
  }

  .adaptive-intelligence-story .workflow-story-step {
    color: rgba(255, 255, 255, 0.48);
  }

  .adaptive-intelligence-story .workflow-story-step small {
    color: rgba(255, 255, 255, 0.34);
  }

  .adaptive-intelligence-story .workflow-deck-wrap {
    border-color: rgba(164, 143, 255, 0.24);
    background:
      radial-gradient(circle at 19% 50%, rgba(123, 91, 255, 0.15), transparent 33%),
      radial-gradient(circle at 88% 18%, rgba(88, 220, 255, 0.04), transparent 28%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.032), transparent 43%),
      rgba(5, 6, 18, 0.86);
    box-shadow:
      0 38px 100px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.035),
      inset 0 0 70px rgba(100, 72, 220, 0.035);
  }

  .adaptive-intelligence-story .workflow-deck-wrap::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: 40%;
    top: 68px;
    bottom: 43px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(169, 148, 255, 0.2) 22%, rgba(111, 220, 255, 0.14) 72%, transparent);
    pointer-events: none;
  }

  .adaptive-intelligence-story .workflow-deck-grid {
    opacity: 0.3;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 48%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 48%);
  }

  .adaptive-intelligence-visual {
    top: 66px;
    left: 28px;
    right: auto;
    bottom: 47px;
    width: calc(40% - 42px);
    height: auto;
  }

  .adaptive-intelligence-visual::after {
    content: "";
    position: absolute;
    z-index: 4;
    left: 76%;
    top: 50%;
    width: 36%;
    height: 1px;
    background: linear-gradient(90deg, rgba(158, 135, 255, 0.72), rgba(158, 135, 255, 0.08));
    box-shadow: 0 0 14px rgba(139, 108, 255, 0.18);
  }

  .adaptive-visual-grid {
    opacity: 0.2;
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%);
    mask-image: radial-gradient(circle at center, black, transparent 70%);
  }

  .adaptive-visual-aura {
    width: 108%;
    height: auto;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(139, 108, 255, 0.25), rgba(88, 220, 255, 0.035) 48%, transparent 70%);
    filter: blur(22px);
  }

  .adaptive-orbit-nodes,
  .adaptive-owned-signals {
    display: none;
  }

  .adaptive-ring-one,
  .adaptive-ring-two {
    top: 50%;
    height: auto;
    aspect-ratio: 1;
  }

  .adaptive-ring-one {
    width: min(80%, 245px);
    box-shadow: inset 0 0 28px rgba(139, 108, 255, 0.045), 0 0 34px rgba(139, 108, 255, 0.04);
  }

  .adaptive-ring-two {
    width: min(100%, 310px);
  }

  .adaptive-intelligence-core {
    top: 50%;
    width: clamp(132px, 12vw, 166px);
    height: clamp(132px, 12vw, 166px);
    padding: 17px;
    box-shadow:
      0 0 0 10px rgba(139, 108, 255, 0.028),
      0 0 58px rgba(139, 108, 255, 0.25),
      inset 0 0 28px rgba(139, 108, 255, 0.09);
  }

  .adaptive-intelligence-core svg {
    width: 27px;
    height: 27px;
    margin-bottom: 5px;
  }

  .adaptive-intelligence-core strong {
    margin-top: 4px;
    font-size: clamp(18px, 1.55vw, 23px);
  }

  .adaptive-intelligence-core em {
    margin-top: 6px;
    font-size: 5px;
  }

  .adaptive-stage-deck {
    top: 68px;
    left: 44%;
    right: 38px;
    bottom: 43px;
    height: auto;
  }

  .adaptive-stage-copy,
  .adaptive-stage-final {
    align-content: center;
  }

  .adaptive-stage-copy > span {
    font-size: 8px;
    letter-spacing: 0.15em;
  }

  .adaptive-stage-copy h3 {
    max-width: 520px;
    margin-top: 14px;
    font-size: clamp(35px, 3.15vw, 51px);
    line-height: 1;
    letter-spacing: -0.058em;
  }

  .adaptive-stage-copy p {
    max-width: 520px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.65;
  }

  .adaptive-stage-final > strong {
    max-width: 520px;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10.5px;
    line-height: 1.55;
  }

  .adaptive-intelligence-story .workflow-deck-progress {
    left: 44%;
    right: 38px;
    bottom: 25px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .adaptive-intelligence-story .workflow-story-shell {
    grid-template-columns: minmax(280px, 0.67fr) minmax(570px, 1.33fr);
    gap: 34px;
  }

  .adaptive-stage-copy h3 { font-size: clamp(34px, 3.7vw, 43px); }
  .adaptive-stage-copy p { font-size: 12px; }
  .adaptive-intelligence-core { width: 136px; height: 136px; }
}

/* Solutions cards — portfolio hover treatment without card movement. */
.solutions-page .solution-card {
  isolation: isolate;
  transform-style: flat;
  will-change: auto;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.solutions-page .solution-card:hover {
  transform: none !important;
  border-color: rgba(139, 108, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 75px rgba(0, 0, 0, 0.3),
    0 0 45px rgba(109, 77, 255, 0.11);
}

/* Adaptive Intelligence — orbital cloud system from the approved visual direction. */
.adaptive-reference-system {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  isolation: isolate;
}

.adaptive-reference-orbits {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  align-self: end;
}

.adaptive-reference-orbits::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 92, 255, 0.28), rgba(88, 55, 210, 0.08) 48%, transparent 72%);
  filter: blur(20px);
  animation: adaptiveReferenceAura 6.8s ease-in-out infinite;
}

.adaptive-reference-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border: 1px solid rgba(145, 116, 255, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(113, 78, 255, 0.025), 0 0 17px rgba(118, 85, 255, 0.04);
  transform-origin: center;
}

.adaptive-reference-orbit i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9bbff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.85), 0 0 15px rgba(132, 94, 255, 0.95);
  animation: adaptiveReferenceSignal 4.8s ease-in-out infinite;
}

.adaptive-reference-orbit.orbit-one {
  width: 92%;
  height: 68%;
  transform: translate(-50%, -50%) rotate(-11deg);
  animation: adaptiveReferenceOrbitOne 15s ease-in-out infinite alternate;
}

.adaptive-reference-orbit.orbit-one i { left: 17%; top: 1%; }

.adaptive-reference-orbit.orbit-two {
  width: 84%;
  height: 83%;
  border-color: rgba(177, 153, 255, 0.36);
  transform: translate(-50%, -50%) rotate(16deg);
  animation: adaptiveReferenceOrbitTwo 18s ease-in-out infinite alternate;
}

.adaptive-reference-orbit.orbit-two i {
  right: 3%;
  top: 31%;
  animation-delay: -1.6s;
}

.adaptive-reference-orbit.orbit-three {
  width: 72%;
  height: 93%;
  border-style: dashed;
  border-color: rgba(126, 93, 255, 0.3);
  transform: translate(-50%, -50%) rotate(39deg);
  animation: adaptiveReferenceOrbitThree 21s ease-in-out infinite alternate;
}

.adaptive-reference-orbit.orbit-three i {
  left: 11%;
  bottom: 12%;
  animation-delay: -2.8s;
}

.adaptive-reference-orbit.orbit-four {
  width: 104%;
  height: 104%;
  border-color: rgba(126, 104, 224, 0.13);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.adaptive-reference-orbit.orbit-four i {
  right: 6%;
  top: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.58;
  animation-delay: -0.8s;
}

.adaptive-reference-mark {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 42%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 76, 240, 0.2), rgba(16, 12, 49, 0.08) 58%, transparent 72%);
  transform: translate(-50%, -50%);
}

.adaptive-reference-mark::before {
  content: "";
  position: absolute;
  inset: -22%;
  border: 1px solid rgba(177, 154, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 44px rgba(111, 73, 255, 0.18), inset 0 0 30px rgba(143, 111, 255, 0.07);
}

.adaptive-reference-mark img {
  width: 79%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 19px rgba(143, 108, 255, 0.88));
  animation: adaptiveReferenceMark 5.8s ease-in-out infinite;
}

.adaptive-reference-pulse {
  position: absolute;
  inset: -6%;
  border: 1px solid rgba(181, 157, 255, 0.22);
  border-radius: 50%;
  animation: adaptiveReferencePulse 5.8s ease-out infinite;
}

.adaptive-reference-lockup {
  width: 100%;
  padding-top: 7px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.adaptive-reference-lockup small,
.adaptive-reference-lockup em {
  color: #9f86ff;
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.adaptive-reference-lockup strong {
  max-width: 245px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.adaptive-reference-lockup em { margin-top: 8px; }

@keyframes adaptiveReferenceAura {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes adaptiveReferenceMark {
  0%, 100% { opacity: 0.92; transform: scale(0.985); }
  50% { opacity: 1; transform: scale(1.025); }
}

@keyframes adaptiveReferencePulse {
  0% { opacity: 0; transform: scale(0.88); }
  24% { opacity: 0.48; }
  72%, 100% { opacity: 0; transform: scale(1.19); }
}

@keyframes adaptiveReferenceSignal {
  0%, 100% { opacity: 0.42; transform: scale(0.78); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes adaptiveReferenceOrbitOne {
  from { transform: translate(-50%, -50%) rotate(-13deg); }
  to { transform: translate(-50%, -50%) rotate(-7deg); }
}

@keyframes adaptiveReferenceOrbitTwo {
  from { transform: translate(-50%, -50%) rotate(13deg); }
  to { transform: translate(-50%, -50%) rotate(19deg); }
}

@keyframes adaptiveReferenceOrbitThree {
  from { transform: translate(-50%, -50%) rotate(36deg); }
  to { transform: translate(-50%, -50%) rotate(42deg); }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .adaptive-reference-lockup strong { font-size: 20px; }
  .adaptive-reference-lockup small,
  .adaptive-reference-lockup em { font-size: 5px; }
}

@media (max-width: 900px) {
  .adaptive-reference-system {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    gap: 18px;
    padding: 5px 18px 10px;
  }

  .adaptive-reference-orbits {
    width: min(58vw, 235px);
    align-self: center;
  }

  .adaptive-reference-lockup {
    width: min(38vw, 210px);
    padding-top: 0;
    justify-items: start;
    text-align: left;
  }

  .adaptive-reference-lockup strong {
    max-width: 190px;
    font-size: clamp(20px, 4.7vw, 28px);
  }
}

@media (max-width: 540px) {
  .adaptive-reference-system {
    gap: 8px;
    padding-inline: 5px;
  }

  .adaptive-reference-orbits { width: min(55vw, 190px); }
  .adaptive-reference-lockup { width: min(39vw, 150px); }
  .adaptive-reference-lockup strong { font-size: clamp(17px, 5vw, 23px); }
  .adaptive-reference-lockup small,
  .adaptive-reference-lockup em { font-size: 4.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .adaptive-reference-orbits::before,
  .adaptive-reference-orbit,
  .adaptive-reference-orbit i,
  .adaptive-reference-mark img,
  .adaptive-reference-pulse {
    animation: none !important;
  }
}

/* Use the approved Adaptive Intelligence artwork exactly as supplied. */
.adaptive-intelligence-visual {
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.adaptive-intelligence-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(125, 88, 255, 0.18),
    rgba(88, 54, 205, 0.075) 46%,
    transparent 74%
  );
  filter: blur(26px);
  pointer-events: none;
}

.adaptive-intelligence-visual::after {
  content: none !important;
}

.adaptive-reference-image {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 50%;
  opacity: 1;
  mix-blend-mode: normal;
  filter: none;
}

@media (max-width: 900px) {
  .adaptive-reference-image {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: calc(100% - 2px);
    max-width: 100%;
    max-height: none;
    transform: translate(-50%, -50%);
  }
}

.solutions-page .solution-card::after {
  content: "";
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b6cff, #5de1ff, transparent);
  opacity: 0;
  transform: translateX(-110%);
  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  pointer-events: none;
}

.solutions-page .solution-card:hover::after {
  opacity: 1;
  transform: translateX(55%);
}

.solutions-page .solution-card::before {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.solutions-page .solution-card:hover::before {
  transform: scale(1.18);
}

/* Showcases Trust — compact scale cards and clearer recognition cards. */
.trust-scale-grid {
  margin-top: 34px;
  gap: 14px;
}

.trust-scale-grid article {
  min-height: 154px;
  padding: clamp(24px, 2.8vw, 38px);
  justify-content: center;
  border-radius: 22px;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.trust-scale-grid strong {
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.trust-scale-grid p {
  margin-top: 17px;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.recognition-panel {
  margin-top: 14px;
  gap: 34px;
}

.recognition-list {
  gap: 12px;
}

.recognition-list li {
  position: relative;
  min-height: 124px;
  padding: 21px 20px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.027);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.recognition-list li > span {
  padding-top: 2px;
  color: rgba(190, 173, 255, 0.82);
  font-size: 10px;
}

.recognition-list p {
  gap: 10px;
}

.recognition-list strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 640;
  line-height: 1.28;
}

.recognition-list small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.07em;
}

.trust-scale-grid article::after,
.recognition-list li::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b6cff, #5de1ff, transparent);
  opacity: 0;
  transform: translateX(-115%);
  transition:
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .trust-scale-grid article:hover,
  .recognition-list li:hover {
    border-color: rgba(139, 108, 255, 0.4);
    background: rgba(139, 108, 255, 0.055);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), 0 0 34px rgba(109, 77, 255, 0.09);
  }

  .trust-scale-grid article:hover::after,
  .recognition-list li:hover::after {
    opacity: 1;
    transform: translateX(65%);
  }
}

@media (max-width: 760px) {
  .trust-scale-grid {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .trust-scale-grid article {
    min-height: 132px;
    padding: 20px 16px;
    border-radius: 19px;
  }

  .trust-scale-grid strong {
    font-size: clamp(36px, 10.4vw, 44px);
  }

  .trust-scale-grid p {
    margin-top: 14px;
    font-size: 7.5px;
    line-height: 1.4;
  }

  .recognition-list {
    gap: 9px;
  }

  .recognition-list li {
    min-height: 108px;
    padding: 18px 17px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .recognition-list strong {
    font-size: 16px;
  }

  .recognition-list small {
    font-size: 9.5px;
  }
}

@media (max-width: 360px) {
  .trust-scale-grid {
    grid-template-columns: 1fr;
  }

  .trust-scale-grid article {
    min-height: 116px;
  }
}

/* =========================================================
   FINAL CONTENT + CHROME CORRECTIONS
   ========================================================= */

/* Keep shared navigation typography consistent and more legible. */
.header .nav > a,
.nav-dropdown-trigger,
.nav-dropdown-panel,
.nav-dropdown-link,
.nav-dropdown-copy strong,
.nav-dropdown-copy small,
.nav-dropdown-link em,
.header-action {
  font-family: "Inter", sans-serif;
}

.header .nav > a,
.nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 0.075em;
}

.nav-dropdown-copy strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

.nav-dropdown-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

@media (min-width: 981px) {
  .header-action {
    min-width: 106px;
    min-height: 49px;
    padding-inline: 23px;
    font-size: 11.5px;
    font-weight: 800;
  }

  .header-trial {
    min-width: 120px;
  }
}

@media (max-width: 980px) {
  .header-action {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 11.5px;
    font-weight: 800;
  }
}

@media (max-width: 520px) {
  .header-action {
    min-height: 46px;
    padding-inline: 14px;
  }
}

/* Preserve the existing Adaptive Intelligence composition while giving
   the descender in “Intelligence” enough paint space. */
.adaptive-intelligence-story .workflow-story-title,
.adaptive-intelligence-story .workflow-story-title span {
  overflow: visible;
}

.adaptive-intelligence-story .workflow-story-title span {
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

/* Slightly taller footer with balanced vertical breathing room. */
.footer {
  min-height: 20svh;
  padding-top: clamp(36px, 4.5svh, 56px);
  padding-bottom: clamp(36px, 4.5svh, 56px);
}

.footer-social-link .footer-youtube-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: none;
}

.footer-social-link .footer-youtube-icon .youtube-shell {
  fill: currentColor;
  stroke: none;
  transition: fill 0.25s ease;
}

.footer-social-link .footer-youtube-icon .youtube-play {
  fill: #090a18;
  stroke: none;
  transition: fill 0.25s ease;
}

.footer-social-link:hover .footer-youtube-icon .youtube-shell {
  fill: #ff0033;
}

.footer-social-link:hover .footer-youtube-icon .youtube-play {
  fill: #ffffff;
}

@media (max-width: 760px) {
  .footer {
    min-height: 20svh;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

/* ReactBits Blur Text-inspired homepage title reveal. */
.hero-premium-title {
  position: relative;
  isolation: isolate;
}

.hero-premium-title .hero-reveal-word {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 30px, 0) scale(0.955);
  transform-origin: 50% 100%;
  will-change: opacity, transform;
}

.hero-premium-title .hero-reveal-word-accent {
  background:
    linear-gradient(
      108deg,
      #ffffff 0%,
      #d5caff 19%,
      #7564ff 39%,
      #58dcff 50%,
      #ffffff 58%,
      #8d79ff 72%,
      #58dcff 100%
    );
  background-size: 240% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 34px rgba(117, 100, 255, 0.12);
}

.hero-premium-title .cinematic-title-serif .hero-reveal-word {
  color: transparent;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.hero-intro-play .hero-premium-title .hero-reveal-word {
  animation:
    heroPremiumBlurReveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay:
    calc(var(--hero-group-delay) + var(--hero-word-delay));
}

body.hero-intro-play .hero-premium-title .hero-reveal-word-accent {
  animation:
    heroPremiumBlurReveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    heroPremiumAccentPass 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay:
    calc(var(--hero-group-delay) + var(--hero-word-delay)),
    calc(var(--hero-group-delay) + var(--hero-word-delay) + 0.48s);
}

body.hero-intro-play .hero-copy .hero-actions .btn:first-child {
  animation-delay: 1.72s;
}

@keyframes heroPremiumBlurReveal {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 30px, 0) scale(0.955);
  }

  58% {
    opacity: 1;
    filter: blur(2.4px);
    transform: translate3d(0, -2px, 0) scale(1.008);
  }

  100% {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroPremiumAccentPass {
  from { background-position: 100% 50%; }
  to { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-premium-title .hero-reveal-word {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
  }
}

/* Keep animated glyphs fully painted without changing the hero typography. */
.solutions-page .hero-premium-title .hero-reveal-word,
.faq-page .hero-premium-title .hero-reveal-word,
.contact-page .hero-premium-title .hero-reveal-word,
.legal-page .hero-premium-title .hero-reveal-word {
  padding-top: 0.12em;
  padding-right: 0.16em;
  padding-bottom: 0.24em;
  padding-left: 0.1em;
  margin-top: -0.12em;
  margin-right: -0.16em;
  margin-bottom: -0.24em;
  margin-left: -0.1em;
  overflow: visible;
  line-height: inherit;
}

/* Release the temporary blur layer after each inner-page word settles.
   This avoids retained text fragments in Firefox while keeping the reveal. */
.cinematic-title .hero-reveal-word.hero-reveal-word-settled {
  opacity: 1;
  filter: none;
  transform: none;
  will-change: auto;
  animation: none !important;
}

/* Preserve the final Adaptive Intelligence layout while protecting descenders. */
.adaptive-intelligence-story .workflow-story-step:last-child strong,
.adaptive-intelligence-story .workflow-story-step:last-child small {
  display: block;
  overflow: visible;
  line-height: 1.3;
}

.adaptive-intelligence-story .adaptive-stage-final h3 {
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
  overflow: visible;
  line-height: 1.04;
}

/* Contact and FAQ use the exact shared word reveal. Waiting for web fonts
   before playback prevents a fallback-font reflow from flashing a wrapped
   glyph at the far left in Firefox. */
@media (min-width: 761px) {
  .faq-page .cinematic-title-line,
  .contact-page .cinematic-title-line {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    white-space: nowrap;
  }
}

/* Monochrome partner ecosystem marquee below the publishing flow. */
.partner-marquee {
  position: relative;
  padding: clamp(27px, 3vw, 42px) 0;
  border-color: rgba(151, 128, 255, 0.18);
  background:
    radial-gradient(circle at 50% 120%, rgba(112, 86, 255, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.012);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.partner-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(118, 92, 255, 0.035),
    transparent 22%,
    transparent 78%,
    rgba(118, 92, 255, 0.035)
  );
}

.partner-marquee-track {
  animation-duration: 34s;
}

.partner-marquee-group {
  width: max(100vw, 1180px);
  min-width: max(100vw, 1180px);
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  padding: 0;
}

.partner-marquee-group .partner-logo {
  width: clamp(154px, 14vw, 218px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
  opacity: 0.56;
  transition:
    opacity 0.28s ease,
    filter 0.28s ease;
}

.partner-marquee-group .partner-logo::before {
  content: none;
}

.partner-marquee-group .partner-logo img {
  display: block;
  width: auto;
  height: clamp(46px, 3.9vw, 56px);
  max-width: calc(100% - 10px);
  max-height: none;
  object-fit: contain;
  filter: grayscale(1);
}

.partner-marquee-group .partner-logo:hover {
  opacity: 0.9;
  filter: drop-shadow(0 0 14px rgba(154, 132, 255, 0.2));
}

@media (max-width: 760px) {
  .partner-marquee {
    padding: 24px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }

  .partner-marquee-track {
    animation-duration: 27s;
  }

  .partner-marquee-group {
    width: 900px;
    min-width: 900px;
  }

  .partner-marquee-group .partner-logo {
    width: 142px;
    height: 48px;
  }

  .partner-marquee-group .partner-logo img {
    height: 38px;
    max-width: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track {
    animation: none;
  }

  .partner-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .partner-marquee-group {
    width: max-content;
    min-width: 100%;
    justify-content: space-around;
  }
}
