:root {
  --bg: #03040d;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --purple: #8b6cff;
  --purple-2: #d9c8ff;
  --purple-3: #5a4dff;
  --orange: #ff8a2a;
  --green: #19e6a4;
  --glass: rgba(255, 255, 255, 0.055);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 108, 255, 0.2), transparent 34%),
    radial-gradient(circle at 15% 40%, rgba(25, 230, 164, 0.09), transparent 24%),
    radial-gradient(circle at 90% 56%, rgba(255, 138, 42, 0.09), transparent 24%),
    #03040d;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 90px 90px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 74%);
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  padding: 22px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 4, 13, 0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.header.scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 72px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(139, 108, 255, 0.22));
  transition:
    width 0.25s ease,
    height 0.25s ease,
    filter 0.25s ease;
}

.brand span {
  font-size: 16px;
}

.header.scrolled .brand img {
  width: 64px;
  height: 44px;
}

.home-header .nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--white);
}

.header-btn,
.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.25s ease;
}

.header-btn {
  background: rgba(255, 255, 255, 0.06);
}

.header-btn:hover,
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn.primary {
  background: var(--white);
  color: var(--bg);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(139, 108, 255, 0.35);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.section {
  padding: 120px 6vw;
}

/* SOFT SECTION SCROLL GLOW */

.scroll-glow-section {
  position: relative;
  isolation: isolate;
}

.scroll-glow-section > * {
  position: relative;
  z-index: 2;
}

.scroll-glow-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: min(1150px, 100vw);
  height: 680px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -150px, 0) scale(1);
  background: radial-gradient(
    ellipse at center,
    rgba(217, 200, 255, 0.55) 0%,
    rgba(139, 108, 255, 0.42) 24%,
    rgba(139, 108, 255, 0.22) 48%,
    rgba(139, 108, 255, 0.09) 70%,
    transparent 86%
  );
  filter: blur(38px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.scroll-glow-section.glow-active::after {
  animation: sectionGlowDrop 2.35s cubic-bezier(0.16, 0.84, 0.33, 1) both;
}

@keyframes sectionGlowDrop {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -150px, 0) scale(0.9);
  }

  18% {
    opacity: 1;
  }

  58% {
    opacity: 0.62;
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, 480px, 0) scale(1.22);
  }
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(139, 108, 255, 0.22), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(25, 230, 164, 0.11), transparent 22%),
    radial-gradient(circle at 52% 82%, rgba(139, 108, 255, 0.18), transparent 34%);
  pointer-events: none;
}

#particles {
  display: none !important;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

/* HERO AI ILLUSTRATION */

.hero-visual-shell,
.ai-illustration {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 108, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 18, 0.94);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.48),
    0 0 95px rgba(139, 108, 255, 0.18),
    inset 0 0 70px rgba(139, 108, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.ai-window {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 360px;
  height: 245px;
  transform: translate(-50%, -50%) rotate(-28deg) skewY(6deg);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #f5f3ff 0%, #dad6f4 58%, #bcb4df 100%);
  border: 2px solid rgba(52, 45, 86, 0.42);
  box-shadow:
    24px 28px 0 rgba(92, 78, 140, 0.55),
    0 0 45px rgba(139, 108, 255, 0.22);
  animation: aiWindowFloat 4.8s ease-in-out infinite;
  z-index: 4;
}

.ai-window-top {
  height: 34px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 2px solid rgba(52, 45, 86, 0.32);
}

.ai-window-top span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(89, 78, 130, 0.58);
}

.ai-letters {
  position: absolute;
  inset: 36px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  transform: skewY(-6deg);
}

.ai-letters span {
  display: block;
  color: #8f86b7;
  font-size: 158px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.12em;
  text-shadow:
    7px 8px 0 rgba(73, 62, 116, 0.42),
    0 0 22px rgba(139, 108, 255, 0.2);
}

.ai-letters span:first-child {
  animation: aiLetterPulse 3.2s ease-in-out infinite;
}

.ai-letters span:last-child {
  animation: aiLetterPulse 3.2s ease-in-out infinite 0.45s;
}

.ai-code-badge {
  position: absolute;
  right: 38px;
  top: 122px;
  z-index: 8;
  width: 150px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #faf8ff, #ded9f7);
  border: 2px solid rgba(52, 45, 86, 0.36);
  box-shadow:
    12px 14px 0 rgba(88, 76, 130, 0.45),
    0 0 30px rgba(139, 108, 255, 0.2);
  transform: rotate(-22deg);
  animation: codeBadgeFloat 4.2s ease-in-out infinite;
}

.ai-code-badge span {
  color: #8b6cff;
  font-size: 36px;
  font-weight: 900;
  text-shadow: 2px 2px 0 rgba(80, 68, 130, 0.22);
}

.ai-bot-bubble {
  position: absolute;
  left: 62px;
  top: 190px;
  z-index: 7;
  width: 104px;
  height: 78px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #ddd9f7);
  border: 2px solid rgba(52, 45, 86, 0.34);
  box-shadow:
    12px 14px 0 rgba(88, 76, 130, 0.45),
    0 0 26px rgba(139, 108, 255, 0.18);
  animation: botFloat 4.6s ease-in-out infinite;
}

.bot-face {
  position: absolute;
  inset: 18px 18px 16px;
  border-radius: 12px;
  background: #8b7cff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.bot-face span {
  height: 13px;
  border-radius: 3px;
  background: #efeaff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
}

.bot-face span:nth-child(2) {
  height: 24px;
}

.ai-cursor {
  position: absolute;
  left: 106px;
  bottom: 98px;
  z-index: 9;
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-bottom: 118px solid #e7e2ff;
  filter:
    drop-shadow(10px 12px 0 rgba(87, 75, 130, 0.55))
    drop-shadow(0 0 22px rgba(139, 108, 255, 0.24));
  transform: rotate(-28deg);
  animation: cursorMove 3.8s ease-in-out infinite;
}

.ai-cursor::after {
  content: "";
  position: absolute;
  left: -11px;
  top: 82px;
  width: 24px;
  height: 58px;
  background: #e7e2ff;
  transform: rotate(-4deg);
}

.ai-gear {
  position: absolute;
  z-index: 8;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      transparent 0%,
      transparent 24%,
      rgba(10, 10, 18, 0.95) 25%,
      rgba(10, 10, 18, 0.95) 38%,
      transparent 39%
    ),
    repeating-conic-gradient(
      from 0deg,
      #f1ecff 0deg,
      #f1ecff 13deg,
      #b8aff0 13deg,
      #b8aff0 24deg,
      transparent 24deg,
      transparent 31deg
    );
  border: 2px solid rgba(67, 56, 110, 0.55);
  box-shadow:
    10px 12px 0 rgba(88, 76, 130, 0.44),
    0 0 28px rgba(139, 108, 255, 0.2);
}

.ai-gear::before {
  content: "";
  position: absolute;
  inset: 29%;
  border-radius: 50%;
  background: rgba(10, 10, 18, 0.98);
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.gear-big {
  right: 72px;
  bottom: 134px;
  width: 118px;
  height: 118px;
  animation: gearSpin 9s linear infinite;
}

.gear-small {
  right: 196px;
  bottom: 70px;
  width: 76px;
  height: 76px;
  animation: gearSpinReverse 6.8s linear infinite;
}

.ai-soft-glow {
  position: absolute;
  inset: 18%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.32), transparent 66%);
  filter: blur(38px);
  animation: aiGlowBreath 4s ease-in-out infinite;
}

@keyframes aiWindowFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-28deg) skewY(6deg) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) rotate(-28deg) skewY(6deg) translateY(-12px);
  }
}

@keyframes codeBadgeFloat {
  0%,
  100% {
    transform: rotate(-22deg) translateY(0);
  }

  50% {
    transform: rotate(-22deg) translateY(-14px);
  }
}

@keyframes botFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes cursorMove {
  0%,
  100% {
    transform: rotate(-28deg) translate(0, 0);
  }

  50% {
    transform: rotate(-28deg) translate(14px, -16px);
  }
}

@keyframes gearSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gearSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes aiLetterPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.92;
  }

  50% {
    transform: translateY(-4px) scale(1.035);
    opacity: 1;
  }
}

@keyframes aiGlowBreath {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.12);
  }
}

/* HERO TEXT */

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero h1,
.section-heading h2,
.split-text h2,
.cta-box h2 {
  line-height: 0.94;
  letter-spacing: -0.08em;
  font-weight: 600;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(58px, 6.4vw, 108px);
}

.hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* HERO DASHBOARD */

.hero-showcase {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  min-height: 570px;
  margin: 64px auto 0;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: 850px;
  height: 330px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 108, 255, 0.34), transparent 68%);
  filter: blur(12px);
  z-index: -1;
}

.floating-badge {
  position: absolute;
  z-index: 4;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.badge-left {
  top: -30px;
  left: 80px;
  transform: rotate(32deg);
  background: rgba(25, 230, 164, 0.12);
  border-color: rgba(25, 230, 164, 0.45);
  animation-name: floatBadgeLeft;
}

.badge-right {
  top: -28px;
  right: 55px;
  transform: rotate(-32deg);
  background: rgba(255, 138, 42, 0.13);
  border-color: rgba(255, 138, 42, 0.5);
  animation-name: floatBadgeRight;
  animation-delay: -1.5s;
}

@keyframes floatBadgeLeft {
  0%,
  100% {
    transform: rotate(32deg) translateY(0);
  }

  50% {
    transform: rotate(32deg) translateY(-14px);
  }
}

@keyframes floatBadgeRight {
  0%,
  100% {
    transform: rotate(-32deg) translateY(0);
  }

  50% {
    transform: rotate(-32deg) translateY(-14px);
  }
}

.mini-dashboard,
.main-dashboard,
.sales-card {
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(139, 108, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 12, 28, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  will-change: transform;
}

.left-dashboard {
  left: 0;
  bottom: 24px;
  width: 330px;
  height: 430px;
  padding: 16px;
}

.dash-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-top span {
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--purple);
}

.balance-card {
  height: 135px;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b6cff, #624eff);
}

.balance-card small {
  display: block;
  opacity: 0.76;
  margin-bottom: 10px;
}

.balance-card strong {
  display: inline-block;
  font-size: 31px;
  letter-spacing: -0.05em;
}

.balance-card em {
  margin-left: 8px;
  color: #2cff9d;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.mini-chart {
  position: relative;
  height: 200px;
  margin-top: 24px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 42px 42px;
  overflow: hidden;
}

.mini-chart svg {
  position: absolute;
  inset: 20px 18px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 38px);
}

.mini-chart path {
  fill: none;
  stroke: var(--purple);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(139, 108, 255, 0.9));
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: drawChart 2.4s ease-in-out infinite alternate;
}

.chart-dot {
  position: absolute;
  right: 76px;
  top: 86px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 24px var(--purple);
  animation: dotPulse 1.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.45);
  }
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

.main-dashboard {
  left: 355px;
  right: 355px;
  bottom: 24px;
  height: 430px;
  padding: 16px;
  overflow: hidden;
}

.dashboard-glow {
  position: absolute;
  top: auto;
  right: 8%;
  bottom: -80px;
  left: 8%;
  height: 220px;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.32), transparent 66%);
  pointer-events: none;
}

.dash-header {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.dash-header div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.purple {
  background: var(--purple);
  box-shadow: 0 0 18px var(--purple);
}

.dash-header small {
  color: var(--green);
  font-weight: 900;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-card {
  min-height: 104px;
  padding: 18px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-card small {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 28px;
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 14px;
  margin-top: 14px;
}

.performance-card,
.donut-card {
  position: relative;
  height: 230px;
  padding: 18px 20px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.card-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-label button {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
}

/* X / Y CHART */

.xy-chart {
  position: relative;
  height: 158px;
  margin-top: 18px;
  padding-left: 34px;
  padding-bottom: 24px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: 42px 34px;
  overflow: hidden;
}

.xy-chart svg {
  position: absolute;
  left: 22px;
  top: 6px;
  width: calc(100% - 30px);
  height: 132px;
  overflow: visible;
}

.chart-axis {
  stroke: rgba(255, 255, 255, 0.52);
  stroke-width: 1.4;
}

.chart-area {
  fill: rgba(139, 108, 255, 0.18);
  opacity: 0;
  animation: areaReveal 1.2s ease forwards 0.35s;
}

.chart-line {
  fill: none;
  stroke: #d9c8ff;
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(139, 108, 255, 0.95));
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: graphDraw 2.3s ease-in-out infinite alternate;
}

.chart-point {
  fill: #ffffff;
  stroke: #8b6cff;
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(139, 108, 255, 1));
  animation: pointPulse 1.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.chart-point.hot {
  fill: #19e6a4;
  stroke: #ffffff;
  filter: drop-shadow(0 0 16px rgba(25, 230, 164, 0.95));
}

.chart-scale {
  position: absolute;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
}

.y-scale {
  left: 7px;
  top: 13px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.x-scale {
  left: 62px;
  right: 18px;
  bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.axis-title {
  position: absolute;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.y-title {
  left: -23px;
  top: 70px;
  transform: rotate(-90deg);
}

.x-title {
  right: 18px;
  bottom: -2px;
}

@keyframes graphDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes areaReveal {
  to {
    opacity: 1;
  }
}

@keyframes pointPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.45);
    opacity: 1;
  }
}

/* DONUT */

.donut-card {
  display: grid;
  place-items: center;
  text-align: center;
}

.donut-card strong {
  position: relative;
  z-index: 2;
  font-size: 34px;
}

.donut-card span {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 13px;
}

.donut {
  position: absolute;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: 18px solid rgba(139, 108, 255, 0.2);
  border-top-color: var(--purple);
  border-right-color: var(--purple-2);
  animation: spin 3.2s linear infinite;
}

.sales-card {
  right: 0;
  bottom: 24px;
  width: 330px;
  height: 430px;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, #7468ff, #5e52ee);
}

.sales-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  color: var(--purple);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}

.sales-card strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.sales-card span {
  font-weight: 700;
}

.phone-orbit {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  animation: orbitFloat 3s ease-in-out infinite;
}

.phone-orbit::before,
.phone-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.phone-orbit::before {
  inset: 26px;
}

.phone-orbit::after {
  inset: 54px;
}

.phone-core {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(3, 4, 13, 0.5);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.22);
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* MARQUEE */

.logo-marquee {
  margin: 0;
  padding: 34px 0;
  overflow: hidden;
  border-top: 1px solid rgba(139, 108, 255, 0.34);
  border-bottom: 1px solid rgba(139, 108, 255, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 108, 255, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.025);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marqueeFlow 18s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 90px;
  padding-right: 90px;
  flex-shrink: 0;
}

.marquee-group span {
  color: rgba(255, 255, 255, 0.96);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(139, 108, 255, 0.95),
    0 0 34px rgba(139, 108, 255, 0.45);
}

@keyframes marqueeFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */

.section-heading {
  max-width: 880px;
  margin-bottom: 64px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.split-text h2,
.cta-box h2 {
  margin-top: 20px;
  font-size: clamp(42px, 5.5vw, 86px);
}

.section-heading p,
.split-text p {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

/* FEATURE CARDS */

.feature-grid {
  display: flex;
  gap: 26px;
  align-items: stretch;
  perspective: 1200px;
}

.feature-card {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 0;
  min-height: 390px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(139, 108, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  overflow: hidden;
  transition:
    flex-grow 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.55s ease,
    filter 0.55s ease,
    box-shadow 0.75s ease,
    border-color 0.75s ease;
  will-change: flex-grow, transform, opacity, filter;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    transparent 0deg,
    transparent 80deg,
    rgba(139, 108, 255, 0.95) 120deg,
    rgba(217, 200, 255, 0.95) 150deg,
    transparent 210deg,
    transparent 360deg
  );
  animation: cardGlowSpin 4s linear infinite;
  z-index: -2;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  background:
    radial-gradient(circle at top right, rgba(139, 108, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(14, 16, 38, 0.96), rgba(5, 6, 18, 0.96));
  z-index: -1;
}

.feature-grid:hover .feature-card {
  flex-grow: 0.82;
  opacity: 0.62;
  filter: saturate(0.82) brightness(0.82);
  transform: translateY(0) scale(0.985);
}

.feature-grid .feature-card:hover {
  flex-grow: 1.75;
  opacity: 1;
  filter: saturate(1.18) brightness(1.08);
  transform: translateY(-14px) scale(1.015);
  z-index: 30;
  border-color: rgba(217, 200, 255, 0.9);
  box-shadow:
    0 34px 110px rgba(139, 108, 255, 0.36),
    0 0 80px rgba(139, 108, 255, 0.28);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 64px;
  color: var(--purple-2);
  background: rgba(139, 108, 255, 0.12);
  border: 1px solid rgba(139, 108, 255, 0.34);
}

.feature-card h3 {
  font-size: 32px;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-details {
  display: grid;
  gap: 10px;
  max-height: 0;
  margin-top: 0;
  padding-left: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(16px);
  overflow: hidden;
  transition:
    max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.55s ease,
    transform 0.55s ease,
    margin-top 0.55s ease;
}

.feature-details li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.feature-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.feature-card:hover .feature-details {
  max-height: 150px;
  margin-top: 22px;
  opacity: 1;
  transform: translateY(0);
}

@keyframes cardGlowSpin {
  to {
    transform: rotate(360deg);
  }
}

/* WORKFLOW */

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.split-text .btn {
  margin-top: 34px;
}

.workflow-box {
  padding: 18px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.workflow-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.workflow-step:last-child {
  border-bottom: 0;
}

.workflow-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--purple-2);
  border-radius: 50%;
  border: 1px solid rgba(139, 108, 255, 0.35);
  background: rgba(139, 108, 255, 0.09);
}

.workflow-step h4 {
  font-size: 24px;
  margin-bottom: 8px;
}

.workflow-step p {
  color: var(--muted);
  line-height: 1.65;
}

/* STATS */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 190px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.stat-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 48px;
  letter-spacing: -0.08em;
}

.stat-card span {
  color: var(--muted);
}

/* AI DATA RIVER */

.ai-core-section {
  padding-bottom: 70px;
}

.ai-river-visual {
  position: relative;
  width: min(1180px, 100%);
  height: 980px;
  margin: 30px auto 0;
  overflow: hidden;
}

.river-glow {
  position: absolute;
  top: 155px;
  left: 50%;
  width: 670px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 108, 255, 0.84), rgba(139, 108, 255, 0.18) 44%, transparent 72%);
  filter: blur(18px);
  animation: glowPulse 2.6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

.river-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
}

.river-path {
  fill: none;
  stroke: rgba(139, 108, 255, 0.56);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(139, 108, 255, 0.8));
  stroke-dasharray: 26 32;
  animation: riverDash 0.85s linear infinite, riverGlow 2.4s ease-in-out infinite;
}

.path-1 {
  stroke-width: 4;
  stroke: rgba(217, 200, 255, 0.82);
}

.path-2 {
  animation-delay: -0.15s;
}

.path-3 {
  animation-delay: -0.3s;
}

.path-4 {
  opacity: 0.8;
  animation-delay: -0.45s;
}

.path-5 {
  opacity: 0.8;
  animation-delay: -0.6s;
}

.path-6 {
  opacity: 0.55;
  animation-delay: -0.75s;
}

.path-7 {
  opacity: 0.55;
  animation-delay: -0.9s;
}

@keyframes riverDash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -58;
  }
}

@keyframes riverGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(139, 108, 255, 0.55));
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(217, 200, 255, 0.92));
  }
}

.code-window {
  position: absolute;
  top: 148px;
  left: 50%;
  width: 620px;
  height: 330px;
  transform: translateX(-50%);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(3, 4, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 120px rgba(139, 108, 255, 0.34),
    inset 0 0 54px rgba(139, 108, 255, 0.13);
  z-index: 2;
}

.code-window::before,
.code-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.code-window::before {
  z-index: 5;
  background: linear-gradient(
    90deg,
    rgba(3, 4, 13, 0.96) 0%,
    transparent 16%,
    transparent 84%,
    rgba(3, 4, 13, 0.96) 100%
  );
}

.code-window::after {
  z-index: 6;
  background: linear-gradient(
    180deg,
    rgba(3, 4, 13, 0.96) 0%,
    transparent 25%,
    transparent 78%,
    rgba(3, 4, 13, 0.98) 100%
  );
}

.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  z-index: 10;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
}

.corner::before {
  width: 2px;
  height: 24px;
}

.corner::after {
  width: 24px;
  height: 2px;
}

.corner-tl {
  top: 0;
  left: 0;
}

.corner-tr {
  top: 0;
  right: 0;
}

.corner-bl {
  bottom: 0;
  left: 0;
}

.corner-br {
  bottom: 0;
  right: 0;
}

.corner-tl::before,
.corner-tl::after {
  top: 0;
  left: 0;
}

.corner-tr::before,
.corner-tr::after {
  top: 0;
  right: 0;
}

.corner-bl::before,
.corner-bl::after {
  bottom: 0;
  left: 0;
}

.corner-br::before,
.corner-br::after {
  bottom: 0;
  right: 0;
}

.scanner {
  position: absolute;
  top: 50%;
  left: -20%;
  z-index: 9;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-2), transparent);
  box-shadow:
    0 0 18px var(--purple),
    0 0 46px var(--purple),
    0 0 90px rgba(139, 108, 255, 0.88);
  animation: scannerMove 1.15s ease-in-out infinite;
}

@keyframes scannerMove {
  0%,
  100% {
    transform: translateY(-88px);
    opacity: 0.48;
  }

  50% {
    transform: translateY(88px);
    opacity: 1;
  }
}

.code-columns {
  position: absolute;
  inset: -170px 52px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  opacity: 0.95;
}

.code-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  animation: codeFlow 1.25s linear infinite;
}

.code-track span {
  padding: 8px 5px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
}

.code-track .tag {
  color: var(--purple-2);
  border-color: rgba(139, 108, 255, 0.55);
  box-shadow: 0 0 18px rgba(139, 108, 255, 0.28);
}

.code-track .status {
  color: #b5c0ff;
  border-color: rgba(86, 121, 255, 0.62);
}

.delay-1 {
  animation-delay: -0.18s;
}

.delay-2 {
  animation-delay: -0.36s;
}

.delay-3 {
  animation-delay: -0.54s;
}

.delay-4 {
  animation-delay: -0.72s;
}

.delay-5 {
  animation-delay: -0.9s;
}

@keyframes codeFlow {
  from {
    transform: translateY(-35%);
  }

  to {
    transform: translateY(28%);
  }
}

.logo-node {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 230px;
  height: 230px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 54px;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 108, 255, 0.34), rgba(9, 10, 28, 0.96) 64%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(139, 108, 255, 0.52);
  box-shadow:
    0 0 120px rgba(139, 108, 255, 0.36),
    inset 0 0 58px rgba(139, 108, 255, 0.16);
  z-index: 3;
}

.logo-node::before,
.logo-node::after {
  content: "";
  position: absolute;
  border-radius: 40px;
  border: 1px solid rgba(139, 108, 255, 0.52);
}

.logo-node::before {
  inset: 30px;
}

.logo-node::after {
  inset: 60px;
  border-color: rgba(255, 255, 255, 0.14);
}

.logo-inner {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(3, 4, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 36px rgba(139, 108, 255, 0.42);
}

.logo-inner img {
  max-width: 76px;
  max-height: 76px;
  object-fit: contain;
}

/* CTA / FOOTER */

.cta-section {
  padding: 0 6vw 90px;
}

.cta-box {
  padding: 70px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at right, rgba(139, 108, 255, 0.22), transparent 42%),
    rgba(255, 255, 255, 0.045);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-box h2 {
  max-width: 850px;
}

.footer {
  padding: 34px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease,
    filter 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .hero-showcase {
    min-height: 930px;
  }

  .left-dashboard {
    left: 50%;
    top: 0;
    bottom: auto;
    transform: translateX(-50%);
  }

  .main-dashboard {
    left: 50%;
    right: auto;
    top: 460px;
    bottom: auto;
    width: min(680px, 100%);
    transform: translateX(-50%);
  }

  .sales-card,
  .floating-badge {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 880px;
    text-align: center;
    margin: 0 auto;
  }

  .hero p {
    margin: 28px auto 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual-shell,
  .ai-illustration {
    width: min(520px, 100%);
  }
}

@media (max-width: 1040px) {
  .split-section,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-grid:hover .feature-card,
  .feature-grid .feature-card:hover {
    flex-grow: 1;
    opacity: 1;
    filter: none;
    transform: translateY(-10px);
  }

  .feature-details {
    max-height: 150px;
    margin-top: 22px;
    opacity: 1;
    transform: none;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav,
  .header-btn {
    display: none;
  }

  .section {
    padding: 90px 6vw;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual-shell,
  .ai-illustration {
    width: min(100%, 420px);
    border-radius: 28px;
  }

  .ai-window {
    width: 270px;
    height: 186px;
  }

  .ai-letters span {
    font-size: 112px;
  }

  .ai-code-badge {
    width: 112px;
    height: 56px;
    right: 22px;
    top: 96px;
  }

  .ai-code-badge span {
    font-size: 27px;
  }

  .ai-bot-bubble {
    left: 38px;
    top: 146px;
    width: 78px;
    height: 60px;
  }

  .bot-face {
    inset: 14px;
    padding: 7px;
  }

  .ai-cursor {
    left: 70px;
    bottom: 70px;
    border-left-width: 24px;
    border-right-width: 24px;
    border-bottom-width: 86px;
  }

  .gear-big {
    right: 48px;
    bottom: 104px;
    width: 84px;
    height: 84px;
  }

  .gear-small {
    right: 142px;
    bottom: 54px;
    width: 58px;
    height: 58px;
  }

  .section-heading h2,
  .split-text h2,
  .cta-box h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-showcase {
    min-height: 880px;
  }

  .left-dashboard {
    width: 100%;
    max-width: 340px;
  }

  .main-dashboard {
    width: 100%;
    height: 405px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-card:nth-child(2),
  .metric-card:nth-child(3),
  .analytics-grid {
    display: none;
  }

  .marquee-group {
    gap: 54px;
    padding-right: 54px;
  }

  .marquee-group span {
    font-size: 13px;
  }

  .ai-river-visual {
    height: 880px;
  }

  .code-window {
    width: 340px;
    height: 315px;
  }

  .code-columns {
    inset: -150px 34px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .code-track:nth-child(4),
  .code-track:nth-child(5),
  .code-track:nth-child(6) {
    display: none;
  }

  .river-path:nth-child(n+4) {
    display: none;
  }

  .logo-node {
    width: 190px;
    height: 190px;
  }

  .cta-box {
    padding: 38px;
  }

  .scroll-glow-section::after {
    width: 82vw;
    height: 320px;
    filter: blur(36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-glow-section.glow-active::after {
    animation: none;
    opacity: 0.14;
    transform: translate3d(-50%, 40px, 0) scale(1);
  }

  .river-path,
  .code-track,
  .scanner,
  .donut,
  .marquee-track,
  .floating-badge,
  .phone-orbit,
  .ai-window,
  .ai-code-badge,
  .ai-bot-bubble,
  .ai-cursor,
  .ai-gear,
  .ai-soft-glow,
  .ai-letters span {
    animation-duration: 8s;
  }
}

/* =========================================================
   SOLUTIONS PAGE
   ========================================================= */

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav a.active {
  color: var(--white);
}

.solutions-page {
  background: #03040d;
}

.solutions-page .site-bg {
  background:
    radial-gradient(circle at 18% 8%, rgba(139, 108, 255, 0.2), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(25, 230, 164, 0.1), transparent 25%),
    radial-gradient(circle at 55% 65%, rgba(90, 77, 255, 0.12), transparent 38%),
    #03040d;
}

/* SOLUTIONS HERO */

.solutions-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 155px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 28%, rgba(139, 108, 255, 0.19), transparent 27%),
    radial-gradient(circle at 80% 48%, rgba(25, 230, 164, 0.08), transparent 24%);
}

.solutions-hero-grid {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 74px;
  align-items: center;
}

.solutions-hero-copy {
  max-width: 735px;
}

.solutions-hero h1 {
  margin-top: 26px;
  font-size: clamp(58px, 6.6vw, 106px);
  line-height: 0.91;
  letter-spacing: -0.085em;
  font-weight: 600;
}

.solutions-hero-copy > p {
  max-width: 690px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.76;
}

.solutions-hero-visual {
  min-height: 650px;
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.solutions-ecosystem {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 108, 255, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(7, 8, 22, 0.88);
  box-shadow:
    0 45px 140px rgba(0, 0, 0, 0.5),
    0 0 110px rgba(139, 108, 255, 0.18),
    inset 0 0 80px rgba(139, 108, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.ecosystem-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(circle at center, black 18%, transparent 72%);
  mask-image: radial-gradient(circle at center, black 18%, transparent 72%);
}

.ecosystem-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(139, 108, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.orbit-one {
  width: 73%;
  height: 44%;
  box-shadow: 0 0 35px rgba(139, 108, 255, 0.08);
}

.orbit-two {
  width: 44%;
  height: 73%;
  transform: translate(-50%, -50%) rotate(28deg);
  border-color: rgba(25, 230, 164, 0.22);
}

.ecosystem-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 210px;
  height: 210px;
  padding: 30px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, rgba(217, 200, 255, 0.26), transparent 34%),
    rgba(10, 11, 30, 0.9);
  border: 1px solid rgba(217, 200, 255, 0.5);
  box-shadow:
    0 0 0 18px rgba(139, 108, 255, 0.06),
    0 0 70px rgba(139, 108, 255, 0.46),
    inset 0 0 32px rgba(139, 108, 255, 0.18);
  animation: ecosystemCorePulse 3.6s ease-in-out infinite;
}

.ecosystem-core span {
  color: var(--purple-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.ecosystem-core strong {
  display: block;
  margin-top: 3px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.ecosystem-core small {
  max-width: 130px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.ecosystem-node {
  position: absolute;
  z-index: 6;
  width: 170px;
  min-height: 106px;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(8, 9, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.35);
}

.ecosystem-node > span {
  color: var(--purple-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ecosystem-node strong,
.ecosystem-node small {
  display: block;
}

.ecosystem-node strong {
  margin-top: 12px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.ecosystem-node small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.node-create {
  left: 46px;
  top: 64px;
  border-color: rgba(217, 200, 255, 0.38);
  animation: nodeFloatOne 4.6s ease-in-out infinite;
}

.node-distribute {
  right: 38px;
  top: 118px;
  border-color: rgba(25, 230, 164, 0.32);
  animation: nodeFloatTwo 5s ease-in-out infinite;
}

.node-monetize {
  right: 84px;
  bottom: 60px;
  border-color: rgba(255, 138, 42, 0.34);
  animation: nodeFloatThree 4.8s ease-in-out infinite;
}

.signal-dot {
  position: absolute;
  z-index: 4;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 12px var(--purple-2),
    0 0 28px var(--purple);
}

.signal-a {
  left: 21%;
  top: 51%;
  animation: signalMoveA 3.7s ease-in-out infinite;
}

.signal-b {
  right: 18%;
  top: 42%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: signalMoveB 4.1s ease-in-out infinite;
}

.signal-c {
  right: 35%;
  bottom: 16%;
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange);
  animation: signalMoveC 4.4s ease-in-out infinite;
}

@keyframes ecosystemCorePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 18px rgba(139, 108, 255, 0.06),
      0 0 70px rgba(139, 108, 255, 0.46),
      inset 0 0 32px rgba(139, 108, 255, 0.18);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
    box-shadow:
      0 0 0 28px rgba(139, 108, 255, 0.035),
      0 0 100px rgba(139, 108, 255, 0.62),
      inset 0 0 42px rgba(139, 108, 255, 0.24);
  }
}

@keyframes nodeFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 35px) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -14px, 35px) rotate(1deg);
  }
}

@keyframes nodeFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 55px) rotate(2deg);
  }

  50% {
    transform: translate3d(0, 13px, 55px) rotate(-1deg);
  }
}

@keyframes nodeFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 42px) rotate(1deg);
  }

  50% {
    transform: translate3d(-8px, -13px, 42px) rotate(-2deg);
  }
}

@keyframes signalMoveA {
  0%,
  100% {
    transform: translate(0, -48px);
    opacity: 0.35;
  }

  50% {
    transform: translate(68px, 28px);
    opacity: 1;
  }
}

@keyframes signalMoveB {
  0%,
  100% {
    transform: translate(-14px, -34px);
    opacity: 0.35;
  }

  50% {
    transform: translate(-72px, 42px);
    opacity: 1;
  }
}

@keyframes signalMoveC {
  0%,
  100% {
    transform: translate(38px, 8px);
    opacity: 0.35;
  }

  50% {
    transform: translate(-42px, -62px);
    opacity: 1;
  }
}

/* OVERVIEW */

.solutions-overview {
  padding-top: 70px;
}

.overview-panel {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 108, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.25);
}

.overview-panel::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(139, 108, 255, 0.22);
  box-shadow:
    0 0 0 55px rgba(139, 108, 255, 0.025),
    0 0 0 110px rgba(139, 108, 255, 0.018);
}

.overview-copy {
  position: relative;
  z-index: 2;
}

.overview-copy h2 {
  margin-top: 20px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 600;
}

.overview-copy p {
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.overview-copy .btn {
  margin-top: 32px;
}

.overview-flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.flow-stage {
  position: relative;
  min-height: 130px;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(139, 108, 255, 0.12), transparent 68%),
    rgba(4, 5, 17, 0.62);
  overflow: hidden;
}

.flow-stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--purple-2), var(--purple));
  box-shadow: 0 0 20px var(--purple);
}

.flow-stage:nth-of-type(3)::before {
  background: linear-gradient(#d9c8ff, #58dcff);
  box-shadow: 0 0 20px rgba(88, 220, 255, 0.72);
}

.flow-stage:nth-of-type(5)::before {
  background: linear-gradient(var(--green), #19aee6);
  box-shadow: 0 0 20px var(--green);
}

.flow-stage:nth-of-type(7)::before {
  background: linear-gradient(var(--orange), #ff4d8d);
  box-shadow: 0 0 20px var(--orange);
}

.flow-stage span {
  color: var(--purple-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.flow-stage:nth-of-type(3) span {
  color: #78e8ff;
}

.flow-stage:nth-of-type(5) span {
  color: var(--green);
}

.flow-stage:nth-of-type(7) span {
  color: var(--orange);
}

.flow-stage strong {
  margin-top: 9px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.045em;
}

.flow-arrow {
  height: 26px;
  padding-left: 34px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 24px;
}

/* PRODUCT STACK */

.products-section {
  padding-top: 80px;
}

.products-section > .section-heading {
  width: min(1320px, 100%);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.solution-stack {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.solution-card {
  position: relative;
  min-height: 530px;
  padding: 66px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: center;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 82% 20%, rgba(139, 108, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 18, 0.82);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.34),
    inset 0 0 70px rgba(139, 108, 255, 0.035);
  transform-style: preserve-3d;
  transition:
    transform 0.18s ease-out,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

.solution-card::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.22), transparent 68%);
  filter: blur(25px);
  pointer-events: none;
}

.solution-card:hover {
  border-color: rgba(217, 200, 255, 0.44);
  box-shadow:
    0 46px 125px rgba(0, 0, 0, 0.4),
    0 0 90px rgba(139, 108, 255, 0.13),
    inset 0 0 70px rgba(139, 108, 255, 0.06);
}

.solution-card:nth-child(even) {
  grid-template-columns: 1.12fr 0.88fr;
}

.solution-card:nth-child(even) .solution-card-copy {
  order: 2;
}

.solution-card:nth-child(even) .solution-card-visual {
  order: 1;
}

.solution-publio {
  background:
    radial-gradient(circle at 22% 24%, rgba(25, 230, 164, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 18, 0.82);
}

.solution-cleon {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 138, 42, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 18, 0.82);
}

.solution-card-copy {
  position: relative;
  z-index: 3;
  transform: translateZ(38px);
}

.solution-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.solution-eyebrow > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--purple-2);
  background: rgba(139, 108, 255, 0.12);
  border: 1px solid rgba(139, 108, 255, 0.35);
  font-size: 12px;
  font-weight: 900;
}

.solution-publio .solution-eyebrow > span {
  color: var(--green);
  background: rgba(25, 230, 164, 0.09);
  border-color: rgba(25, 230, 164, 0.3);
}

.solution-cleon .solution-eyebrow > span {
  color: var(--orange);
  background: rgba(255, 138, 42, 0.09);
  border-color: rgba(255, 138, 42, 0.3);
}

.solution-eyebrow small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.solution-card h3 {
  max-width: 560px;
  margin-top: 30px;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 600;
}

.solution-card-copy > p {
  max-width: 560px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.solution-link {
  width: max-content;
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 15px;
  font-weight: 900;
  transition: 0.25s ease;
}

.solution-link span {
  color: var(--purple-2);
  font-size: 20px;
  transition: transform 0.25s ease;
}

.solution-publio .solution-link span {
  color: var(--green);
}

.solution-cleon .solution-link span {
  color: var(--orange);
}

.solution-link:hover {
  border-bottom-color: var(--white);
}

.solution-link:hover span {
  transform: translate(4px, -4px);
}

.solution-card-visual {
  position: relative;
  z-index: 2;
  min-height: 390px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(8, 9, 25, 0.78);
  background-size: 44px 44px;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    inset 0 0 60px rgba(139, 108, 255, 0.06);
  transform: translateZ(20px);
}

/* MediaSync visual */

.create-visual {
  padding: 68px 54px 44px;
}

.visual-toolbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.visual-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.visual-toolbar span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.story-block {
  position: relative;
  z-index: 2;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 200, 255, 0.92), rgba(139, 108, 255, 0.18));
  box-shadow: 0 0 22px rgba(139, 108, 255, 0.18);
  animation: storyScan 3.4s ease-in-out infinite;
}

.story-title {
  width: 72%;
  height: 24px;
  margin-top: 22px;
}

.story-line {
  height: 11px;
  margin-top: 24px;
  opacity: 0.72;
}

.line-one {
  width: 96%;
  animation-delay: -0.35s;
}

.line-two {
  width: 82%;
  animation-delay: -0.7s;
}

.line-three {
  width: 66%;
  animation-delay: -1.05s;
}

.language-chip,
.seo-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--purple-2);
  background: rgba(139, 108, 255, 0.13);
  border: 1px solid rgba(139, 108, 255, 0.32);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.32);
}

.language-chip {
  right: 38px;
  bottom: 46px;
  width: 56px;
  height: 56px;
  animation: chipFloat 4s ease-in-out infinite;
}

.language-chip.chip-two {
  right: 108px;
  bottom: 76px;
  width: 48px;
  height: 48px;
  animation-delay: -1.3s;
}

.seo-chip {
  left: 52px;
  bottom: 44px;
  padding: 14px 18px;
  color: var(--green);
  background: rgba(25, 230, 164, 0.09);
  border-color: rgba(25, 230, 164, 0.28);
  animation: chipFloat 4.4s ease-in-out infinite -0.7s;
}

.visual-pulse {
  position: absolute;
  right: 11%;
  bottom: 7%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.22), transparent 68%);
  filter: blur(8px);
  animation: visualPulse 2.8s ease-in-out infinite;
}

@keyframes storyScan {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleX(0.97);
    transform-origin: left;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-11px);
  }
}

@keyframes visualPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* Publio visual */

.distribute-visual {
  min-height: 420px;
}

.social-card {
  position: absolute;
  width: 190px;
  height: 245px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(25, 230, 164, 0.17), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(8, 9, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.social-card b {
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.social-card span {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.social-card span:first-of-type {
  height: 95px;
  margin-top: 20px;
  border-radius: 17px;
  background:
    radial-gradient(circle at center, rgba(25, 230, 164, 0.32), transparent 55%),
    rgba(255, 255, 255, 0.055);
}

.social-card span:last-of-type {
  width: 72%;
  height: 8px;
  margin-top: 18px;
}

.social-one {
  left: 9%;
  top: 94px;
  transform: rotate(-9deg);
  animation: socialFloatOne 4.8s ease-in-out infinite;
}

.social-two {
  left: 37%;
  top: 52px;
  z-index: 3;
  transform: rotate(1deg) scale(1.07);
  animation: socialFloatTwo 4.4s ease-in-out infinite;
}

.social-three {
  right: 7%;
  top: 90px;
  transform: rotate(9deg);
  animation: socialFloatThree 5.1s ease-in-out infinite;
}

.schedule-line {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 28px;
  height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 17px;
  background: rgba(4, 5, 16, 0.75);
  border: 1px solid rgba(25, 230, 164, 0.2);
}

.schedule-line::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.schedule-line i {
  position: relative;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.publish-chip {
  position: absolute;
  right: 22px;
  top: 20px;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(25, 230, 164, 0.09);
  border: 1px solid rgba(25, 230, 164, 0.28);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  animation: publishPulse 1.8s ease-in-out infinite;
}

@keyframes socialFloatOne {
  0%,
  100% {
    transform: rotate(-9deg) translateY(0);
  }

  50% {
    transform: rotate(-7deg) translateY(-12px);
  }
}

@keyframes socialFloatTwo {
  0%,
  100% {
    transform: rotate(1deg) scale(1.07) translateY(0);
  }

  50% {
    transform: rotate(-1deg) scale(1.07) translateY(9px);
  }
}

@keyframes socialFloatThree {
  0%,
  100% {
    transform: rotate(9deg) translateY(0);
  }

  50% {
    transform: rotate(7deg) translateY(-14px);
  }
}

@keyframes publishPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(25, 230, 164, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(25, 230, 164, 0.28);
  }
}

/* Cleon visual */

.monetize-visual {
  padding: 30px;
}

.video-frame {
  position: relative;
  height: 235px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 138, 42, 0.23), transparent 34%),
    linear-gradient(135deg, rgba(139, 108, 255, 0.14), rgba(255, 138, 42, 0.09)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.play-button {
  width: 74px;
  height: 74px;
  padding-left: 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #070811;
  background: var(--white);
  font-size: 26px;
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.055),
    0 0 50px rgba(255, 138, 42, 0.34);
  animation: playPulse 2.5s ease-in-out infinite;
}

.video-progress {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 4px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.video-progress span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ff4d8d);
  box-shadow: 0 0 18px var(--orange);
  animation: progressFlow 3.2s ease-in-out infinite alternate;
}

.request-counter {
  position: absolute;
  left: 30px;
  bottom: 27px;
}

.request-counter small,
.request-counter strong {
  display: block;
}

.request-counter small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.request-counter strong {
  margin-top: 7px;
  font-size: 42px;
  letter-spacing: -0.07em;
}

.revenue-chart {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 180px;
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.revenue-chart i {
  flex: 1;
  min-width: 8px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(var(--orange), rgba(255, 138, 42, 0.14));
  box-shadow: 0 0 14px rgba(255, 138, 42, 0.24);
  animation: barGrow 2.3s ease-in-out infinite alternate;
}

.revenue-chart i:nth-child(1) {
  height: 26%;
  animation-delay: -0.2s;
}

.revenue-chart i:nth-child(2) {
  height: 46%;
  animation-delay: -0.5s;
}

.revenue-chart i:nth-child(3) {
  height: 38%;
  animation-delay: -0.8s;
}

.revenue-chart i:nth-child(4) {
  height: 68%;
  animation-delay: -1.1s;
}

.revenue-chart i:nth-child(5) {
  height: 58%;
  animation-delay: -1.4s;
}

.revenue-chart i:nth-child(6) {
  height: 92%;
  animation-delay: -1.7s;
}

@keyframes playPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@keyframes progressFlow {
  from {
    width: 34%;
  }

  to {
    width: 82%;
  }
}

@keyframes barGrow {
  from {
    transform: scaleY(0.72);
    transform-origin: bottom;
    opacity: 0.65;
  }

  to {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
}

/* SOLUTIONS RESPONSIVE */

@media (max-width: 1180px) {
  .solutions-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solutions-hero-copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  .solutions-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .solutions-hero-copy .hero-actions {
    justify-content: center;
  }

  .solutions-hero-visual {
    min-height: 570px;
  }

  .solutions-ecosystem {
    width: min(570px, 100%);
  }

  .overview-panel {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .solution-card,
  .solution-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .solution-card:nth-child(even) .solution-card-copy,
  .solution-card:nth-child(even) .solution-card-visual {
    order: initial;
  }

  .solution-card-copy > p {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .solutions-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 78px;
  }

  .solutions-hero h1 {
    font-size: clamp(49px, 13vw, 72px);
  }

  .solutions-hero-copy > p {
    font-size: 17px;
  }

  .solutions-hero-visual {
    min-height: 430px;
  }

  .solutions-ecosystem {
    width: min(100%, 420px);
    border-radius: 30px;
  }

  .ecosystem-core {
    width: 146px;
    height: 146px;
    padding: 20px;
  }

  .ecosystem-core strong {
    font-size: 31px;
  }

  .ecosystem-core small {
    display: none;
  }

  .ecosystem-node {
    width: 125px;
    min-height: 80px;
    padding: 14px;
    border-radius: 17px;
  }

  .ecosystem-node strong {
    margin-top: 8px;
    font-size: 15px;
  }

  .ecosystem-node small {
    font-size: 11px;
  }

  .node-create {
    left: 18px;
    top: 28px;
  }

  .node-distribute {
    right: 15px;
    top: 70px;
  }

  .node-monetize {
    right: 34px;
    bottom: 28px;
  }

  .overview-panel,
  .solution-card {
    padding: 38px 24px;
    border-radius: 30px;
  }

  .overview-copy h2,
  .solution-card h3 {
    font-size: clamp(40px, 11.5vw, 58px);
  }

  .flow-stage {
    padding: 24px;
  }

  .solution-card {
    min-height: auto;
    gap: 38px;
  }

  .solution-card-visual {
    min-height: 330px;
    border-radius: 24px;
  }

  .create-visual {
    padding: 64px 28px 34px;
  }

  .story-title {
    width: 84%;
  }

  .language-chip {
    right: 24px;
    bottom: 34px;
  }

  .language-chip.chip-two {
    right: 84px;
    bottom: 64px;
  }

  .seo-chip {
    left: 26px;
    bottom: 32px;
  }

  .distribute-visual {
    min-height: 360px;
  }

  .social-card {
    width: 132px;
    height: 190px;
    padding: 16px;
    border-radius: 18px;
  }

  .social-card span:first-of-type {
    height: 70px;
  }

  .social-one {
    left: 3%;
    top: 92px;
  }

  .social-two {
    left: 31%;
    top: 52px;
  }

  .social-three {
    right: 1%;
    top: 90px;
  }

  .monetize-visual {
    padding: 18px;
  }

  .video-frame {
    height: 190px;
  }

  .request-counter {
    left: 20px;
    bottom: 24px;
  }

  .request-counter strong {
    font-size: 34px;
  }

  .revenue-chart {
    right: 18px;
    bottom: 24px;
    width: 130px;
    height: 60px;
  }
}

@media (max-width: 430px) {
  .solutions-ecosystem {
    transform: none !important;
  }

  .ecosystem-node {
    width: 112px;
  }

  .ecosystem-node > span {
    display: none;
  }

  .node-create {
    left: 10px;
  }

  .node-distribute {
    right: 8px;
  }

  .node-monetize {
    right: 20px;
  }

  .social-card {
    width: 116px;
  }

  .social-two {
    left: 30%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-core,
  .ecosystem-node,
  .signal-dot,
  .story-block,
  .language-chip,
  .seo-chip,
  .visual-pulse,
  .social-card,
  .publish-chip,
  .play-button,
  .video-progress span,
  .revenue-chart i {
    animation: none !important;
  }
}

/* =========================================================
   FAQ PAGE
   ========================================================= */

.faq-page {
  background: var(--bg);
}

.faq-page .site-bg {
  background:
    radial-gradient(
      circle at 18% 8%,
      rgba(139, 108, 255, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 84% 26%,
      rgba(25, 230, 164, 0.09),
      transparent 24%
    ),
    radial-gradient(
      circle at 54% 70%,
      rgba(90, 77, 255, 0.13),
      transparent 37%
    ),
    #03040d;
}

/* FAQ HERO */

.faq-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 26%,
      rgba(139, 108, 255, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 46%,
      rgba(25, 230, 164, 0.08),
      transparent 25%
    );
}

.faq-hero-grid {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 72px;
  align-items: center;
}

.faq-hero-copy {
  max-width: 740px;
}

.faq-hero h1 {
  margin-top: 26px;
  font-size: clamp(62px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.085em;
  font-weight: 600;
}

.faq-hero-copy > p {
  max-width: 690px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.76;
}

.faq-hero-art {
  min-height: 640px;
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.faq-visual {
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(139, 108, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(7, 8, 22, 0.9);
  box-shadow:
    0 45px 140px rgba(0, 0, 0, 0.5),
    0 0 110px rgba(139, 108, 255, 0.18),
    inset 0 0 80px rgba(139, 108, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.faq-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.09) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.09) 1px,
      transparent 1px
    );
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 15%,
    transparent 74%
  );
  mask-image: radial-gradient(
    circle at center,
    black 15%,
    transparent 74%
  );
}

.faq-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(139, 108, 255, 0.3);
}

.faq-orbit-one {
  width: 72%;
  height: 43%;
  transform: translate(-50%, -50%) rotate(-14deg);
  box-shadow: 0 0 35px rgba(139, 108, 255, 0.08);
}

.faq-orbit-two {
  width: 43%;
  height: 72%;
  transform: translate(-50%, -50%) rotate(31deg);
  border-color: rgba(25, 230, 164, 0.23);
}

.faq-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: 205px;
  height: 205px;
  padding: 28px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(
      circle at 40% 28%,
      rgba(217, 200, 255, 0.28),
      transparent 34%
    ),
    rgba(10, 11, 30, 0.92);
  border: 1px solid rgba(217, 200, 255, 0.5);
  box-shadow:
    0 0 0 18px rgba(139, 108, 255, 0.06),
    0 0 75px rgba(139, 108, 255, 0.46),
    inset 0 0 34px rgba(139, 108, 255, 0.18);
  animation: faqCorePulse 3.5s ease-in-out infinite;
}

.faq-core > span {
  color: var(--purple-2);
  font-size: 62px;
  line-height: 0.8;
  font-weight: 900;
  text-shadow:
    0 0 20px rgba(217, 200, 255, 0.7),
    0 0 45px rgba(139, 108, 255, 0.55);
}

.faq-core strong {
  display: block;
  margin-top: 16px;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.faq-core small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.faq-floating-card {
  position: absolute;
  z-index: 7;
  width: 174px;
  min-height: 106px;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(8, 9, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.36);
}

.faq-floating-card > span {
  color: var(--purple-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.faq-floating-card strong,
.faq-floating-card small {
  display: block;
}

.faq-floating-card strong {
  margin-top: 11px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.faq-floating-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}

.faq-card-one {
  left: 42px;
  top: 62px;
  border-color: rgba(217, 200, 255, 0.38);
  animation: faqCardFloatOne 4.7s ease-in-out infinite;
}

.faq-card-two {
  right: 34px;
  top: 116px;
  border-color: rgba(25, 230, 164, 0.31);
  animation: faqCardFloatTwo 5s ease-in-out infinite;
}

.faq-card-two > span {
  color: var(--green);
}

.faq-card-three {
  right: 78px;
  bottom: 54px;
  border-color: rgba(255, 138, 42, 0.34);
  animation: faqCardFloatThree 4.9s ease-in-out infinite;
}

.faq-card-three > span {
  color: var(--orange);
}

.faq-signal {
  position: absolute;
  z-index: 5;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 12px var(--purple-2),
    0 0 28px var(--purple);
}

.faq-signal-one {
  left: 22%;
  top: 51%;
  animation: faqSignalOne 3.8s ease-in-out infinite;
}

.faq-signal-two {
  right: 18%;
  top: 43%;
  background: var(--green);
  box-shadow: 0 0 17px var(--green);
  animation: faqSignalTwo 4.1s ease-in-out infinite;
}

.faq-signal-three {
  right: 35%;
  bottom: 16%;
  background: var(--orange);
  box-shadow: 0 0 17px var(--orange);
  animation: faqSignalThree 4.5s ease-in-out infinite;
}

@keyframes faqCorePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 18px rgba(139, 108, 255, 0.06),
      0 0 75px rgba(139, 108, 255, 0.46),
      inset 0 0 34px rgba(139, 108, 255, 0.18);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
    box-shadow:
      0 0 0 28px rgba(139, 108, 255, 0.035),
      0 0 105px rgba(139, 108, 255, 0.62),
      inset 0 0 44px rgba(139, 108, 255, 0.24);
  }
}

@keyframes faqCardFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 35px) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -14px, 35px) rotate(1deg);
  }
}

@keyframes faqCardFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 55px) rotate(2deg);
  }

  50% {
    transform: translate3d(0, 13px, 55px) rotate(-1deg);
  }
}

@keyframes faqCardFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 42px) rotate(1deg);
  }

  50% {
    transform: translate3d(-8px, -13px, 42px) rotate(-2deg);
  }
}

@keyframes faqSignalOne {
  0%,
  100% {
    transform: translate(0, -48px);
    opacity: 0.35;
  }

  50% {
    transform: translate(68px, 28px);
    opacity: 1;
  }
}

@keyframes faqSignalTwo {
  0%,
  100% {
    transform: translate(-14px, -34px);
    opacity: 0.35;
  }

  50% {
    transform: translate(-72px, 42px);
    opacity: 1;
  }
}

@keyframes faqSignalThree {
  0%,
  100% {
    transform: translate(38px, 8px);
    opacity: 0.35;
  }

  50% {
    transform: translate(-42px, -62px);
    opacity: 1;
  }
}

/* FAQ CONTENT */

.faq-section {
  position: relative;
  padding-top: 90px;
}

.faq-layout {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 74px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 140px;
  padding: 42px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 22% 14%,
      rgba(139, 108, 255, 0.2),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    0 32px 95px rgba(0, 0, 0, 0.26),
    inset 0 0 60px rgba(139, 108, 255, 0.04);
}

.faq-intro::after {
  content: "?";
  position: absolute;
  right: -24px;
  bottom: -80px;
  color: rgba(139, 108, 255, 0.07);
  font-size: 310px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.faq-intro > * {
  position: relative;
  z-index: 2;
}

.faq-intro h2 {
  margin-top: 24px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 600;
}

.faq-intro p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.faq-intro .btn {
  margin-top: 32px;
}

.faq-accordion {
  display: grid;
  gap: 16px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 94% 0%,
      rgba(139, 108, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.058),
      rgba(255, 255, 255, 0.022)
    ),
    rgba(6, 7, 20, 0.8);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.2),
    inset 0 0 50px rgba(139, 108, 255, 0.025);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    var(--purple-2),
    var(--purple)
  );
  box-shadow: 0 0 20px var(--purple);
  opacity: 0;
  transform: scaleY(0.3);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.faq-item:hover {
  border-color: rgba(217, 200, 255, 0.3);
  transform: translateY(-3px);
}

.faq-item.is-open {
  border-color: rgba(217, 200, 255, 0.44);
  background:
    radial-gradient(
      circle at 92% 0%,
      rgba(139, 108, 255, 0.2),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(7, 8, 23, 0.9);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.3),
    0 0 55px rgba(139, 108, 255, 0.08),
    inset 0 0 60px rgba(139, 108, 255, 0.05);
}

.faq-item.is-open::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq-trigger {
  width: 100%;
  min-height: 118px;
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 20px;
  align-items: center;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--purple-2);
  outline-offset: -4px;
  border-radius: 26px;
}

.faq-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--purple-2);
  background: rgba(139, 108, 255, 0.11);
  border: 1px solid rgba(139, 108, 255, 0.32);
  font-size: 11px;
  font-weight: 900;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item.is-open .faq-number {
  background: rgba(139, 108, 255, 0.19);
  box-shadow: 0 0 24px rgba(139, 108, 255, 0.2);
}

.faq-question {
  max-width: 720px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.3;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.faq-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.faq-toggle i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.faq-toggle i:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle {
  transform: rotate(180deg);
  background: rgba(139, 108, 255, 0.16);
  border-color: rgba(217, 200, 255, 0.38);
}

.faq-item.is-open .faq-toggle i:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer-inner p {
  max-width: 850px;
  padding:
    0
    100px
    32px
    98px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* FAQ RESPONSIVE */

@media (max-width: 1180px) {
  .faq-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-hero-copy {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
  }

  .faq-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-hero-copy .hero-actions {
    justify-content: center;
  }

  .faq-hero-art {
    min-height: 570px;
  }

  .faq-visual {
    width: min(560px, 100%);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .faq-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .faq-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 78px;
  }

  .faq-hero h1 {
    font-size: clamp(50px, 13.5vw, 74px);
  }

  .faq-hero-copy > p {
    font-size: 17px;
  }

  .faq-hero-art {
    min-height: 430px;
  }

  .faq-visual {
    width: min(100%, 420px);
    border-radius: 30px;
  }

  .faq-core {
    width: 146px;
    height: 146px;
    padding: 18px;
  }

  .faq-core > span {
    font-size: 45px;
  }

  .faq-core strong {
    margin-top: 10px;
    font-size: 23px;
  }

  .faq-core small {
    display: none;
  }

  .faq-floating-card {
    width: 126px;
    min-height: 82px;
    padding: 14px;
    border-radius: 17px;
  }

  .faq-floating-card strong {
    margin-top: 8px;
    font-size: 15px;
  }

  .faq-floating-card small {
    font-size: 10px;
  }

  .faq-card-one {
    left: 17px;
    top: 28px;
  }

  .faq-card-two {
    right: 13px;
    top: 71px;
  }

  .faq-card-three {
    right: 32px;
    bottom: 27px;
  }

  .faq-section {
    padding-top: 70px;
  }

  .faq-intro {
    padding: 34px 25px;
    border-radius: 28px;
  }

  .faq-intro h2 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .faq-item {
    border-radius: 24px;
  }

  .faq-trigger {
    min-height: 104px;
    padding: 22px 20px;
    grid-template-columns: 42px 1fr 42px;
    gap: 14px;
  }

  .faq-number {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .faq-question {
    font-size: 18px;
    line-height: 1.35;
  }

  .faq-toggle {
    width: 40px;
    height: 40px;
  }

  .faq-answer-inner p {
    padding:
      0
      25px
      27px
      76px;
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .faq-visual {
    transform: none !important;
  }

  .faq-floating-card {
    width: 112px;
  }

  .faq-floating-card > span {
    display: none;
  }

  .faq-floating-card small {
    display: none;
  }

  .faq-card-one {
    left: 9px;
  }

  .faq-card-two {
    right: 7px;
  }

  .faq-card-three {
    right: 18px;
  }

  .faq-trigger {
    grid-template-columns: 36px 1fr 38px;
    gap: 11px;
    padding: 20px 15px;
  }

  .faq-number {
    width: 35px;
    height: 35px;
    border-radius: 11px;
    font-size: 10px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-toggle {
    width: 37px;
    height: 37px;
  }

  .faq-answer-inner p {
    padding:
      0
      17px
      25px
      62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-core,
  .faq-floating-card,
  .faq-signal {
    animation: none !important;
  }

  .faq-visual {
    transition: none;
  }

  .faq-answer {
    transition: none;
  }
}
/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  background: var(--bg);
}

.contact-page .site-bg {
  background:
    radial-gradient(
      circle at 16% 9%,
      rgba(139, 108, 255, 0.22),
      transparent 31%
    ),
    radial-gradient(
      circle at 84% 27%,
      rgba(25, 230, 164, 0.09),
      transparent 24%
    ),
    radial-gradient(
      circle at 53% 74%,
      rgba(90, 77, 255, 0.13),
      transparent 38%
    ),
    #03040d;
}

/* CONTACT HERO */

.contact-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(139, 108, 255, 0.21),
      transparent 28%
    ),
    radial-gradient(
      circle at 81% 45%,
      rgba(25, 230, 164, 0.08),
      transparent 25%
    );
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 72px;
  align-items: center;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero h1 {
  margin-top: 26px;
  font-size: clamp(60px, 6.9vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.085em;
  font-weight: 600;
}

.contact-hero-copy > p {
  max-width: 700px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.76;
}

.contact-hero-art {
  min-height: 640px;
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.contact-visual {
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(139, 108, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(7, 8, 22, 0.9);
  box-shadow:
    0 45px 140px rgba(0, 0, 0, 0.5),
    0 0 110px rgba(139, 108, 255, 0.18),
    inset 0 0 80px rgba(139, 108, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.contact-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.09) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.09) 1px,
      transparent 1px
    );
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 15%,
    transparent 74%
  );
  mask-image: radial-gradient(
    circle at center,
    black 15%,
    transparent 74%
  );
}

.contact-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(139, 108, 255, 0.3);
}

.contact-orbit-one {
  width: 72%;
  height: 43%;
  transform: translate(-50%, -50%) rotate(-14deg);
  box-shadow: 0 0 35px rgba(139, 108, 255, 0.08);
}

.contact-orbit-two {
  width: 43%;
  height: 72%;
  transform: translate(-50%, -50%) rotate(31deg);
  border-color: rgba(25, 230, 164, 0.23);
}

.contact-orbit-three {
  width: 58%;
  height: 58%;
  transform: translate(-50%, -50%) rotate(58deg);
  border-color: rgba(255, 138, 42, 0.14);
}

.contact-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: 205px;
  height: 205px;
  padding: 27px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(
      circle at 40% 28%,
      rgba(217, 200, 255, 0.28),
      transparent 34%
    ),
    rgba(10, 11, 30, 0.92);
  border: 1px solid rgba(217, 200, 255, 0.5);
  box-shadow:
    0 0 0 18px rgba(139, 108, 255, 0.06),
    0 0 75px rgba(139, 108, 255, 0.46),
    inset 0 0 34px rgba(139, 108, 255, 0.18);
  animation: contactCorePulse 3.5s ease-in-out infinite;
}

.contact-envelope {
  position: relative;
  width: 74px;
  height: 54px;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      #f5f3ff,
      #d9c8ff
    );
  box-shadow:
    8px 9px 0 rgba(89, 74, 139, 0.48),
    0 0 34px rgba(139, 108, 255, 0.4);
}

.contact-envelope::before,
.contact-envelope::after {
  content: "";
  position: absolute;
  top: 0;
  width: 53%;
  height: 70%;
}

.contact-envelope::before {
  left: 0;
  background: linear-gradient(
    145deg,
    transparent 49%,
    #9187bd 50%,
    #9187bd 53%,
    transparent 54%
  );
}

.contact-envelope::after {
  right: 0;
  background: linear-gradient(
    215deg,
    transparent 49%,
    #9187bd 50%,
    #9187bd 53%,
    transparent 54%
  );
}

.contact-envelope span {
  position: absolute;
  left: 50%;
  top: 13px;
  width: 36px;
  height: 36px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid rgba(93, 79, 143, 0.55);
  border-bottom: 2px solid rgba(93, 79, 143, 0.55);
}

.contact-core strong {
  display: block;
  margin-top: 22px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.contact-core small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.contact-floating-card {
  position: absolute;
  z-index: 7;
  width: 186px;
  min-height: 108px;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(8, 9, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.36);
}

.contact-floating-card > span {
  color: var(--purple-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-floating-card strong,
.contact-floating-card small {
  display: block;
}

.contact-floating-card strong {
  margin-top: 11px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.contact-floating-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card-email {
  left: 36px;
  top: 60px;
  border-color: rgba(217, 200, 255, 0.38);
  animation: contactCardFloatOne 4.7s ease-in-out infinite;
}

.contact-card-call {
  right: 30px;
  top: 120px;
  border-color: rgba(25, 230, 164, 0.31);
  animation: contactCardFloatTwo 5s ease-in-out infinite;
}

.contact-card-call > span {
  color: var(--green);
}

.contact-card-demo {
  right: 75px;
  bottom: 50px;
  border-color: rgba(255, 138, 42, 0.34);
  animation: contactCardFloatThree 4.9s ease-in-out infinite;
}

.contact-card-demo > span {
  color: var(--orange);
}

.contact-signal {
  position: absolute;
  z-index: 5;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 12px var(--purple-2),
    0 0 28px var(--purple);
}

.contact-signal.signal-one {
  left: 22%;
  top: 51%;
  animation: contactSignalOne 3.8s ease-in-out infinite;
}

.contact-signal.signal-two {
  right: 18%;
  top: 43%;
  background: var(--green);
  box-shadow: 0 0 17px var(--green);
  animation: contactSignalTwo 4.1s ease-in-out infinite;
}

.contact-signal.signal-three {
  right: 35%;
  bottom: 16%;
  background: var(--orange);
  box-shadow: 0 0 17px var(--orange);
  animation: contactSignalThree 4.5s ease-in-out infinite;
}

@keyframes contactCorePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 18px rgba(139, 108, 255, 0.06),
      0 0 75px rgba(139, 108, 255, 0.46),
      inset 0 0 34px rgba(139, 108, 255, 0.18);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
    box-shadow:
      0 0 0 28px rgba(139, 108, 255, 0.035),
      0 0 105px rgba(139, 108, 255, 0.62),
      inset 0 0 44px rgba(139, 108, 255, 0.24);
  }
}

@keyframes contactCardFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 35px) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -14px, 35px) rotate(1deg);
  }
}

@keyframes contactCardFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 55px) rotate(2deg);
  }

  50% {
    transform: translate3d(0, 13px, 55px) rotate(-1deg);
  }
}

@keyframes contactCardFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 42px) rotate(1deg);
  }

  50% {
    transform: translate3d(-8px, -13px, 42px) rotate(-2deg);
  }
}

@keyframes contactSignalOne {
  0%,
  100% {
    transform: translate(0, -48px);
    opacity: 0.35;
  }

  50% {
    transform: translate(68px, 28px);
    opacity: 1;
  }
}

@keyframes contactSignalTwo {
  0%,
  100% {
    transform: translate(-14px, -34px);
    opacity: 0.35;
  }

  50% {
    transform: translate(-72px, 42px);
    opacity: 1;
  }
}

@keyframes contactSignalThree {
  0%,
  100% {
    transform: translate(38px, 8px);
    opacity: 0.35;
  }

  50% {
    transform: translate(-42px, -62px);
    opacity: 1;
  }
}

/* CONTACT CONTENT */

.contact-section {
  position: relative;
  padding-top: 90px;
}

.contact-layout {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-information {
  position: sticky;
  top: 125px;
  padding: 42px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 22% 14%,
      rgba(139, 108, 255, 0.2),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    0 32px 95px rgba(0, 0, 0, 0.26),
    inset 0 0 60px rgba(139, 108, 255, 0.04);
}

.contact-information::after {
  content: "@";
  position: absolute;
  right: -42px;
  bottom: -92px;
  color: rgba(139, 108, 255, 0.055);
  font-size: 300px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.contact-information > * {
  position: relative;
  z-index: 2;
}

.contact-information h2 {
  margin-top: 24px;
  font-size: clamp(47px, 5vw, 75px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 600;
}

.contact-information > p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 13px;
}

.contact-detail-card {
  position: relative;
  min-height: 94px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 48px 1fr 25px;
  gap: 15px;
  align-items: center;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(5, 6, 18, 0.57);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.contact-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 200, 255, 0.37);
  background: rgba(139, 108, 255, 0.08);
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--purple-2);
  background: rgba(139, 108, 255, 0.12);
  border: 1px solid rgba(139, 108, 255, 0.32);
  font-size: 19px;
  font-weight: 900;
}

.contact-detail-card:nth-child(2) .contact-detail-icon {
  color: var(--green);
  background: rgba(25, 230, 164, 0.09);
  border-color: rgba(25, 230, 164, 0.27);
}

.contact-detail-card span,
.contact-detail-card strong {
  display: block;
}

.contact-detail-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-detail-card strong {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-detail-card em {
  color: var(--purple-2);
  font-size: 19px;
  font-style: normal;
  transition: transform 0.3s ease;
}

.contact-detail-card:hover em {
  transform: translate(3px, -3px);
}

.contact-platforms {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-platforms span {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
}

/* CONTACT FORM */

.contact-form-shell {
  padding: 42px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(139, 108, 255, 0.16),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.022)
    ),
    rgba(6, 7, 20, 0.82);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.32),
    inset 0 0 70px rgba(139, 108, 255, 0.035);
}

.contact-form-heading {
  padding-bottom: 31px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-form-heading > div:first-child > span {
  color: var(--purple-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-form-heading h2 {
  margin-top: 12px;
  max-width: 620px;
  font-size: clamp(37px, 4vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 600;
}

.form-status-light {
  flex-shrink: 0;
  min-height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(25, 230, 164, 0.08);
  border: 1px solid rgba(25, 230, 164, 0.22);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-status-light i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  animation: contactStatusPulse 1.7s ease-in-out infinite;
}

@keyframes contactStatusPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.contact-form {
  margin-top: 34px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.form-field {
  position: relative;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label:not(.privacy-checkbox) {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.form-field label > span {
  color: var(--purple-2);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  border-radius: 17px;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(3, 4, 13, 0.52);
  font-family: inherit;
  font-size: 14px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.form-field input,
.form-field select {
  height: 58px;
  padding: 0 18px;
}

.form-field textarea {
  min-height: 180px;
  padding: 18px;
  line-height: 1.7;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(217, 200, 255, 0.26);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(217, 200, 255, 0.58);
  background: rgba(139, 108, 255, 0.065);
  box-shadow:
    0 0 0 4px rgba(139, 108, 255, 0.08),
    0 0 28px rgba(139, 108, 255, 0.08);
}

.form-field select {
  padding-right: 46px;
  appearance: none;
  cursor: pointer;
}

.form-field select option {
  color: #ffffff;
  background: #080918;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-right: 2px solid var(--purple-2);
  border-bottom: 2px solid var(--purple-2);
  transform: translateY(-70%) rotate(45deg);
}

.field-error {
  display: none;
  margin-top: 8px;
  color: #ff9ab8;
  font-size: 11px;
  font-weight: 700;
}

.form-field.has-error .field-error {
  display: block;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(255, 105, 151, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 105, 151, 0.07);
}

.form-field.is-valid input,
.form-field.is-valid select,
.form-field.is-valid textarea {
  border-color: rgba(25, 230, 164, 0.42);
}

.message-field-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.message-counter {
  margin-top: 8px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 800;
}

.message-counter b {
  color: var(--purple-2);
  font-weight: 900;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.privacy-field {
  padding-top: 2px;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  cursor: pointer;
}

.privacy-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  position: relative;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.custom-checkbox i {
  width: 9px;
  height: 5px;
  border-left: 2px solid #050611;
  border-bottom: 2px solid #050611;
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(0.4);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.privacy-checkbox input:checked + .custom-checkbox {
  background: var(--purple-2);
  border-color: var(--purple-2);
  box-shadow: 0 0 20px rgba(139, 108, 255, 0.3);
}

.privacy-checkbox input:checked + .custom-checkbox i {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.privacy-checkbox input:focus-visible + .custom-checkbox {
  outline: 2px solid var(--purple-2);
  outline-offset: 3px;
}

.privacy-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.privacy-copy a {
  color: var(--purple-2);
  font-weight: 800;
  border-bottom: 1px solid rgba(217, 200, 255, 0.35);
}

.privacy-copy a:hover {
  border-bottom-color: var(--purple-2);
}

.contact-form-footer {
  margin-top: 31px;
  padding-top: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-submit-button {
  min-width: 190px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.contact-submit-button i {
  margin-left: 12px;
  font-size: 18px;
  font-style: normal;
  transition: transform 0.25s ease;
}

.contact-submit-button:hover i {
  transform: translate(3px, -3px);
}

.contact-submit-button.is-loading {
  pointer-events: none;
  opacity: 0.72;
}

.contact-submit-button.is-loading i {
  width: 15px;
  height: 15px;
  margin-left: 13px;
  border: 2px solid rgba(3, 4, 13, 0.3);
  border-top-color: #03040d;
  border-radius: 50%;
  font-size: 0;
  animation: contactButtonSpin 0.8s linear infinite;
}

@keyframes contactButtonSpin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form-footer p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.contact-form-message {
  display: none;
  margin-top: 22px;
  padding: 17px 19px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-form-message.is-visible {
  display: block;
}

.contact-form-message.is-success {
  color: #9fffdc;
  background: rgba(25, 230, 164, 0.08);
  border: 1px solid rgba(25, 230, 164, 0.25);
}

.contact-form-message.is-error {
  color: #ffafc7;
  background: rgba(255, 105, 151, 0.08);
  border: 1px solid rgba(255, 105, 151, 0.25);
}

/* CONTACT RESPONSIVE */

@media (max-width: 1180px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-hero-copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-copy .hero-actions {
    justify-content: center;
  }

  .contact-hero-art {
    min-height: 570px;
  }

  .contact-visual {
    width: min(560px, 100%);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-information {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 78px;
  }

  .contact-hero h1 {
    font-size: clamp(49px, 13.2vw, 73px);
  }

  .contact-hero-copy > p {
    font-size: 17px;
  }

  .contact-hero-art {
    min-height: 430px;
  }

  .contact-visual {
    width: min(100%, 420px);
    border-radius: 30px;
  }

  .contact-core {
    width: 146px;
    height: 146px;
    padding: 18px;
  }

  .contact-envelope {
    width: 54px;
    height: 40px;
  }

  .contact-envelope span {
    top: 9px;
    width: 27px;
    height: 27px;
  }

  .contact-core strong {
    margin-top: 16px;
    font-size: 20px;
  }

  .contact-core small {
    display: none;
  }

  .contact-floating-card {
    width: 132px;
    min-height: 83px;
    padding: 14px;
    border-radius: 17px;
  }

  .contact-floating-card strong {
    margin-top: 8px;
    font-size: 14px;
  }

  .contact-floating-card small {
    font-size: 9px;
  }

  .contact-card-email {
    left: 15px;
    top: 27px;
  }

  .contact-card-call {
    right: 12px;
    top: 72px;
  }

  .contact-card-demo {
    right: 30px;
    bottom: 26px;
  }

  .contact-section {
    padding-top: 70px;
  }

  .contact-information,
  .contact-form-shell {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .contact-information h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .contact-form-heading {
    display: block;
  }

  .form-status-light {
    width: max-content;
    margin-top: 20px;
  }

  .contact-form-heading h2 {
    font-size: clamp(37px, 10vw, 54px);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .contact-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit-button {
    width: 100%;
  }

  .contact-form-footer p {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .contact-visual {
    transform: none !important;
  }

  .contact-floating-card {
    width: 112px;
  }

  .contact-floating-card > span,
  .contact-floating-card small {
    display: none;
  }

  .contact-card-email {
    left: 8px;
  }

  .contact-card-call {
    right: 7px;
  }

  .contact-card-demo {
    right: 17px;
  }

  .contact-detail-card {
    grid-template-columns: 43px 1fr 20px;
    gap: 11px;
    padding: 15px;
  }

  .contact-detail-icon {
    width: 41px;
    height: 41px;
  }

  .contact-detail-card strong {
    font-size: 12px;
  }

  .contact-form-shell {
    padding: 29px 18px;
  }

  .form-field input,
  .form-field select {
    height: 55px;
  }

  .privacy-copy {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-core,
  .contact-floating-card,
  .contact-signal,
  .form-status-light i {
    animation: none !important;
  }

  .contact-visual {
    transition: none;
  }
}

/* =========================================================
   BLOG PAGE
   ========================================================= */

.blog-page {
  background: var(--bg);
}

.blog-page .site-bg {
  background:
    radial-gradient(
      circle at 17% 9%,
      rgba(139, 108, 255, 0.22),
      transparent 31%
    ),
    radial-gradient(
      circle at 84% 27%,
      rgba(25, 230, 164, 0.09),
      transparent 24%
    ),
    radial-gradient(
      circle at 54% 73%,
      rgba(90, 77, 255, 0.13),
      transparent 38%
    ),
    #03040d;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* BLOG HERO */

.blog-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(139, 108, 255, 0.21),
      transparent 28%
    ),
    radial-gradient(
      circle at 81% 45%,
      rgba(25, 230, 164, 0.08),
      transparent 25%
    );
}

.blog-hero-grid {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 72px;
  align-items: center;
}

.blog-hero-copy {
  max-width: 760px;
}

.blog-hero h1 {
  margin-top: 26px;
  font-size: clamp(60px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.085em;
  font-weight: 600;
}

.blog-hero-copy > p {
  max-width: 700px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.76;
}

.blog-hero-art {
  min-height: 640px;
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.blog-visual {
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(139, 108, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(7, 8, 22, 0.9);
  box-shadow:
    0 45px 140px rgba(0, 0, 0, 0.5),
    0 0 110px rgba(139, 108, 255, 0.18),
    inset 0 0 80px rgba(139, 108, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.blog-visual-grid,
.blog-image-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.09) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.09) 1px,
      transparent 1px
    );
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 15%,
    transparent 74%
  );
  mask-image: radial-gradient(
    circle at center,
    black 15%,
    transparent 74%
  );
}

.blog-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(139, 108, 255, 0.3);
}

.blog-orbit-one {
  width: 72%;
  height: 43%;
  transform: translate(-50%, -50%) rotate(-14deg);
  box-shadow: 0 0 35px rgba(139, 108, 255, 0.08);
}

.blog-orbit-two {
  width: 43%;
  height: 72%;
  transform: translate(-50%, -50%) rotate(31deg);
  border-color: rgba(25, 230, 164, 0.23);
}

.blog-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: 205px;
  height: 205px;
  padding: 27px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(
      circle at 40% 28%,
      rgba(217, 200, 255, 0.28),
      transparent 34%
    ),
    rgba(10, 11, 30, 0.92);
  border: 1px solid rgba(217, 200, 255, 0.5);
  box-shadow:
    0 0 0 18px rgba(139, 108, 255, 0.06),
    0 0 75px rgba(139, 108, 255, 0.46),
    inset 0 0 34px rgba(139, 108, 255, 0.18);
  animation: blogCorePulse 3.5s ease-in-out infinite;
}

.blog-core > span {
  color: var(--purple-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.blog-core strong {
  display: block;
  margin-top: 12px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.065em;
}

.blog-core small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.blog-floating-story {
  position: absolute;
  z-index: 7;
  width: 178px;
  min-height: 108px;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(8, 9, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.36);
}

.blog-floating-story > span {
  color: var(--purple-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.blog-floating-story strong,
.blog-floating-story small {
  display: block;
}

.blog-floating-story strong {
  margin-top: 11px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.blog-floating-story small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.blog-story-one {
  left: 38px;
  top: 60px;
  border-color: rgba(217, 200, 255, 0.38);
  animation: blogStoryFloatOne 4.7s ease-in-out infinite;
}

.blog-story-two {
  right: 31px;
  top: 118px;
  border-color: rgba(25, 230, 164, 0.31);
  animation: blogStoryFloatTwo 5s ease-in-out infinite;
}

.blog-story-two > span {
  color: var(--green);
}

.blog-story-three {
  right: 76px;
  bottom: 52px;
  border-color: rgba(255, 138, 42, 0.34);
  animation: blogStoryFloatThree 4.9s ease-in-out infinite;
}

.blog-story-three > span {
  color: var(--orange);
}

.blog-signal {
  position: absolute;
  z-index: 5;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 12px var(--purple-2),
    0 0 28px var(--purple);
}

.blog-signal-one {
  left: 22%;
  top: 51%;
  animation: blogSignalOne 3.8s ease-in-out infinite;
}

.blog-signal-two {
  right: 18%;
  top: 43%;
  background: var(--green);
  box-shadow: 0 0 17px var(--green);
  animation: blogSignalTwo 4.1s ease-in-out infinite;
}

.blog-signal-three {
  right: 35%;
  bottom: 16%;
  background: var(--orange);
  box-shadow: 0 0 17px var(--orange);
  animation: blogSignalThree 4.5s ease-in-out infinite;
}

@keyframes blogCorePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes blogStoryFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 35px) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -14px, 35px) rotate(1deg);
  }
}

@keyframes blogStoryFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 55px) rotate(2deg);
  }

  50% {
    transform: translate3d(0, 13px, 55px) rotate(-1deg);
  }
}

@keyframes blogStoryFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 42px) rotate(1deg);
  }

  50% {
    transform: translate3d(-8px, -13px, 42px) rotate(-2deg);
  }
}

@keyframes blogSignalOne {
  0%,
  100% {
    transform: translate(0, -48px);
    opacity: 0.35;
  }

  50% {
    transform: translate(68px, 28px);
    opacity: 1;
  }
}

@keyframes blogSignalTwo {
  0%,
  100% {
    transform: translate(-14px, -34px);
    opacity: 0.35;
  }

  50% {
    transform: translate(-72px, 42px);
    opacity: 1;
  }
}

@keyframes blogSignalThree {
  0%,
  100% {
    transform: translate(38px, 8px);
    opacity: 0.35;
  }

  50% {
    transform: translate(-42px, -62px);
    opacity: 1;
  }
}

/* BLOG CONTROLS */

.blog-controls-section {
  padding: 90px 6vw 30px;
}

.blog-controls {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 44px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(139, 108, 255, 0.14),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.022)
    );
}

.blog-controls-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}

.blog-controls-heading > div > span {
  color: var(--purple-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.blog-controls-heading h2 {
  margin-top: 12px;
  font-size: clamp(43px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 600;
}

.blog-controls-heading > p {
  max-width: 510px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.blog-tools {
  margin-top: 36px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.blog-filter {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.blog-filter:hover {
  color: var(--white);
  border-color: rgba(217, 200, 255, 0.28);
  transform: translateY(-2px);
}

.blog-filter.active {
  color: var(--bg);
  background: var(--white);
  border-color: var(--white);
}

.blog-search {
  position: relative;
  flex: 0 1 320px;
}

.blog-search > span {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-58%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.blog-search > span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

.blog-search input {
  width: 100%;
  height: 50px;
  padding: 0 18px 0 49px;
  outline: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(3, 4, 13, 0.5);
  font-family: inherit;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.blog-search input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.blog-search input:focus {
  border-color: rgba(217, 200, 255, 0.5);
  background: rgba(139, 108, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(139, 108, 255, 0.08);
}

/* ARTICLES */

.blog-articles-section {
  padding-top: 55px;
}

.blog-articles-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.blog-article-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(6, 7, 20, 0.78);
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.27),
    inset 0 0 55px rgba(139, 108, 255, 0.025);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.blog-article-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217, 200, 255, 0.38);
  box-shadow:
    0 38px 105px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(139, 108, 255, 0.08);
}

.blog-article-card.is-hidden {
  display: none;
}

.blog-featured-card {
  grid-column: 1 / -1;
}

.blog-featured-card .blog-article-link {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 530px;
}

.blog-article-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(139, 108, 255, 0.24),
      transparent 43%
    ),
    rgba(7, 8, 24, 0.88);
}

.blog-featured-card .blog-card-image {
  min-height: 100%;
}

.blog-card-category {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 6;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--purple-2);
  background: rgba(4, 5, 16, 0.72);
  border: 1px solid rgba(217, 200, 255, 0.26);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.blog-card-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.blog-featured-card .blog-card-content {
  padding: 55px;
  justify-content: center;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 800;
}

.blog-card-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 9px var(--purple);
}

.blog-card-content h2 {
  margin-top: 21px;
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.blog-featured-card .blog-card-content h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
}

.blog-card-content > p {
  margin-top: 19px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.blog-card-footer i {
  color: var(--purple-2);
  font-size: 20px;
  font-style: normal;
  transition: transform 0.25s ease;
}

.blog-article-card:hover .blog-card-footer i {
  transform: translate(4px, -4px);
}

/* AI ARTICLE IMAGE */

.blog-image-ai {
  display: grid;
  place-items: center;
}

.article-visual-window {
  position: relative;
  z-index: 2;
  width: min(70%, 480px);
  min-height: 280px;
  padding: 70px 35px 35px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(8, 9, 27, 0.87);
  border: 1px solid rgba(217, 200, 255, 0.25);
  box-shadow:
    25px 30px 0 rgba(78, 62, 140, 0.15),
    0 0 70px rgba(139, 108, 255, 0.22);
  transform: rotate(-4deg);
}

.article-visual-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 46px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-visual-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.article-ai-lines {
  display: grid;
  gap: 18px;
}

.article-ai-lines span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(217, 200, 255, 0.85),
    rgba(139, 108, 255, 0.12)
  );
  animation: articleLinePulse 3s ease-in-out infinite;
}

.article-ai-lines span:nth-child(1) {
  width: 76%;
}

.article-ai-lines span:nth-child(2) {
  width: 94%;
  animation-delay: -0.5s;
}

.article-ai-lines span:nth-child(3) {
  width: 82%;
  animation-delay: -1s;
}

.article-ai-lines span:nth-child(4) {
  width: 61%;
  animation-delay: -1.5s;
}

.article-ai-badge {
  position: absolute;
  right: 30px;
  bottom: 27px;
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: var(--bg);
  background: var(--purple-2);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(217, 200, 255, 0.3);
}

@keyframes articleLinePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.97);
    transform-origin: left;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* SOCIAL ARTICLE IMAGE */

.blog-image-social {
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(25, 230, 164, 0.2),
      transparent 43%
    ),
    rgba(7, 8, 24, 0.88);
}

.social-article-stack {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 190px;
}

.social-article-card {
  position: absolute;
  width: 110px;
  height: 155px;
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(7, 8, 22, 0.94);
  border: 1px solid rgba(25, 230, 164, 0.22);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4);
}

.social-article-card span {
  display: block;
  height: 88px;
  border-radius: 13px;
  background:
    radial-gradient(
      circle at center,
      rgba(25, 230, 164, 0.28),
      transparent 58%
    ),
    rgba(255, 255, 255, 0.05);
}

.social-article-card i {
  display: block;
  width: 70%;
  height: 7px;
  margin-top: 17px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.social-article-left {
  left: 0;
  top: 23px;
  transform: rotate(-12deg);
}

.social-article-center {
  left: 70px;
  top: 0;
  z-index: 3;
  transform: scale(1.06);
}

.social-article-right {
  right: 0;
  top: 23px;
  transform: rotate(12deg);
}

/* REVENUE ARTICLE IMAGE */

.blog-image-revenue {
  background:
    radial-gradient(
      circle at 48% 40%,
      rgba(255, 138, 42, 0.2),
      transparent 43%
    ),
    rgba(7, 8, 24, 0.88);
}

.revenue-article-chart {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 35px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.revenue-article-chart i {
  flex: 1;
  border-radius: 9px 9px 3px 3px;
  background: linear-gradient(
    var(--orange),
    rgba(255, 138, 42, 0.12)
  );
  box-shadow: 0 0 18px rgba(255, 138, 42, 0.22);
}

.revenue-article-chart i:nth-child(1) {
  height: 28%;
}

.revenue-article-chart i:nth-child(2) {
  height: 47%;
}

.revenue-article-chart i:nth-child(3) {
  height: 38%;
}

.revenue-article-chart i:nth-child(4) {
  height: 68%;
}

.revenue-article-chart i:nth-child(5) {
  height: 57%;
}

.revenue-article-chart i:nth-child(6) {
  height: 91%;
}

.revenue-article-value {
  position: absolute;
  left: 30px;
  top: 75px;
}

.revenue-article-value span,
.revenue-article-value strong {
  display: block;
}

.revenue-article-value span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.revenue-article-value strong {
  margin-top: 7px;
  font-size: 42px;
  letter-spacing: -0.07em;
}

/* CLOUD ARTICLE IMAGE */

.blog-image-cloud {
  display: grid;
  place-items: center;
}

.cloud-article-core {
  position: relative;
  z-index: 3;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple-2);
  background: rgba(10, 11, 30, 0.94);
  border: 1px solid rgba(217, 200, 255, 0.42);
  box-shadow:
    0 0 0 15px rgba(139, 108, 255, 0.05),
    0 0 60px rgba(139, 108, 255, 0.35);
}

.cloud-article-core strong {
  font-size: 23px;
  letter-spacing: -0.05em;
}

.cloud-article-node {
  position: absolute;
  z-index: 4;
  padding: 11px 15px;
  border-radius: 14px;
  background: rgba(8, 9, 25, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 10px;
  font-weight: 900;
}

.cloud-node-create {
  left: 23%;
  top: 25%;
  color: var(--purple-2);
}

.cloud-node-distribute {
  right: 15%;
  top: 39%;
  color: var(--green);
}

.cloud-node-monetize {
  left: 31%;
  bottom: 18%;
  color: var(--orange);
}

/* EMPTY STATE */

.blog-empty-state {
  display: none;
  width: min(720px, 100%);
  margin: 30px auto 0;
  padding: 70px 30px;
  text-align: center;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.blog-empty-state.is-visible {
  display: block;
}

.blog-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--purple-2);
  background: rgba(139, 108, 255, 0.12);
  border: 1px solid rgba(139, 108, 255, 0.3);
  font-size: 28px;
  font-weight: 900;
}

.blog-empty-state h3 {
  margin-top: 24px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.blog-empty-state p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.blog-empty-state .btn {
  margin-top: 25px;
  cursor: pointer;
}

/* BLOG RESPONSIVE */

@media (max-width: 1180px) {
  .blog-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .blog-hero-copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  .blog-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .blog-hero-copy .hero-actions {
    justify-content: center;
  }

  .blog-hero-art {
    min-height: 570px;
  }

  .blog-visual {
    width: min(560px, 100%);
  }

  .blog-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-featured-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .blog-featured-card .blog-article-link {
    grid-template-columns: 1fr;
  }

  .blog-featured-card .blog-card-image {
    min-height: 420px;
  }

  .blog-controls-heading {
    display: block;
  }

  .blog-controls-heading > p {
    margin-top: 22px;
  }

  .blog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-search {
    flex-basis: auto;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .blog-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 78px;
  }

  .blog-hero h1 {
    font-size: clamp(50px, 13.5vw, 74px);
  }

  .blog-hero-copy > p {
    font-size: 17px;
  }

  .blog-hero-art {
    min-height: 430px;
  }

  .blog-visual {
    width: min(100%, 420px);
    border-radius: 30px;
  }

  .blog-core {
    width: 146px;
    height: 146px;
    padding: 18px;
  }

  .blog-core strong {
    font-size: 26px;
  }

  .blog-core small {
    display: none;
  }

  .blog-floating-story {
    width: 126px;
    min-height: 82px;
    padding: 14px;
    border-radius: 17px;
  }

  .blog-floating-story strong {
    margin-top: 8px;
    font-size: 15px;
  }

  .blog-floating-story small {
    font-size: 10px;
  }

  .blog-story-one {
    left: 17px;
    top: 28px;
  }

  .blog-story-two {
    right: 13px;
    top: 71px;
  }

  .blog-story-three {
    right: 32px;
    bottom: 27px;
  }

  .blog-controls-section {
    padding-top: 70px;
  }

  .blog-controls {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .blog-controls-heading h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .blog-articles-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-card {
    grid-column: auto;
  }

  .blog-featured-card .blog-card-image {
    min-height: 330px;
  }

  .blog-featured-card .blog-card-content {
    padding: 30px;
  }

  .blog-featured-card .blog-card-content h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .blog-card-image {
    min-height: 270px;
  }

  .article-visual-window {
    width: 78%;
    min-height: 230px;
  }
}

@media (max-width: 480px) {
  .blog-visual {
    transform: none !important;
  }

  .blog-floating-story {
    width: 112px;
  }

  .blog-floating-story > span,
  .blog-floating-story small {
    display: none;
  }

  .blog-story-one {
    left: 8px;
  }

  .blog-story-two {
    right: 7px;
  }

  .blog-story-three {
    right: 18px;
  }

  .blog-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-filter {
    width: 100%;
  }

  .blog-card-content,
  .blog-featured-card .blog-card-content {
    padding: 25px 21px;
  }

  .article-visual-window {
    width: 85%;
    padding-left: 23px;
    padding-right: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-core,
  .blog-floating-story,
  .blog-signal,
  .article-ai-lines span {
    animation: none !important;
  }

  .blog-visual {
    transition: none;
  }
}

/* =========================================================
   HOMEPAGE LIQUID CLOUD HERO
   ========================================================= */

.hero-visual-shell.liquid-cloud-visual {
  width: min(620px, 110%);
  aspect-ratio: 1 / 1;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
}

.liquid-cloud-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.liquid-cloud-aura {
  position: absolute;
  inset: 15%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 45%, rgba(111, 95, 255, 0.62), rgba(62, 43, 170, 0.22) 44%, transparent 72%);
  filter: blur(52px);
  opacity: 0.72;
  animation: liquidAuraBreath 4.8s ease-in-out infinite;
}

.liquid-cloud-image {
  position: relative;
  z-index: 3;
  width: 108%;
  height: 108%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter:
    saturate(1.08)
    contrast(1.04)
    drop-shadow(0 28px 65px rgba(55, 36, 160, 0.34));
  -webkit-mask-image: radial-gradient(circle at center, #000 51%, rgba(0, 0, 0, 0.96) 66%, transparent 82%);
  mask-image: radial-gradient(circle at center, #000 51%, rgba(0, 0, 0, 0.96) 66%, transparent 82%);
  animation: liquidCloudDrift 6.8s ease-in-out infinite;
}

.liquid-cloud-ring {
  position: absolute;
  z-index: 0;
  inset: 17%;
  border-radius: 50%;
  border: 1px solid rgba(160, 142, 255, 0.24);
  box-shadow:
    inset 0 0 28px rgba(104, 79, 255, 0.08),
    0 0 28px rgba(72, 221, 255, 0.07);
  pointer-events: none;
}

.liquid-cloud-ring-one {
  transform: rotateX(67deg) rotateZ(-8deg);
  animation: liquidRingSpin 18s linear infinite;
}

.liquid-cloud-ring-two {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(74, 222, 255, 0.2);
  transform: rotateY(69deg) rotateZ(20deg);
  animation: liquidRingSpinReverse 24s linear infinite;
}

.liquid-cloud-glint {
  position: absolute;
  z-index: 4;
  top: 22%;
  left: 18%;
  width: 36%;
  height: 12%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  filter: blur(14px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(-26deg);
  pointer-events: none;
  animation: liquidGlint 5.8s ease-in-out infinite 1.2s;
}

.liquid-particle {
  position: absolute;
  z-index: 5;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b7f6ff;
  box-shadow:
    0 0 13px rgba(90, 229, 255, 0.95),
    0 0 30px rgba(125, 92, 255, 0.75);
  animation: liquidParticleFloat 5s ease-in-out infinite;
}

.liquid-particle-one {
  left: 16%;
  top: 32%;
}

.liquid-particle-two {
  right: 14%;
  top: 42%;
  width: 5px;
  height: 5px;
  animation-delay: -1.7s;
}

.liquid-particle-three {
  left: 28%;
  bottom: 23%;
  width: 4px;
  height: 4px;
  animation-delay: -3.2s;
}

@keyframes liquidCloudDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 26px) rotate(-0.8deg) scale(1);
    filter: saturate(1.04) contrast(1.03) drop-shadow(0 28px 65px rgba(55, 36, 160, 0.3));
  }

  48% {
    transform: translate3d(0, -14px, 42px) rotate(0.9deg) scale(1.025, 0.992);
    filter: saturate(1.18) contrast(1.06) drop-shadow(0 36px 86px rgba(63, 43, 188, 0.44));
  }
}

@keyframes liquidAuraBreath {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

@keyframes liquidRingSpin {
  to {
    transform: rotateX(67deg) rotateZ(352deg);
  }
}

@keyframes liquidRingSpinReverse {
  to {
    transform: rotateY(69deg) rotateZ(-340deg);
  }
}

@keyframes liquidGlint {
  0%,
  28%,
  100% {
    opacity: 0;
    transform: translate3d(-35px, 35px, 0) rotate(-26deg);
  }

  52% {
    opacity: 0.8;
  }

  72% {
    opacity: 0;
    transform: translate3d(210px, 135px, 0) rotate(-26deg);
  }
}

@keyframes liquidParticleFloat {
  0%,
  100% {
    opacity: 0.32;
    transform: translate3d(0, 8px, 0) scale(0.75);
  }

  50% {
    opacity: 1;
    transform: translate3d(7px, -13px, 24px) scale(1.2);
  }
}

/* =========================================================
   HOMEPAGE ANIMATED INTEGRATION HUB
   ========================================================= */

.integration-hub {
  position: relative;
  width: min(680px, 100%);
  min-height: 590px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 48%, rgba(112, 86, 255, 0.18), transparent 33%),
    radial-gradient(ellipse at 50% -2%, rgba(112, 93, 255, 0.27), transparent 45%);
  isolation: isolate;
}

.integration-stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0 round 42px);
  transform: translate3d(-30px, 0, 0);
  transition:
    clip-path 1.15s cubic-bezier(0.16, 0.84, 0.33, 1),
    opacity 0.75s ease,
    transform 1.15s cubic-bezier(0.16, 0.84, 0.33, 1);
}

.integration-hub.visible .integration-stage {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 42px);
  transform: translate3d(0, 0, 0);
}

.integration-top-glow {
  position: absolute;
  top: -25%;
  left: 50%;
  width: 86%;
  height: 45%;
  border-radius: 50%;
  background: rgba(109, 91, 255, 0.36);
  filter: blur(58px);
  transform: translateX(-50%);
  opacity: 0.78;
  animation: integrationGlowPulse 5s ease-in-out infinite;
}

.integration-rotor {
  position: absolute;
  inset: 9% 7%;
  z-index: 0;
  pointer-events: none;
  animation: integrationRotorSpin 18s linear infinite;
}

.integration-rotor span {
  position: absolute;
  inset: 15% 4%;
  border: 1px solid rgba(122, 102, 255, 0.36);
  border-left-color: rgba(94, 226, 255, 0.68);
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(24deg);
  box-shadow: 0 0 18px rgba(101, 77, 255, 0.08);
}

.integration-rotor span:last-child {
  inset: 5% 18%;
  border-color: rgba(178, 159, 255, 0.28);
  border-right-color: rgba(88, 224, 255, 0.52);
  border-top-color: transparent;
  transform: rotate(-38deg);
}

.integration-connectors {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.integration-link {
  fill: none;
  stroke: rgba(122, 104, 255, 0.7);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-dasharray: 5 12;
  filter: drop-shadow(0 0 4px rgba(92, 219, 255, 0.42));
  animation: integrationSignalFlow 2.8s linear infinite;
}

.link-two {
  animation-delay: -0.7s;
}

.link-three {
  animation-delay: -1.4s;
}

.link-four {
  animation-delay: -2.1s;
}

.integration-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  border: 1px solid rgba(213, 202, 255, 0.42);
  background:
    radial-gradient(circle at 35% 25%, rgba(218, 211, 255, 0.28), transparent 26%),
    radial-gradient(circle at 50% 56%, rgba(95, 73, 222, 0.58), rgba(17, 17, 43, 0.94) 67%);
  box-shadow:
    inset 0 0 34px rgba(177, 159, 255, 0.2),
    0 0 45px rgba(95, 74, 224, 0.43),
    0 0 95px rgba(77, 59, 192, 0.24);
  transform: translate(-50%, -50%);
  animation: integrationCoreFloat 4.6s ease-in-out infinite;
}

.integration-core::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 50%;
  border: 1px dashed rgba(132, 112, 255, 0.66);
  animation: integrationCoreRing 12s linear infinite;
}

.integration-core-pulse {
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(111, 91, 255, 0.42);
  animation: integrationCorePulse 2.8s ease-out infinite;
}

.integration-core-logo {
  position: relative;
  width: 142px;
  height: 96px;
  overflow: hidden;
}

.integration-core-logo img {
  position: absolute;
  left: calc(50% + 16px);
  top: -15px;
  width: 360px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.integration-core > span {
  position: relative;
  z-index: 2;
  margin-top: -9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.integration-node {
  position: absolute;
  z-index: 6;
  width: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
  animation: integrationNodeFloat 4.8s ease-in-out infinite;
}

.integration-icon {
  position: relative;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(157, 139, 255, 0.42);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.1), transparent 28%),
    rgba(13, 13, 35, 0.83);
  box-shadow:
    inset 0 0 24px rgba(128, 106, 255, 0.08),
    0 14px 35px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(105, 82, 255, 0.12);
  backdrop-filter: blur(12px);
}

.integration-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.integration-icon svg {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
}

.integration-node > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.integration-facebook {
  left: 19%;
  top: 22%;
}

.integration-instagram {
  left: 80%;
  top: 20%;
  animation-delay: -1.2s;
}

.integration-tiktok {
  left: 20%;
  top: 78%;
  animation-delay: -2.4s;
}

.integration-ai-engine {
  left: 79%;
  top: 77%;
  animation-delay: -3.6s;
}

.integration-icon-dark {
  background: rgba(5, 6, 15, 0.94);
}

.integration-ai-icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: #b8c8ff;
  stroke-width: 1.4;
  filter: drop-shadow(0 0 8px rgba(139, 177, 255, 0.66));
}

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

@keyframes integrationSignalFlow {
  to {
    stroke-dashoffset: -34;
  }
}

@keyframes integrationCoreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-8px) scale(1.025);
  }
}

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

@keyframes integrationCorePulse {
  0% {
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(111, 91, 255, 0.42);
  }

  78%,
  100% {
    opacity: 0;
    box-shadow: 0 0 0 28px rgba(111, 91, 255, 0);
  }
}

@keyframes integrationNodeFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes integrationGlowPulse {
  0%,
  100% {
    opacity: 0.52;
    transform: translateX(-50%) scale(0.94);
  }

  50% {
    opacity: 0.86;
    transform: translateX(-50%) scale(1.08);
  }
}

@media (max-width: 1100px) {
  .hero-visual-shell.liquid-cloud-visual {
    width: min(590px, 92vw);
  }
}

@media (max-width: 1040px) {
  .integration-hub {
    width: min(680px, 100%);
    margin-top: 34px;
  }
}

@media (max-width: 760px) {
  .hero-visual-shell.liquid-cloud-visual {
    width: min(450px, 108vw);
  }

  .liquid-cloud-image {
    width: 112%;
    height: 112%;
  }

  .integration-hub {
    min-height: 460px;
    border-radius: 30px;
  }

  .integration-stage {
    clip-path: inset(0 100% 0 0 round 30px);
  }

  .integration-hub.visible .integration-stage {
    clip-path: inset(0 0 0 0 round 30px);
  }

  .integration-core {
    width: 142px;
    height: 142px;
  }

  .integration-core-logo {
    width: 112px;
    height: 75px;
  }

  .integration-core-logo img {
    left: calc(50% + 13px);
    top: -12px;
    width: 286px;
  }

  .integration-core > span {
    font-size: 8px;
  }

  .integration-node {
    width: 94px;
    gap: 7px;
  }

  .integration-icon {
    width: 66px;
    height: 66px;
  }

  .integration-icon svg {
    width: 35px;
    height: 35px;
  }

  .integration-node > span {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 330px;
  }

  .integration-hub {
    min-height: 400px;
  }

  .integration-core {
    width: 122px;
    height: 122px;
  }

  .integration-core-logo {
    width: 96px;
    height: 64px;
  }

  .integration-core-logo img {
    left: calc(50% + 11px);
    top: -10px;
    width: 244px;
  }

  .integration-core > span {
    display: none;
  }

  .integration-icon {
    width: 58px;
    height: 58px;
  }

  .integration-icon svg,
  .integration-ai-icon svg {
    width: 31px;
    height: 31px;
  }

  .integration-node > span {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .liquid-cloud-image,
  .liquid-cloud-aura,
  .liquid-cloud-ring,
  .liquid-cloud-glint,
  .liquid-particle,
  .integration-top-glow,
  .integration-rotor,
  .integration-link,
  .integration-core,
  .integration-core::before,
  .integration-core-pulse,
  .integration-node {
    animation: none !important;
  }

  .integration-stage,
  .integration-hub.visible .integration-stage {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   HOMEPAGE REFINEMENT — TRUE LIQUID CLOUD + INTELLIO MOTION
   ========================================================= */

.hero-visual-shell.liquid-cloud-visual {
  width: min(640px, 112%);
  aspect-ratio: 1 / 0.86;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: none;
}

.liquid-cloud-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.liquid-cloud-backlight {
  position: absolute;
  z-index: -2;
  width: 72%;
  aspect-ratio: 1.35 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 44%, rgba(159, 138, 255, 0.55), rgba(76, 50, 205, 0.24) 42%, transparent 72%);
  filter: blur(58px);
  opacity: 0.82;
  animation: liquidBacklightBreath 4.6s ease-in-out infinite;
}

.liquid-cloud-svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 96%;
  height: auto;
  overflow: visible;
  transform: translateZ(0);
  will-change: transform;
}

.liquid-svg-shimmer {
  mix-blend-mode: screen;
}

.liquid-spark {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eafcff;
  box-shadow:
    0 0 12px rgba(128, 229, 255, 0.95),
    0 0 27px rgba(119, 84, 255, 0.75);
  animation: liquidSparkPulse 3.8s ease-in-out infinite;
}

.liquid-spark-one {
  left: 14%;
  top: 35%;
}

.liquid-spark-two {
  right: 13%;
  top: 43%;
  width: 4px;
  height: 4px;
  animation-delay: -1.25s;
}

.liquid-spark-three {
  right: 25%;
  bottom: 21%;
  width: 5px;
  height: 5px;
  animation-delay: -2.5s;
}

@keyframes liquidSurfaceFlow {
  0%,
  100% {
    background-position: 10% 18%;
  }

  40% {
    background-position: 88% 45%;
  }

  72% {
    background-position: 42% 88%;
  }
}

@keyframes liquidHighlightSweep {
  0%,
  18% {
    background-position: 120% 0;
    opacity: 0.18;
  }

  54% {
    opacity: 0.96;
  }

  82%,
  100% {
    background-position: -120% 0;
    opacity: 0.22;
  }
}

@keyframes liquidBacklightBreath {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

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

  50% {
    opacity: 1;
    transform: scale(1.24);
  }
}

/* Character-by-character reveal matching Intellio's split-text motion */

.hero-split-text {
  --hero-group-delay: 0ms;
}

.hero-reveal-word {
  display: inline-flex;
  white-space: nowrap;
}

.hero-reveal-char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 34px, 0) rotate(5deg);
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
}

.hero-reveal-space {
  display: inline-block;
  width: 0.28em;
}

body.hero-intro-play .hero-reveal-char {
  animation: intellioCharacterReveal 0.82s cubic-bezier(0.16, 0.84, 0.33, 1) forwards;
  animation-delay: calc(var(--hero-group-delay) + var(--hero-char-delay));
}

.hero-intro-pill .hero-split-text,
.hero-intro-pill .hero-reveal-word,
.hero-intro-pill .hero-reveal-char,
.hero-intro-pill .hero-reveal-space {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-actions .btn {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
}

body.hero-intro-play .hero-actions .btn:first-child {
  animation: intellioButtonReveal 0.72s cubic-bezier(0.16, 0.84, 0.33, 1) forwards 1.04s;
}

body.hero-intro-play .hero-actions .btn:last-child {
  animation: intellioButtonReveal 0.72s cubic-bezier(0.16, 0.84, 0.33, 1) forwards 1.18s;
}

@keyframes intellioCharacterReveal {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 34px, 0) rotate(5deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

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

/* Cleaner integration composition based closely on the supplied reference */

.integration-hub {
  width: min(660px, 100%);
  min-height: 540px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.integration-stage {
  overflow: visible;
  clip-path: inset(0 100% 0 0);
}

.integration-hub.visible .integration-stage {
  clip-path: inset(0 0 0 0);
}

.integration-top-glow {
  top: -21%;
  width: 92%;
  height: 34%;
  border-radius: 50%;
  background: rgba(100, 91, 255, 0.58);
  filter: blur(47px);
  opacity: 0.8;
}

.integration-core-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 202px;
  height: 202px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: integrationCoreOrbitSpin 18s linear infinite;
}

.integration-core-orbit span:first-child {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(126, 111, 255, 0.72);
  filter: drop-shadow(0 0 7px rgba(100, 216, 255, 0.22));
}

.integration-core-orbit span:last-child {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  border: 1px solid rgba(92, 224, 255, 0.16);
}

.integration-connectors {
  inset: 0;
}

.integration-arc {
  fill: none;
  stroke: url(#integration-line-gradient);
  stroke-width: 1.7;
  stroke-linecap: round;
  opacity: 0.84;
  filter: drop-shadow(0 0 4px rgba(77, 213, 255, 0.18));
}

.integration-link {
  fill: none;
  stroke: rgba(123, 108, 255, 0.74);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: 5 11;
  opacity: 0.78;
  filter: drop-shadow(0 0 4px rgba(107, 210, 255, 0.32));
  animation: integrationSignalFlow 2.8s linear infinite;
}

.integration-core {
  width: 164px;
  height: 164px;
  gap: 0;
  animation: none;
  transform: translate(-50%, -50%);
  border-color: rgba(211, 201, 255, 0.35);
  background:
    radial-gradient(circle at 36% 24%, rgba(224, 218, 255, 0.22), transparent 26%),
    radial-gradient(circle at 50% 58%, rgba(78, 61, 176, 0.58), rgba(13, 13, 34, 0.98) 70%);
  box-shadow:
    inset 0 0 30px rgba(177, 159, 255, 0.14),
    0 0 42px rgba(92, 72, 220, 0.36),
    0 0 88px rgba(72, 55, 177, 0.18);
}

.integration-core::before {
  display: none;
}

.integration-core-logo {
  width: 112px;
  height: auto;
  aspect-ratio: 1000 / 655;
  overflow: visible;
}

.integration-core-logo img {
  position: static;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.16));
}

.integration-node {
  width: 108px;
  gap: 8px;
  animation: none;
}

.integration-icon {
  width: 76px;
  height: 76px;
  border-color: rgba(139, 120, 255, 0.44);
  background: rgba(10, 10, 30, 0.76);
  box-shadow:
    inset 0 0 22px rgba(128, 106, 255, 0.07),
    0 10px 28px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(105, 82, 255, 0.1);
}

.integration-icon svg {
  width: 39px;
  height: 39px;
}

.integration-node > span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
}

.integration-facebook {
  left: 23%;
  top: 19%;
}

.integration-instagram {
  left: 77%;
  top: 19%;
}

.integration-tiktok {
  left: 23%;
  top: 81%;
}

.integration-ai-engine {
  left: 77%;
  top: 81%;
}

@keyframes integrationCoreOrbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .hero-visual-shell.liquid-cloud-visual {
    width: min(610px, 94vw);
  }
}

@media (max-width: 760px) {
  .hero-visual-shell.liquid-cloud-visual {
    width: min(470px, 108vw);
  }

  .liquid-cloud-svg {
    width: 100%;
  }

  .integration-hub {
    min-height: 445px;
  }

  .integration-core {
    width: 132px;
    height: 132px;
  }

  .integration-core-orbit {
    width: 162px;
    height: 162px;
  }

  .integration-core-logo {
    width: 88px;
  }

  .integration-node {
    width: 84px;
  }

  .integration-icon {
    width: 62px;
    height: 62px;
  }

  .integration-icon svg {
    width: 32px;
    height: 32px;
  }

  .integration-node > span {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 320px;
  }

  .integration-hub {
    min-height: 390px;
  }

  .integration-core {
    width: 112px;
    height: 112px;
  }

  .integration-core-orbit {
    width: 138px;
    height: 138px;
  }

  .integration-core-logo {
    width: 74px;
  }

  .integration-icon {
    width: 54px;
    height: 54px;
  }

  .integration-node > span {
    display: block;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .liquid-cloud-backlight,
  .liquid-spark,
  .integration-core-orbit {
    animation: none !important;
  }

  .hero-reveal-char,
  .hero-actions .btn {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
  }
}

/* =========================================================
   PUBLISHER PROOF — EXPERIENCE, SCALE & TRUST
   ========================================================= */

.publisher-proof-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.publisher-proof-section::before,
.publisher-proof-section::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 108, 255, 0.42), transparent);
}

.publisher-proof-section::before {
  top: 0;
}

.publisher-proof-section::after {
  bottom: 0;
}

.publisher-proof-glow {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
}

.publisher-proof-glow-one {
  top: 6%;
  left: -13%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(72, 208, 255, 0.13), transparent 68%);
}

.publisher-proof-glow-two {
  right: -16%;
  bottom: 0;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(120, 80, 255, 0.2), transparent 68%);
}

.publisher-proof-shell {
  position: relative;
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: start;
}

.publisher-proof-intro {
  position: sticky;
  top: 130px;
}

.publisher-proof-intro h2 {
  max-width: 720px;
  margin-top: 26px;
  font-size: clamp(52px, 5.6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.publisher-proof-intro h2 span {
  display: block;
  color: transparent;
  background:
    linear-gradient(100deg, #ffffff 0%, #cfc3ff 34%, #7564ff 68%, #58dcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.publisher-proof-intro > p {
  max-width: 665px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 18px;
  line-height: 1.78;
}

.publisher-proof-metrics {
  margin-top: 48px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.publisher-proof-metric {
  min-width: 0;
  padding-right: 12px;
}

.publisher-proof-metric + .publisher-proof-metric {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.publisher-proof-metric strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1;
  letter-spacing: -0.065em;
  text-shadow: 0 0 22px rgba(125, 99, 255, 0.34);
}

.publisher-proof-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.publisher-proof-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.publisher-proof-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 0%, rgba(139, 108, 255, 0.17), transparent 37%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02) 58%),
    rgba(8, 8, 22, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 60px rgba(0, 0, 0, 0.21);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.55s ease,
    box-shadow 0.55s ease;
}

.publisher-proof-card:nth-child(even) {
  transform: translateY(42px);
}

.publisher-proof-card::before {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 216, 255, 0.12), transparent 67%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.publisher-proof-card::after {
  content: "";
  position: absolute;
  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;
}

.publisher-proof-card:hover {
  transform: translateY(-9px);
  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);
}

.publisher-proof-card:nth-child(even):hover {
  transform: translateY(33px);
}

.publisher-proof-card:hover::before {
  transform: scale(1.35);
}

.publisher-proof-card:hover::after {
  opacity: 1;
  transform: translateX(55%);
}

.publisher-proof-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 62px;
}

.publisher-proof-index {
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.publisher-proof-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 108, 255, 0.3);
  border-radius: 16px;
  color: #d9d2ff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 38%),
    rgba(120, 88, 255, 0.09);
  box-shadow:
    inset 0 0 20px rgba(139, 108, 255, 0.08),
    0 0 24px rgba(99, 77, 255, 0.08);
}

.publisher-proof-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.publisher-proof-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.publisher-proof-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.68;
}

@media (max-width: 1120px) {
  .publisher-proof-shell {
    grid-template-columns: 1fr;
  }

  .publisher-proof-intro {
    position: static;
  }

  .publisher-proof-intro h2,
  .publisher-proof-intro > p {
    max-width: 800px;
  }

  .publisher-proof-metric strong {
    font-size: clamp(32px, 5vw, 46px);
  }
}

@media (max-width: 700px) {
  .publisher-proof-list {
    grid-template-columns: 1fr;
  }

  .publisher-proof-card,
  .publisher-proof-card:nth-child(even),
  .publisher-proof-card:hover,
  .publisher-proof-card:nth-child(even):hover {
    transform: none;
  }

  .publisher-proof-card {
    min-height: 270px;
  }

  .publisher-proof-card-top {
    margin-bottom: 44px;
  }
}

@media (max-width: 520px) {
  .publisher-proof-intro h2 {
    font-size: clamp(45px, 13.5vw, 64px);
  }

  .publisher-proof-intro > p {
    font-size: 16px;
  }

  .publisher-proof-metrics {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .publisher-proof-metric {
    padding: 16px 0;
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
  }

  .publisher-proof-metric + .publisher-proof-metric {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .publisher-proof-metric strong {
    margin-bottom: 0;
  }

  .publisher-proof-card {
    padding: 26px;
    border-radius: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .publisher-proof-card,
  .publisher-proof-card::before,
  .publisher-proof-card::after {
    transition: none !important;
  }
}

/* =========================================================
   CONTROLLED, CONTENT-SAFE SCROLL MOTION
   ========================================================= */

.motion-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 2px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #54e1ff, #8b6cff 48%, #d9cfff 78%, #42f5b3);
  box-shadow:
    0 0 12px rgba(101, 224, 255, 0.72),
    0 0 22px rgba(139, 108, 255, 0.45);
  will-change: transform;
}

.reveal {
  opacity: 1;
  transform: none;
  translate: 0 0;
  scale: 1;
  filter: none;
}

.motion-enabled .reveal.motion-reveal {
  --motion-delay: 0ms;
  --motion-duration: 0.92s;
  opacity: 0;
  translate: 0 26px;
  scale: 1;
  filter: blur(2px);
  transition:
    opacity 0.78s ease-out var(--motion-delay),
    translate var(--motion-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay),
    scale var(--motion-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay),
    filter 0.72s ease-out var(--motion-delay);
  will-change: opacity, translate, scale, filter;
}

.motion-enabled .reveal.motion-copy-left {
  translate: -34px 8px;
}

.motion-enabled .reveal.motion-visual-right {
  translate: 38px 10px;
}

.motion-enabled .reveal.motion-title {
  translate: 0 22px;
  filter: blur(1.5px);
}

.motion-enabled .reveal.motion-card-left {
  translate: -28px 18px;
}

.motion-enabled .reveal.motion-card-rise {
  translate: 0 24px;
}

.motion-enabled .reveal.motion-card-right {
  translate: 28px 18px;
}

.motion-enabled .reveal.motion-soft-scale {
  translate: 0 18px;
  scale: 0.985;
}

.motion-enabled .reveal.motion-hero-copy {
  --motion-delay: 70ms;
  --motion-duration: 1.12s;
  translate: -28px 0;
  filter: blur(3px);
}

.motion-enabled .reveal.motion-hero-visual {
  --motion-delay: 190ms;
  --motion-duration: 1.18s;
  translate: 32px 10px;
  scale: 0.99;
  filter: blur(2px);
}

.motion-enabled .reveal.motion-reveal.visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: none;
}

@media (max-width: 760px) {
  .motion-enabled .reveal.motion-reveal {
    --motion-duration: 0.72s;
    translate: 0 18px;
    transition:
      opacity 0.62s ease-out var(--motion-delay),
      translate var(--motion-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay),
      scale var(--motion-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay),
      filter 0.58s ease-out var(--motion-delay);
  }

  .motion-enabled .reveal.motion-copy-left,
  .motion-enabled .reveal.motion-card-left,
  .motion-enabled .reveal.motion-hero-copy {
    translate: -20px 8px;
  }

  .motion-enabled .reveal.motion-visual-right,
  .motion-enabled .reveal.motion-card-right,
  .motion-enabled .reveal.motion-hero-visual {
    translate: 20px 8px;
  }

  .motion-enabled .reveal.motion-soft-scale {
    translate: 0 14px;
    scale: 0.992;
  }

  .motion-enabled .reveal.motion-reveal.visible {
    translate: 0 0;
    scale: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-enabled .reveal.motion-reveal,
  .motion-enabled .reveal.motion-reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
    scale: 1 !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =========================================================
   FUTURISTIC PUBLISHING SIGNAL STAGE
   ========================================================= */

.hero-showcase.signal-stage {
  width: min(1340px, 100%);
  min-height: 0;
  margin: 78px auto 0;
  isolation: isolate;
}

.hero-showcase.signal-stage::before {
  top: 48%;
  width: min(1080px, 90%);
  height: 520px;
  background:
    radial-gradient(circle at 50% 50%, rgba(119, 87, 255, 0.28), transparent 58%),
    radial-gradient(circle at 20% 45%, rgba(66, 245, 179, 0.1), transparent 32%),
    radial-gradient(circle at 82% 42%, rgba(84, 225, 255, 0.12), transparent 34%);
  filter: blur(28px);
}

.signal-stage-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(149, 125, 255, 0.38);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(139, 108, 255, 0.1), transparent 32%),
    linear-gradient(315deg, rgba(84, 225, 255, 0.055), transparent 28%),
    rgba(5, 7, 18, 0.92);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 80px rgba(112, 81, 255, 0.09) inset;
  backdrop-filter: blur(28px);
}

.signal-stage-frame::before {
  content: "";
  position: absolute;
  z-index: 8;
  top: 0;
  left: -28%;
  width: 22%;
  height: 100%;
  pointer-events: none;
  opacity: 0.28;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(133, 232, 255, 0.12),
    transparent
  );
  animation: signalStageScan 9s ease-in-out infinite;
}

.signal-stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(139, 108, 255, 0.12);
}

@keyframes signalStageScan {
  0%,
  18% {
    left: -28%;
  }

  72%,
  100% {
    left: 116%;
  }
}

.signal-stage-header {
  position: relative;
  z-index: 9;
  min-height: 82px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
}

.signal-stage-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.signal-stage-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(162, 140, 255, 0.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), transparent 28%),
    rgba(139, 108, 255, 0.13);
  box-shadow:
    0 0 28px rgba(139, 108, 255, 0.22),
    inset 0 0 20px rgba(139, 108, 255, 0.12);
}

.signal-stage-mark img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.signal-stage-brand div {
  display: grid;
  gap: 3px;
}

.signal-stage-brand span,
.signal-stage-brand strong {
  line-height: 1;
}

.signal-stage-brand span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-stage-brand strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.signal-stage-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-stage-status small {
  margin-left: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.signal-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42f5b3;
  box-shadow: 0 0 0 5px rgba(66, 245, 179, 0.08), 0 0 20px rgba(66, 245, 179, 0.82);
  animation: signalLivePulse 1.8s ease-in-out infinite;
}

@keyframes signalLivePulse {
  50% {
    box-shadow:
      0 0 0 9px rgba(66, 245, 179, 0),
      0 0 25px rgba(66, 245, 179, 1);
  }
}

.signal-stage-intro {
  position: relative;
  z-index: 6;
  padding: 32px 34px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 44px;
}

.signal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #8cf7d0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signal-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.signal-stage-intro h2 {
  max-width: 800px;
  font-size: clamp(34px, 4.2vw, 57px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.signal-stage-intro p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.72;
}

.signal-stage-canvas {
  position: relative;
  z-index: 5;
  height: 430px;
  margin: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 18, 42, 0.72), rgba(7, 9, 22, 0.92));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow:
    inset 0 0 90px rgba(85, 57, 205, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.2);
}

.signal-stage-canvas::before,
.signal-stage-canvas::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(12px);
}

.signal-stage-canvas::before {
  left: 33%;
  top: 8%;
  width: 38%;
  height: 80%;
  background: radial-gradient(circle, rgba(123, 94, 255, 0.2), transparent 66%);
}

.signal-stage-canvas::after {
  right: -4%;
  top: 18%;
  width: 34%;
  height: 64%;
  background: radial-gradient(circle, rgba(84, 225, 255, 0.08), transparent 68%);
}

.signal-grid-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(139, 108, 255, 0.025) 48%,
    rgba(139, 108, 255, 0.07) 49%,
    transparent 50%
  );
  background-size: 100% 92px;
  animation: signalGridMove 6s linear infinite;
}

@keyframes signalGridMove {
  to {
    background-position-y: 92px;
  }
}

.signal-routing-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.signal-route-lines use {
  fill: none;
  stroke: url("#signal-route-gradient");
  stroke-width: 1.4;
  stroke-dasharray: 5 9;
  opacity: 0.4;
  vector-effect: non-scaling-stroke;
  animation: signalRouteFlow 8s linear infinite;
}

@keyframes signalRouteFlow {
  to {
    stroke-dashoffset: -140;
  }
}

.signal-source,
.signal-outcome {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(8, 11, 27, 0.84);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.signal-source {
  left: 2.8%;
  top: 52px;
  width: 25.5%;
  min-height: 326px;
  padding: 23px;
  border-radius: 23px;
}

.signal-panel-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-panel-label > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 108, 255, 0.28);
  border-radius: 9px;
  color: #b9aaff;
  background: rgba(139, 108, 255, 0.08);
  letter-spacing: 0;
}

.signal-source-live {
  width: max-content;
  margin: 25px 0 14px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(66, 245, 179, 0.16);
  border-radius: 999px;
  color: #8cf7d0;
  background: rgba(66, 245, 179, 0.055);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-source-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42f5b3;
  box-shadow: 0 0 12px #42f5b3;
}

.signal-source h3 {
  max-width: 250px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.signal-source > p {
  max-width: 245px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.55;
}

.signal-source-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.signal-source-meta span {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.signal-waveform {
  height: 36px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.signal-waveform i {
  width: 3px;
  height: 12px;
  flex: 1;
  max-width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, #42f5b3, #7d6cff);
  box-shadow: 0 0 8px rgba(66, 245, 179, 0.4);
  animation: signalWave 1.5s ease-in-out infinite;
}

.signal-waveform i:nth-child(2n) {
  animation-delay: -0.35s;
}

.signal-waveform i:nth-child(3n) {
  animation-delay: -0.75s;
}

.signal-waveform i:nth-child(4n) {
  animation-delay: -1.05s;
}

@keyframes signalWave {
  0%,
  100% {
    height: 8px;
    opacity: 0.45;
  }

  50% {
    height: 30px;
    opacity: 1;
  }
}

.signal-ai-zone {
  position: absolute;
  z-index: 4;
  left: 36%;
  top: 18px;
  width: 30%;
  height: 394px;
}

.signal-ai-orbit {
  position: absolute;
  left: 50%;
  top: 47%;
  border: 1px solid rgba(139, 108, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-ai-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #54e1ff;
  box-shadow: 0 0 15px #54e1ff;
}

.orbit-one {
  width: 192px;
  height: 192px;
  border-style: dashed;
  animation: signalOrbitSpin 18s linear infinite;
}

.orbit-two {
  width: 252px;
  height: 252px;
  border-color: rgba(84, 225, 255, 0.14);
  animation: signalOrbitSpin 26s linear infinite reverse;
}

.orbit-three {
  width: 318px;
  height: 318px;
  border-color: rgba(139, 108, 255, 0.1);
  animation: signalOrbitSpin 36s linear infinite;
}

@keyframes signalOrbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.signal-ai-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 47%;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(190, 177, 255, 0.5);
  border-radius: 43%;
  transform: translate(-50%, -50%) rotate(45deg);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.26), transparent 24%),
    radial-gradient(circle at 50% 60%, rgba(84, 225, 255, 0.14), transparent 50%),
    linear-gradient(145deg, rgba(139, 108, 255, 0.5), rgba(26, 20, 70, 0.88));
  box-shadow:
    0 0 0 12px rgba(139, 108, 255, 0.05),
    0 0 55px rgba(139, 108, 255, 0.48),
    inset 0 0 40px rgba(255, 255, 255, 0.08);
  animation: signalCoreMorph 8s ease-in-out infinite;
}

.signal-ai-core::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.signal-ai-core img {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  object-fit: contain;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.22));
}

.signal-ai-core-shine {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    transparent,
    rgba(84, 225, 255, 0.22),
    transparent 30%,
    rgba(139, 108, 255, 0.34),
    transparent 60%
  );
  animation: signalCoreShine 7s linear infinite;
}

@keyframes signalCoreMorph {
  0%,
  100% {
    border-radius: 43%;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }

  50% {
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg) scale(1.045);
  }
}

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

.signal-ai-caption {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  width: 100%;
  display: grid;
  gap: 5px;
  text-align: center;
  transform: translateX(-50%);
}

.signal-ai-caption span {
  color: #b5a7ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-ai-caption strong {
  font-size: 11px;
  letter-spacing: -0.01em;
}

.signal-decision-chip {
  position: absolute;
  z-index: 6;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(8, 10, 27, 0.86);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  animation: signalChipFloat 4.8s ease-in-out infinite;
}

.chip-tone {
  left: 0;
  top: 64px;
  color: #8cf7d0;
}

.chip-time {
  right: -2px;
  top: 90px;
  animation-delay: -1.6s;
}

.chip-format {
  right: 6px;
  bottom: 78px;
  color: #85e8ff;
  animation-delay: -3.1s;
}

@keyframes signalChipFloat {
  50% {
    translate: 0 -6px;
  }
}

.signal-outcome {
  right: 2.8%;
  top: 35px;
  width: 27.5%;
  min-height: 360px;
  padding: 22px;
  border-radius: 23px;
}

.signal-outcome::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.34;
  background: linear-gradient(145deg, rgba(84, 225, 255, 0.22), transparent 42%);
}

.signal-channel-row {
  min-height: 78px;
  margin-top: 12px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    translate 0.3s ease;
}

.signal-channel-row:hover {
  translate: -4px 0;
  border-color: rgba(139, 108, 255, 0.25);
  background: rgba(139, 108, 255, 0.055);
}

.signal-channel-row > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.signal-channel-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: white;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.signal-channel-icon.publisher {
  background: linear-gradient(145deg, #42f5b3, #168f76);
}

.signal-channel-icon.social {
  background: linear-gradient(145deg, #9e82ff, #5a46dc);
}

.signal-channel-icon.revenue {
  background:
    linear-gradient(135deg, rgba(255, 169, 77, 0.34), rgba(255, 64, 112, 0.18)),
    #111425;
}

.signal-channel-row p {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.signal-channel-row p strong {
  font-size: 11px;
}

.signal-channel-row p small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-channel-state {
  padding: 6px 8px;
  flex: 0 0 auto;
  border: 1px solid rgba(66, 245, 179, 0.15);
  border-radius: 999px;
  color: #8cf7d0;
  background: rgba(66, 245, 179, 0.045);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-impact-bar {
  position: relative;
  z-index: 9;
  margin: 20px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: minmax(270px, 1.45fr) repeat(3, minmax(130px, 0.65fr));
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(139, 108, 255, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.022);
}

.signal-impact-copy {
  display: grid;
  gap: 5px;
}

.signal-impact-copy span {
  color: #a999ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-impact-copy strong {
  max-width: 330px;
  font-size: 13px;
  line-height: 1.35;
}

.signal-impact-metric {
  min-height: 62px;
  padding-left: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.signal-impact-metric > span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.signal-impact-metric strong {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.signal-impact-metric em {
  padding-bottom: 2px;
  color: #8cf7d0;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Truly seamless ecosystem marquee */

.logo-marquee {
  padding: 28px 0;
}

.marquee-track {
  gap: 0;
  animation-duration: 24s;
}

.marquee-group {
  width: max(100vw, 760px);
  min-width: max(100vw, 760px);
  padding-right: 0;
  justify-content: space-around;
  gap: 0;
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.marquee-group span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border: 1px solid rgba(139, 108, 255, 0.9);
  transform: rotate(45deg);
  background: rgba(139, 108, 255, 0.28);
  box-shadow: 0 0 14px rgba(139, 108, 255, 0.8);
}

@media (max-width: 1100px) {
  .hero-showcase.signal-stage {
    min-height: 0;
  }

  .signal-stage-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .signal-stage-intro p {
    max-width: 720px;
  }

  .signal-stage-canvas {
    height: 730px;
  }

  .signal-routing-map {
    display: none;
  }

  .signal-source {
    left: 4%;
    top: 45px;
    width: 42%;
  }

  .signal-ai-zone {
    left: auto;
    right: 1%;
    top: 20px;
    width: 52%;
  }

  .signal-outcome {
    left: 22%;
    right: auto;
    top: auto;
    bottom: 25px;
    width: 56%;
    min-height: 300px;
  }

  .signal-channel-row {
    min-height: 66px;
  }

  .signal-impact-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-impact-copy {
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }
}

@media (max-width: 760px) {
  .hero-showcase.signal-stage {
    margin-top: 52px;
  }

  .signal-stage-frame {
    border-radius: 27px;
  }

  .signal-stage-header {
    min-height: 72px;
    padding: 15px 16px;
  }

  .signal-stage-status {
    font-size: 0;
  }

  .signal-stage-status small {
    margin-left: 0;
    font-size: 8px;
  }

  .signal-stage-intro {
    padding: 28px 18px 22px;
  }

  .signal-stage-intro h2 {
    font-size: clamp(36px, 11.5vw, 52px);
  }

  .signal-stage-canvas {
    height: auto;
    margin: 0 10px;
    padding: 16px;
    display: grid;
    gap: 18px;
    overflow: hidden;
    border-radius: 22px;
  }

  .signal-source,
  .signal-ai-zone,
  .signal-outcome {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .signal-source {
    min-height: 0;
    padding: 20px;
  }

  .signal-ai-zone {
    height: 330px;
  }

  .signal-ai-caption {
    bottom: 10px;
  }

  .orbit-three {
    width: 280px;
    height: 280px;
  }

  .signal-outcome {
    min-height: 0;
    padding: 18px;
  }

  .signal-impact-bar {
    margin: 10px;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .signal-impact-copy {
    margin-bottom: 10px;
  }

  .signal-impact-metric {
    min-height: 68px;
    padding: 13px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .marquee-group {
    width: 760px;
    min-width: 760px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-stage-frame::before,
  .signal-live-dot,
  .signal-grid-glow,
  .signal-route-lines use,
  .signal-route-particles,
  .signal-waveform i,
  .signal-ai-orbit,
  .signal-ai-core,
  .signal-ai-core-shine,
  .signal-decision-chip {
    animation: none !important;
  }

  .signal-route-particles {
    display: none;
  }

  .signal-ai-core {
    border-radius: 46%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

/* =========================================================
   SHARED HERO / PUBLISHER DNA ACCENT
   ========================================================= */

.hero-reveal-word-accent {
  color: transparent;
  background:
    linear-gradient(100deg, #ffffff 0%, #cfc3ff 34%, #7564ff 68%, #58dcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(117, 100, 255, 0.12));
}

.hero-reveal-word-accent .hero-reveal-char {
  color: inherit;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   SCROLL-DRIVEN PUBLISHING WORKFLOW
   ========================================================= */

.workflow-story {
  --workflow-progress: 0;
  position: relative;
  min-height: 460vh;
  background:
    radial-gradient(circle at 12% 32%, rgba(66, 245, 179, 0.055), transparent 24%),
    radial-gradient(circle at 82% 48%, rgba(117, 100, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #030711, #050512 54%, #080510);
  isolation: isolate;
}

.workflow-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.33;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 8%, black 92%, transparent);
}

.workflow-story::after {
  content: "";
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 108, 255, 0.34), transparent);
}

.workflow-story-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}

.workflow-story-shell {
  width: min(1540px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 120px 6vw 48px;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  gap: clamp(52px, 6vw, 104px);
}

.workflow-story-copy {
  position: relative;
  z-index: 4;
  align-self: center;
}

.workflow-story-title {
  max-width: 570px;
  margin-top: 26px;
  font-size: clamp(49px, 5.25vw, 84px);
  line-height: 0.93;
  letter-spacing: -0.078em;
}

.workflow-story-title span {
  display: block;
  color: transparent;
  background:
    linear-gradient(100deg, #ffffff 0%, #cfc3ff 34%, #7564ff 68%, #58dcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.workflow-story-lead {
  max-width: 505px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  line-height: 1.72;
}

.workflow-story-steps {
  position: relative;
  margin-top: 31px;
  display: grid;
  gap: 4px;
}

.workflow-story-steps::before {
  content: "";
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 19px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(66, 245, 179, 0.42),
    rgba(117, 100, 255, 0.28),
    rgba(84, 225, 255, 0.2)
  );
}

.workflow-story-step {
  position: relative;
  width: 100%;
  min-height: 56px;
  padding: 9px 10px 9px 55px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3px 15px;
  border: 0;
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.35);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

.workflow-story-step:hover {
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.025);
}

.workflow-story-step > span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.4);
  background: #080a17;
  font-size: 9px;
  font-weight: 900;
  transform: translateY(-50%);
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.workflow-story-step strong {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.workflow-story-step small {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.25);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.workflow-story-step.is-active {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(117, 100, 255, 0.1), transparent 88%);
  transform: translateX(7px);
}

.workflow-story-step.is-active > span {
  color: #ffffff;
  border-color: rgba(153, 132, 255, 0.55);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 27%),
    rgba(117, 100, 255, 0.18);
  box-shadow:
    0 0 0 5px rgba(117, 100, 255, 0.045),
    0 0 25px rgba(117, 100, 255, 0.18);
}

.workflow-story-step.is-active small {
  color: #8cf7d0;
}

.workflow-scroll-cue {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: calc(1 - min(var(--workflow-progress) * 5, 1));
  transition: opacity 0.2s ease;
}

.workflow-scroll-cue > span {
  position: relative;
  width: 18px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.workflow-scroll-cue > span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: #8cf7d0;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(66, 245, 179, 0.7);
  animation: workflowCueMove 1.6s ease-in-out infinite;
}

@keyframes workflowCueMove {
  0%,
  100% {
    opacity: 0.3;
    translate: 0 0;
  }

  50% {
    opacity: 1;
    translate: 0 8px;
  }
}

.workflow-deck-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  height: min(72svh, 720px);
  min-height: 540px;
  border: 1px solid rgba(139, 108, 255, 0.18);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), transparent 42%),
    rgba(5, 7, 19, 0.72);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.42),
    inset 0 0 80px rgba(89, 63, 190, 0.04);
  perspective: 1500px;
  isolation: isolate;
}

.workflow-deck-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(
      130deg,
      rgba(66, 245, 179, 0.2),
      rgba(117, 100, 255, 0.38) 45%,
      rgba(84, 225, 255, 0.12),
      transparent 82%
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.workflow-deck-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0.58;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(circle at 52% 45%, black, transparent 78%);
  mask-image: radial-gradient(circle at 52% 45%, black, transparent 78%);
}

.workflow-deck-aura {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(42px);
  opacity: 0.44;
  transition:
    background 0.85s ease,
    opacity 0.85s ease;
}

.workflow-deck-wrap[data-active="0"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(66, 245, 179, 0.16), transparent 65%);
}

.workflow-deck-wrap[data-active="1"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(117, 100, 255, 0.26), transparent 65%);
}

.workflow-deck-wrap[data-active="2"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(84, 225, 255, 0.2), transparent 65%);
}

.workflow-deck-wrap[data-active="3"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(255, 139, 83, 0.15), transparent 65%);
}

.workflow-deck-meta {
  position: absolute;
  z-index: 10;
  top: 19px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-deck-meta strong {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.workflow-deck {
  position: absolute;
  inset: 49px 22px 28px;
  transform-style: preserve-3d;
}

.workflow-story-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 16%, rgba(117, 100, 255, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(8, 10, 25, 0.94);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  opacity: 0;
  pointer-events: none;
  transform:
    translate3d(18%, 36px, -130px)
    rotateY(-8deg)
    rotateZ(2deg)
    scale(0.88);
  transform-origin: 50% 80%;
  filter: blur(2px);
  transition:
    opacity 0.68s ease,
    transform 0.9s cubic-bezier(0.16, 0.84, 0.33, 1),
    filter 0.68s ease;
  will-change: opacity, transform, filter;
}

.workflow-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.035) 48%,
    transparent 67%
  );
  transform: translateX(-80%);
  transition: transform 1.1s ease 0.18s;
}

.workflow-story-card.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotateY(0) rotateZ(0) scale(1);
  filter: none;
}

.workflow-story-card.is-active::before {
  transform: translateX(80%);
}

.workflow-story-card.is-next {
  z-index: 4;
  opacity: 0.24;
  transform:
    translate3d(5.5%, 20px, -70px)
    rotateY(-3deg)
    rotateZ(1.15deg)
    scale(0.95);
  filter: blur(0.7px);
}

.workflow-story-card.is-future {
  z-index: 3;
  opacity: 0;
  transform:
    translate3d(14%, 36px, -135px)
    rotateY(-7deg)
    rotateZ(2deg)
    scale(0.88);
}

.workflow-story-card.is-past {
  z-index: 2;
  opacity: 0;
  transform:
    translate3d(-18%, -34px, -160px)
    rotateY(9deg)
    rotateZ(-2deg)
    scale(0.84);
  filter: blur(3px);
}

.workflow-source-card {
  --workflow-card-accent: #42f5b3;
}

.workflow-ai-card {
  --workflow-card-accent: #8d79ff;
}

.workflow-publio-card {
  --workflow-card-accent: #54e1ff;
}

.workflow-cleon-card {
  --workflow-card-accent: #ff9a68;
}

.workflow-card-top {
  position: relative;
  z-index: 2;
  min-height: 59px;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.workflow-card-product {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.workflow-card-status {
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid color-mix(in srgb, var(--workflow-card-accent), transparent 78%);
  border-radius: 999px;
  color: var(--workflow-card-accent);
  background: color-mix(in srgb, var(--workflow-card-accent), transparent 95%);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.workflow-card-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  animation: workflowStatusPulse 1.8s ease-in-out infinite;
}

@keyframes workflowStatusPulse {
  50% {
    opacity: 0.35;
    transform: scale(0.72);
  }
}

.workflow-card-body {
  position: relative;
  z-index: 2;
  min-height: 0;
  flex: 1;
  padding: clamp(26px, 3vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 4vw, 66px);
}

.workflow-card-content {
  min-width: 0;
}

.workflow-card-index {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--workflow-card-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.workflow-card-index::before {
  content: "";
  width: 21px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.workflow-card-content h3 {
  max-width: 490px;
  font-size: clamp(32px, 3.3vw, 53px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.workflow-card-content > p {
  max-width: 470px;
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.68;
}

.workflow-card-tags {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.workflow-card-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.025);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.workflow-card-visual {
  position: relative;
  min-width: 0;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    rgba(4, 7, 18, 0.72);
  background-size: 34px 34px;
  box-shadow:
    inset 0 0 50px rgba(117, 100, 255, 0.045),
    0 20px 50px rgba(0, 0, 0, 0.22);
}

/* Source intelligence visual */

.source-monitor {
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.source-monitor-head,
.feedback-engine-head {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.36);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-monitor-head em,
.feedback-engine-head em {
  padding: 6px 8px;
  border: 1px solid rgba(66, 245, 179, 0.16);
  border-radius: 999px;
  color: #8cf7d0;
  background: rgba(66, 245, 179, 0.045);
  font-style: normal;
}

.source-radar {
  position: relative;
  width: min(210px, 68%);
  aspect-ratio: 1;
  margin: 6px auto;
  border: 1px solid rgba(66, 245, 179, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(66, 245, 179, 0.09) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(66, 245, 179, 0.09) 50%, transparent 50.5%),
    radial-gradient(circle, rgba(66, 245, 179, 0.07), transparent 64%);
}

.source-radar-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(66, 245, 179, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.source-radar-ring.ring-one {
  width: 62%;
  height: 62%;
}

.source-radar-ring.ring-two {
  width: 31%;
  height: 31%;
}

.source-radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(66, 245, 179, 0.3),
    rgba(66, 245, 179, 0) 24%,
    transparent 100%
  );
  animation: sourceRadarSpin 4.2s linear infinite;
}

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

.source-radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #42f5b3;
  box-shadow:
    0 0 0 7px rgba(66, 245, 179, 0.08),
    0 0 22px rgba(66, 245, 179, 0.72);
}

.source-radar-node {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid white;
  border-radius: 50%;
  background: #42f5b3;
  box-shadow: 0 0 12px rgba(66, 245, 179, 0.76);
  animation: sourceNodePulse 1.6s ease-in-out infinite;
}

.source-radar-node.node-one {
  left: 24%;
  top: 31%;
}

.source-radar-node.node-two {
  right: 21%;
  top: 42%;
  animation-delay: -0.55s;
}

.source-radar-node.node-three {
  left: 39%;
  bottom: 18%;
  animation-delay: -1.05s;
}

@keyframes sourceNodePulse {
  50% {
    opacity: 0.38;
    transform: scale(0.66);
  }
}

.source-monitor-stream {
  display: grid;
  gap: 6px;
}

.source-monitor-stream > span {
  min-height: 28px;
  padding: 0 8px;
  display: grid;
  grid-template-columns: 6px 1fr auto;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.018);
  font-size: 7px;
  font-weight: 700;
}

.source-monitor-stream i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42f5b3;
  box-shadow: 0 0 8px rgba(66, 245, 179, 0.75);
}

.source-monitor-stream em {
  color: #8cf7d0;
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
}

/* AI editorial visual */

.ai-processor {
  display: grid;
  place-items: center;
}

.ai-processor::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(117, 100, 255, 0.19), transparent 65%);
  filter: blur(14px);
}

.ai-processor-orbit {
  position: absolute;
  left: 50%;
  top: 42%;
  border: 1px solid rgba(141, 121, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ai-processor-orbit::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8d79ff;
  box-shadow: 0 0 14px #8d79ff;
}

.ai-processor-orbit.orbit-a {
  width: 190px;
  height: 190px;
  border-style: dashed;
  animation: aiProcessorSpin 15s linear infinite;
}

.ai-processor-orbit.orbit-b {
  width: 250px;
  height: 250px;
  border-color: rgba(84, 225, 255, 0.12);
  animation: aiProcessorSpin 24s linear infinite reverse;
}

@keyframes aiProcessorSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ai-processor-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 42%;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 195, 255, 0.42);
  border-radius: 40%;
  transform: translate(-50%, -50%) rotate(45deg);
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(145deg, rgba(117, 100, 255, 0.55), rgba(18, 14, 54, 0.94));
  box-shadow:
    0 0 0 11px rgba(117, 100, 255, 0.045),
    0 0 48px rgba(117, 100, 255, 0.38);
  animation: aiProcessorBreathe 5s ease-in-out infinite;
}

@keyframes aiProcessorBreathe {
  50% {
    border-radius: 49%;
    transform: translate(-50%, -50%) rotate(45deg) scale(1.045);
  }
}

.ai-processor-core img {
  width: 67px;
  height: 67px;
  object-fit: contain;
  transform: rotate(-45deg);
}

.ai-processor-chip {
  position: absolute;
  z-index: 5;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(7, 8, 22, 0.88);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  font-size: 7px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.ai-processor-chip.chip-context {
  left: 8%;
  top: 19%;
  color: #8cf7d0;
}

.ai-processor-chip.chip-tone {
  right: 6%;
  top: 29%;
}

.ai-processor-chip.chip-format {
  left: 10%;
  top: 60%;
  color: #85e8ff;
}

.ai-processor-log {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 13px;
  padding: 11px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
}

.ai-processor-log span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 6px;
  line-height: 1.25;
}

.ai-processor-log i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #8d79ff;
  box-shadow: 0 0 8px rgba(141, 121, 255, 0.8);
}

/* Publio distribution visual */

.distribution-map {
  overflow: visible;
}

.distribution-map::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(84, 225, 255, 0.11), transparent 68%);
}

.distribution-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 225, 255, 0.36);
  border-radius: 31px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.16), transparent 25%),
    linear-gradient(145deg, rgba(84, 225, 255, 0.22), rgba(13, 25, 51, 0.94));
  box-shadow:
    0 0 0 10px rgba(84, 225, 255, 0.035),
    0 0 38px rgba(84, 225, 255, 0.22);
}

.distribution-core strong {
  font-size: 29px;
  line-height: 1;
}

.distribution-core span {
  margin-top: -21px;
  color: #85e8ff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distribution-route {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  height: 1px;
  width: 34%;
  transform-origin: left center;
  background:
    linear-gradient(90deg, rgba(84, 225, 255, 0.68), rgba(117, 100, 255, 0.08));
  -webkit-mask-image: linear-gradient(90deg, black 50%, transparent);
  mask-image: linear-gradient(90deg, black 50%, transparent);
}

.distribution-route::after {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #54e1ff;
  box-shadow: 0 0 12px #54e1ff;
  animation: distributionSignal 2.3s ease-in-out infinite;
}

.distribution-route.route-one {
  transform: rotate(-145deg);
}

.distribution-route.route-two {
  transform: rotate(0deg);
}

.distribution-route.route-three {
  transform: rotate(145deg);
}

@keyframes distributionSignal {
  0% {
    left: 0;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 5px);
    opacity: 0;
  }
}

.distribution-channel {
  position: absolute;
  z-index: 4;
  width: 106px;
  min-height: 72px;
  padding: 10px;
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(7, 9, 23, 0.88);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.distribution-channel i {
  grid-row: 1 / 3;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.distribution-channel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 7px;
  font-weight: 900;
}

.distribution-channel em {
  color: #85e8ff;
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.channel-facebook {
  left: 7%;
  top: 11%;
}

.channel-facebook i {
  background: linear-gradient(145deg, #3485ff, #155dcc);
}

.channel-instagram {
  right: 5%;
  top: 39%;
}

.channel-instagram i {
  background: linear-gradient(145deg, #ff4ea7, #8d4cff 55%, #ff944d);
}

.channel-tiktok {
  left: 8%;
  bottom: 9%;
}

.channel-tiktok i {
  background:
    linear-gradient(135deg, rgba(84, 225, 255, 0.24), rgba(255, 64, 112, 0.2)),
    #111425;
}

/* Cleon feedback visual */

.feedback-engine {
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.feedback-engine-head em {
  border-color: rgba(255, 154, 104, 0.18);
  color: #ffb28d;
  background: rgba(255, 154, 104, 0.05);
}

.feedback-orbit {
  position: relative;
  width: min(215px, 70%);
  aspect-ratio: 1;
  margin: 4px auto;
  display: grid;
  place-items: center;
}

.feedback-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    conic-gradient(
      #ff9a68 0 24%,
      #8d79ff 24% 58%,
      #54e1ff 58% 78%,
      rgba(255, 255, 255, 0.055) 78% 100%
    );
  -webkit-mask: radial-gradient(circle, transparent 58%, black 59%);
  mask: radial-gradient(circle, transparent 58%, black 59%);
  filter: drop-shadow(0 0 12px rgba(141, 121, 255, 0.25));
  animation: feedbackOrbitSpin 12s linear infinite;
}

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

.feedback-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 154, 104, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.feedback-orbit-ring.ring-one {
  width: 94%;
  height: 94%;
  animation: feedbackRingPulse 3s ease-in-out infinite;
}

.feedback-orbit-ring.ring-two {
  width: 68%;
  height: 68%;
  animation: feedbackRingPulse 3s ease-in-out infinite -1.5s;
}

@keyframes feedbackRingPulse {
  50% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.feedback-orbit > div {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 3px;
  text-align: center;
}

.feedback-orbit strong {
  font-size: 31px;
  letter-spacing: -0.06em;
}

.feedback-orbit small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
}

.feedback-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.feedback-metrics > span {
  min-height: 52px;
  padding: 9px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.feedback-metrics small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 6px;
}

.feedback-metrics strong {
  font-size: 13px;
}

.workflow-deck-progress {
  position: absolute;
  z-index: 10;
  left: 28px;
  right: 28px;
  bottom: 16px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
}

.workflow-deck-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background:
    linear-gradient(90deg, #42f5b3, #8d79ff 48%, #54e1ff 76%, #ff9a68);
  box-shadow: 0 0 12px rgba(117, 100, 255, 0.7);
  will-change: transform;
}

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

  .workflow-story-title {
    font-size: clamp(47px, 5.5vw, 68px);
  }

  .workflow-card-body {
    padding: 28px;
    gap: 26px;
  }

  .workflow-card-content h3 {
    font-size: clamp(29px, 3.5vw, 42px);
  }

  .workflow-card-visual {
    min-height: 300px;
  }
}

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

  .workflow-story-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .workflow-story-shell {
    height: auto;
    padding: 0;
    display: block;
  }

  .workflow-story-copy {
    max-width: 760px;
  }

  .workflow-story-title {
    max-width: 680px;
    font-size: clamp(48px, 10vw, 74px);
  }

  .workflow-story-lead {
    max-width: 650px;
  }

  .workflow-story-steps,
  .workflow-scroll-cue,
  .workflow-deck-meta,
  .workflow-deck-progress {
    display: none;
  }

  .workflow-deck-wrap {
    height: auto;
    min-height: 0;
    margin-top: 54px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    perspective: none;
  }

  .workflow-deck-wrap::before,
  .workflow-deck-grid,
  .workflow-deck-aura {
    display: none;
  }

  .workflow-deck {
    position: relative;
    inset: auto;
    display: grid;
    gap: 22px;
    transform-style: flat;
  }

  .workflow-story-card,
  .workflow-story-card.is-active,
  .workflow-story-card.is-next,
  .workflow-story-card.is-future,
  .workflow-story-card.is-past {
    position: relative;
    inset: auto;
    min-height: 610px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    filter: none;
  }

  .workflow-card-body {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  }
}

@media (max-width: 650px) {
  .workflow-story {
    padding: 90px 5vw;
  }

  .workflow-story-title {
    font-size: clamp(44px, 13vw, 62px);
  }

  .workflow-card-top {
    min-height: 54px;
    padding: 14px 16px;
  }

  .workflow-card-product {
    max-width: 185px;
    line-height: 1.4;
  }

  .workflow-card-status {
    padding: 6px 8px;
    font-size: 6px;
  }

  .workflow-card-body {
    padding: 24px 18px 18px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .workflow-story-card,
  .workflow-story-card.is-active,
  .workflow-story-card.is-next,
  .workflow-story-card.is-future,
  .workflow-story-card.is-past {
    min-height: 0;
    border-radius: 24px;
  }

  .workflow-card-content h3 {
    font-size: clamp(35px, 10.5vw, 48px);
  }

  .workflow-card-content > p {
    font-size: 12px;
  }

  .workflow-card-visual {
    min-height: 310px;
    border-radius: 19px;
  }

  .ai-processor-log {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-story-card,
  .workflow-story-card::before,
  .workflow-story-step,
  .workflow-story-step > span,
  .workflow-card-status i,
  .workflow-scroll-cue > span::after,
  .source-radar-sweep,
  .source-radar-node,
  .ai-processor-orbit,
  .ai-processor-core,
  .distribution-route::after,
  .feedback-orbit::before,
  .feedback-orbit-ring {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   MINIMAL CONNECTED PUBLISHING VISUAL
   ========================================================= */

.hero-showcase.signal-stage.signal-stage-minimal {
  width: min(1280px, 100%);
  min-height: 0;
  margin-top: 72px;
}

.signal-stage-minimal::before {
  top: 50%;
  width: min(940px, 84%);
  height: 500px;
  opacity: 0.72;
  background:
    radial-gradient(circle at 62% 48%, rgba(113, 87, 255, 0.32), transparent 54%),
    radial-gradient(circle at 78% 44%, rgba(88, 220, 255, 0.12), transparent 38%),
    radial-gradient(circle at 28% 55%, rgba(66, 245, 179, 0.09), transparent 36%);
  filter: blur(40px);
}

.signal-minimal-shell {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  border: 1px solid rgba(142, 119, 255, 0.28);
  border-radius: 40px;
  background:
    radial-gradient(circle at 72% 48%, rgba(111, 83, 255, 0.14), transparent 31%),
    radial-gradient(circle at 42% -20%, rgba(88, 220, 255, 0.075), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    rgba(5, 7, 18, 0.91);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 0 90px rgba(115, 86, 255, 0.055);
  isolation: isolate;
}

.signal-minimal-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 0%, black 48%, black 100%);
}

.signal-minimal-shell::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: -35%;
  left: 33%;
  width: 14%;
  height: 165%;
  pointer-events: none;
  opacity: 0.1;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(156, 229, 255, 0.38), transparent);
  animation: signalMinimalScan 10s ease-in-out infinite;
}

@keyframes signalMinimalScan {
  0%,
  24% {
    translate: -360% 0;
  }

  76%,
  100% {
    translate: 520% 0;
  }
}

.signal-minimal-copy {
  position: relative;
  z-index: 6;
  padding: 64px 12px 92px 62px;
}

.signal-minimal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8cf7d0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.signal-minimal-eyebrow i {
  position: relative;
  width: 24px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.signal-minimal-eyebrow i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.signal-minimal-copy h2 {
  max-width: 490px;
  margin-top: 20px;
  font-size: clamp(48px, 5.1vw, 74px);
  line-height: 0.93;
  letter-spacing: -0.072em;
}

.signal-minimal-copy h2 span {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #cfc3ff 34%, #7564ff 68%, #58dcff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.signal-minimal-copy > p {
  max-width: 390px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  line-height: 1.68;
}

.signal-minimal-status {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.signal-minimal-status > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #42f5b3;
  box-shadow:
    0 0 0 5px rgba(66, 245, 179, 0.065),
    0 0 18px rgba(66, 245, 179, 0.9);
  animation: signalMinimalPulse 2.4s ease-in-out infinite;
}

@keyframes signalMinimalPulse {
  50% {
    box-shadow:
      0 0 0 10px rgba(66, 245, 179, 0),
      0 0 24px rgba(66, 245, 179, 1);
  }
}

.signal-constellation {
  position: relative;
  z-index: 3;
  min-width: 0;
  min-height: 580px;
}

.signal-constellation::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 49%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(123, 94, 255, 0.16) 0%,
    rgba(88, 220, 255, 0.045) 38%,
    transparent 68%
  );
  filter: blur(2px);
}

.signal-constellation-aura {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 340px;
  height: 340px;
  border-radius: 46% 54% 58% 42% / 45% 40% 60% 55%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  background:
    conic-gradient(
      from 30deg,
      rgba(88, 220, 255, 0.08),
      rgba(120, 92, 255, 0.2),
      rgba(66, 245, 179, 0.06),
      rgba(120, 92, 255, 0.2),
      rgba(88, 220, 255, 0.08)
    );
  filter: blur(24px);
  animation: signalMinimalAura 12s ease-in-out infinite;
}

@keyframes signalMinimalAura {
  50% {
    border-radius: 60% 40% 43% 57% / 38% 57% 43% 62%;
    transform: translate(-50%, -50%) rotate(16deg) scale(1.08);
  }
}

.signal-constellation-orbit {
  position: absolute;
  left: 50%;
  top: 49%;
  border: 1px solid rgba(139, 108, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-constellation-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #58dcff;
  box-shadow: 0 0 16px #58dcff;
}

.signal-constellation-orbit-one {
  width: 330px;
  height: 330px;
  border-style: dashed;
  animation: signalMinimalOrbit 24s linear infinite;
}

.signal-constellation-orbit-two {
  width: 470px;
  height: 470px;
  border-color: rgba(88, 220, 255, 0.09);
  animation: signalMinimalOrbit 38s linear infinite reverse;
}

@keyframes signalMinimalOrbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.signal-constellation-paths {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.signal-constellation-lines use {
  fill: none;
  stroke: url("#signal-minimal-gradient");
  stroke-width: 1.15;
  stroke-dasharray: 3 10;
  opacity: 0.28;
  vector-effect: non-scaling-stroke;
  animation: signalMinimalFlow 14s linear infinite;
}

@keyframes signalMinimalFlow {
  to {
    stroke-dashoffset: -160;
  }
}

.signal-minimal-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 49%;
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(194, 180, 255, 0.5);
  border-radius: 44% 56% 51% 49% / 46% 43% 57% 54%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.22), transparent 23%),
    radial-gradient(circle at 65% 75%, rgba(88, 220, 255, 0.13), transparent 40%),
    linear-gradient(145deg, rgba(121, 91, 255, 0.42), rgba(18, 15, 49, 0.94));
  box-shadow:
    0 0 0 12px rgba(124, 94, 255, 0.035),
    0 0 70px rgba(116, 85, 255, 0.46),
    inset 0 0 38px rgba(255, 255, 255, 0.085);
  animation: signalMinimalCore 8s ease-in-out infinite;
}

.signal-minimal-core::before,
.signal-minimal-core::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.signal-minimal-core::before {
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.signal-minimal-core::after {
  inset: -22px;
  border: 1px solid rgba(139, 108, 255, 0.16);
  border-style: dashed;
  animation: signalMinimalOrbit 22s linear infinite;
}

.signal-minimal-core img {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.24));
}

.signal-minimal-core > span {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.62);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.signal-minimal-core-light {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  opacity: 0.8;
  background: conic-gradient(
    transparent,
    rgba(88, 220, 255, 0.18),
    transparent 32%,
    rgba(139, 108, 255, 0.28),
    transparent 66%
  );
  animation: signalMinimalOrbit 10s linear infinite;
}

@keyframes signalMinimalCore {
  0%,
  100% {
    border-radius: 44% 56% 51% 49% / 46% 43% 57% 54%;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    border-radius: 55% 45% 42% 58% / 56% 52% 48% 44%;
    transform: translate(-50%, -50%) scale(1.045);
  }
}

.signal-product-node {
  position: absolute;
  z-index: 6;
  min-width: 146px;
  padding: 12px 15px 12px 48px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(8, 10, 27, 0.76);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
  animation: signalMinimalFloat 5.6s ease-in-out infinite;
}

.signal-product-node > span {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 108, 255, 0.26);
  border-radius: 9px;
  color: #b9aaff;
  background: rgba(139, 108, 255, 0.08);
  font-size: 8px;
  font-weight: 900;
  transform: translateY(-50%);
}

.signal-product-node strong {
  font-size: 12px;
  letter-spacing: -0.015em;
}

.signal-product-node small {
  color: rgba(255, 255, 255, 0.37);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-product-mediasync {
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
}

.signal-product-publio {
  left: 4%;
  bottom: 13%;
  animation-delay: -1.8s;
}

.signal-product-cleon {
  right: 2%;
  bottom: 15%;
  animation-delay: -3.4s;
}

@keyframes signalMinimalFloat {
  50% {
    translate: 0 -7px;
  }
}

.signal-minimal-loop {
  position: absolute;
  z-index: 7;
  left: 62px;
  right: 62px;
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-minimal-loop i {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 108, 255, 0.12), rgba(88, 220, 255, 0.55));
}

@media (max-width: 1060px) {
  .signal-minimal-shell {
    grid-template-columns: minmax(260px, 0.66fr) minmax(500px, 1.34fr);
  }

  .signal-minimal-copy {
    padding-left: 40px;
  }

  .signal-minimal-copy h2 {
    font-size: clamp(46px, 5.4vw, 62px);
  }

  .signal-product-publio {
    left: 1%;
  }

  .signal-product-cleon {
    right: 0;
  }
}

@media (max-width: 880px) {
  .signal-minimal-shell {
    min-height: 0;
    padding: 58px 24px 72px;
    grid-template-columns: 1fr;
  }

  .signal-minimal-copy {
    max-width: 620px;
    padding: 0 18px;
    text-align: center;
    justify-self: center;
  }

  .signal-minimal-eyebrow,
  .signal-minimal-status {
    justify-content: center;
  }

  .signal-minimal-copy h2 {
    max-width: none;
    font-size: clamp(54px, 10vw, 76px);
  }

  .signal-minimal-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .signal-constellation {
    width: min(680px, 100%);
    min-height: 540px;
    margin: 12px auto 0;
  }

  .signal-minimal-loop {
    left: 28px;
    right: 28px;
  }
}

@media (max-width: 620px) {
  .hero-showcase.signal-stage.signal-stage-minimal {
    margin-top: 52px;
  }

  .signal-minimal-shell {
    padding: 44px 12px 72px;
    border-radius: 28px;
  }

  .signal-minimal-copy {
    padding: 0 8px;
  }

  .signal-minimal-copy h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .signal-minimal-copy > p {
    max-width: 330px;
    font-size: 13px;
  }

  .signal-minimal-status {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.45;
  }

  .signal-constellation {
    min-height: 480px;
    margin-top: 6px;
  }

  .signal-constellation::before {
    width: 310px;
    height: 310px;
  }

  .signal-constellation-aura {
    width: 250px;
    height: 250px;
  }

  .signal-constellation-orbit-one {
    width: 240px;
    height: 240px;
  }

  .signal-constellation-orbit-two {
    width: 350px;
    height: 350px;
  }

  .signal-minimal-core {
    width: 138px;
    height: 138px;
  }

  .signal-minimal-core img {
    width: 68px;
    height: 68px;
  }

  .signal-minimal-core > span {
    bottom: 19px;
    font-size: 6px;
  }

  .signal-product-node {
    min-width: 126px;
    padding: 10px 10px 10px 42px;
    border-radius: 15px;
  }

  .signal-product-node > span {
    left: 10px;
    width: 24px;
    height: 24px;
  }

  .signal-product-mediasync {
    top: 6%;
  }

  .signal-product-publio {
    left: 0;
    bottom: 12%;
  }

  .signal-product-cleon {
    right: 0;
    bottom: 13%;
  }

  .signal-minimal-loop {
    gap: 8px;
    font-size: 6px;
    letter-spacing: 0.09em;
  }

  .signal-minimal-loop i {
    width: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-minimal-shell::after,
  .signal-minimal-status > span,
  .signal-constellation-aura,
  .signal-constellation-orbit,
  .signal-constellation-lines use,
  .signal-constellation-particles,
  .signal-minimal-core,
  .signal-minimal-core::after,
  .signal-minimal-core-light,
  .signal-product-node {
    animation: none !important;
  }

  .signal-constellation-particles {
    display: none;
  }
}

/* =========================================================
   PREMIUM PUBLISHING LOOP
   ========================================================= */

.hero-showcase.signal-stage.publishing-loop-showcase {
  width: min(1280px, 100%);
  min-height: 0;
  margin-top: 72px;
}

.publishing-loop-showcase::before {
  top: 50%;
  width: min(1080px, 92%);
  height: 420px;
  opacity: 0.68;
  background:
    radial-gradient(circle at 50% 50%, rgba(116, 86, 255, 0.27), transparent 58%),
    radial-gradient(circle at 15% 54%, rgba(66, 245, 179, 0.075), transparent 30%),
    radial-gradient(circle at 86% 48%, rgba(88, 220, 255, 0.09), transparent 32%);
  filter: blur(38px);
}

.publishing-loop-shell {
  position: relative;
  overflow: hidden;
  padding: 42px 54px 56px;
  border: 1px solid rgba(143, 119, 255, 0.29);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 118%, rgba(120, 89, 255, 0.13), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.038), transparent 34%),
    rgba(5, 7, 18, 0.92);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 90px rgba(111, 79, 255, 0.045);
  isolation: isolate;
}

.publishing-loop-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  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: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, black 34%, black 100%);
}

.publishing-loop-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -260px;
  width: 780px;
  height: 390px;
  border: 1px solid rgba(139, 108, 255, 0.13);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 58px rgba(139, 108, 255, 0.018),
    0 0 0 116px rgba(88, 220, 255, 0.012);
}

.publishing-loop-heading {
  position: relative;
  z-index: 4;
  padding: 0 2px 31px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.publishing-loop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  color: #8cf7d0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.publishing-loop-eyebrow i {
  position: relative;
  width: 24px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.publishing-loop-eyebrow i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.publishing-loop-heading > div {
  display: flex;
  align-items: end;
  gap: 28px;
}

.publishing-loop-heading h2 {
  font-size: clamp(32px, 3.35vw, 48px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.publishing-loop-heading p {
  max-width: 210px;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.55;
}

.publishing-loop-track {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 58px 8px 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 38px);
  list-style: none;
}

.publishing-loop-rail {
  position: absolute;
  z-index: 0;
  top: 105px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  overflow: visible;
  background: linear-gradient(
    90deg,
    rgba(66, 245, 179, 0.16),
    rgba(88, 220, 255, 0.42) 32%,
    rgba(139, 108, 255, 0.46) 68%,
    rgba(255, 176, 91, 0.17)
  );
  box-shadow: 0 0 18px rgba(111, 91, 255, 0.16);
}

.publishing-loop-rail::before,
.publishing-loop-rail::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8c78ff;
  box-shadow: 0 0 14px currentColor;
  transform: translateY(-50%);
}

.publishing-loop-rail::before {
  left: 0;
  color: #42f5b3;
  background: #42f5b3;
}

.publishing-loop-rail::after {
  right: 0;
  color: #ffb05b;
  background: #ffb05b;
}

.publishing-loop-rail > span {
  position: absolute;
  top: -1px;
  left: 0;
  width: 16%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffffff, #58dcff, transparent);
  filter: blur(0.25px);
  box-shadow: 0 0 18px rgba(88, 220, 255, 0.75);
  animation: publishingLoopSignal 5.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes publishingLoopSignal {
  from {
    transform: translateX(-100%);
  }

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

.publishing-loop-step {
  --loop-accent: #8c78ff;
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.publishing-loop-create {
  --loop-accent: #42f5b3;
}

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

.publishing-loop-monetize {
  --loop-accent: #9b83ff;
}

.publishing-loop-learn {
  --loop-accent: #ffb05b;
}

.publishing-loop-icon {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--loop-accent) 38%, transparent);
  border-radius: 29px;
  color: var(--loop-accent);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.11), transparent 26%),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--loop-accent) 14%, transparent),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(10, 12, 30, 0.94);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.34),
    0 0 34px color-mix(in srgb, var(--loop-accent) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.publishing-loop-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 21px;
}

.publishing-loop-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 34px;
  height: 1px;
  opacity: 0.62;
  background: var(--loop-accent);
  box-shadow: 0 0 12px var(--loop-accent);
  transform: translateX(-50%);
}

.publishing-loop-step:hover .publishing-loop-icon {
  border-color: color-mix(in srgb, var(--loop-accent) 65%, transparent);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.15), transparent 27%),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--loop-accent) 19%, transparent),
      rgba(255, 255, 255, 0.023)
    ),
    rgba(10, 12, 30, 0.97);
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.38),
    0 0 42px color-mix(in srgb, var(--loop-accent) 22%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.publishing-loop-icon svg {
  position: relative;
  z-index: 2;
  width: 47px;
  height: 47px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 9px color-mix(in srgb, var(--loop-accent) 45%, transparent));
}

.publishing-loop-number {
  margin-top: 27px;
  color: var(--loop-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
  opacity: 0.72;
}

.publishing-loop-step strong {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.publishing-loop-step small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Give gradient text enough room for descenders such as g, p and y. */

.hero h1.hero-split-text,
.hero-reveal-word-accent,
.hero-reveal-word-accent .hero-reveal-char {
  overflow: visible;
}

.hero-reveal-word-accent {
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.hero-reveal-word-accent .hero-reveal-char {
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.publisher-proof-intro,
.publisher-proof-intro h2,
.publisher-proof-intro h2 span {
  overflow: visible;
}

.publisher-proof-intro h2 span {
  padding: 0 0 0.14em 0.025em;
  margin: 0 0 -0.14em -0.025em;
}

@media (max-width: 920px) {
  .publishing-loop-shell {
    padding: 38px 34px 50px;
  }

  .publishing-loop-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .publishing-loop-heading > div {
    width: 100%;
    justify-content: space-between;
  }

  .publishing-loop-track {
    gap: 12px;
  }

  .publishing-loop-icon {
    width: 84px;
    height: 84px;
    border-radius: 25px;
  }

  .publishing-loop-icon::before {
    border-radius: 18px;
  }

  .publishing-loop-icon svg {
    width: 41px;
    height: 41px;
  }

  .publishing-loop-rail {
    top: 99px;
  }
}

@media (max-width: 680px) {
  .hero-showcase.signal-stage.publishing-loop-showcase {
    margin-top: 52px;
  }

  .publishing-loop-shell {
    padding: 32px 20px 38px;
    border-radius: 28px;
  }

  .publishing-loop-heading {
    padding-bottom: 25px;
  }

  .publishing-loop-heading > div {
    display: grid;
    gap: 10px;
  }

  .publishing-loop-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .publishing-loop-heading p {
    max-width: none;
  }

  .publishing-loop-track {
    padding: 44px 8px 4px 26px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .publishing-loop-rail {
    top: 85px;
    bottom: 49px;
    left: 67px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(66, 245, 179, 0.24),
      rgba(88, 220, 255, 0.42) 32%,
      rgba(139, 108, 255, 0.46) 68%,
      rgba(255, 176, 91, 0.22)
    );
  }

  .publishing-loop-rail::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .publishing-loop-rail::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .publishing-loop-rail > span {
    top: 0;
    left: -1px;
    width: 3px;
    height: 16%;
    background: linear-gradient(180deg, transparent, #ffffff, #58dcff, transparent);
    animation: publishingLoopSignalMobile 5.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  }

  .publishing-loop-step {
    min-height: 78px;
    padding-left: 99px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    text-align: left;
  }

  .publishing-loop-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 78px;
    height: 78px;
    border-radius: 23px;
  }

  .publishing-loop-icon::before {
    border-radius: 16px;
  }

  .publishing-loop-icon::after {
    left: auto;
    right: -14px;
    bottom: 50%;
    width: 27px;
    transform: translateY(50%);
  }

  .publishing-loop-icon svg {
    width: 37px;
    height: 37px;
  }

  .publishing-loop-number,
  .publishing-loop-step strong,
  .publishing-loop-step small {
    margin-left: 0;
  }

  .publishing-loop-number {
    margin-top: 0;
  }
}

@keyframes publishingLoopSignalMobile {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(625%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .publishing-loop-rail > span {
    animation: none !important;
  }
}

/* =========================================================
   PRODUCT COLOR ALIGNMENT + REFINED WORKFLOW VISUALS
   ========================================================= */

/* Match the Solutions product system exactly. */

.publishing-loop-create {
  --loop-accent: var(--purple);
}

.publishing-loop-distribute {
  --loop-accent: var(--green);
}

.publishing-loop-monetize {
  --loop-accent: var(--orange);
}

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

.publishing-loop-rail {
  background: linear-gradient(
    90deg,
    rgba(139, 108, 255, 0.32),
    rgba(139, 108, 255, 0.48) 18%,
    rgba(25, 230, 164, 0.5) 43%,
    rgba(255, 138, 42, 0.52) 68%,
    rgba(88, 220, 255, 0.24)
  );
}

.publishing-loop-rail::before {
  color: var(--purple);
  background: var(--purple);
}

.publishing-loop-rail::after {
  color: #58dcff;
  background: #58dcff;
}

.workflow-source-card,
.workflow-ai-card {
  --workflow-card-accent: var(--purple);
}

.workflow-publio-card {
  --workflow-card-accent: var(--green);
}

.workflow-cleon-card {
  --workflow-card-accent: var(--orange);
}

.workflow-story-steps::before {
  background: linear-gradient(
    180deg,
    rgba(139, 108, 255, 0.48),
    rgba(139, 108, 255, 0.3) 36%,
    rgba(25, 230, 164, 0.34) 68%,
    rgba(255, 138, 42, 0.24)
  );
}

.workflow-story-step:nth-child(1).is-active small,
.workflow-story-step:nth-child(2).is-active small {
  color: var(--purple-2);
}

.workflow-story-step:nth-child(3).is-active small {
  color: var(--green);
}

.workflow-story-step:nth-child(4).is-active small {
  color: var(--orange);
}

.workflow-story-step:nth-child(1).is-active > span,
.workflow-story-step:nth-child(2).is-active > span {
  border-color: rgba(139, 108, 255, 0.58);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 27%),
    rgba(139, 108, 255, 0.18);
  box-shadow:
    0 0 0 5px rgba(139, 108, 255, 0.045),
    0 0 25px rgba(139, 108, 255, 0.2);
}

.workflow-story-step:nth-child(3).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(4).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="0"] .workflow-deck-aura,
.workflow-deck-wrap[data-active="1"] .workflow-deck-aura {
  background: radial-gradient(circle, rgba(139, 108, 255, 0.24), transparent 65%);
}

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

.workflow-deck-wrap[data-active="3"] .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) 36%,
    var(--green) 68%,
    var(--orange)
  );
}

/* MediaSync source visual: purple, matching the product. */

.source-monitor-head em {
  border-color: rgba(139, 108, 255, 0.22);
  color: var(--purple-2);
  background: rgba(139, 108, 255, 0.07);
}

.source-radar {
  border-color: rgba(139, 108, 255, 0.17);
  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%),
    radial-gradient(circle, rgba(139, 108, 255, 0.1), transparent 64%);
}

.source-radar-ring {
  border-color: rgba(139, 108, 255, 0.16);
}

.source-radar-sweep {
  background: conic-gradient(
    from 0deg,
    rgba(139, 108, 255, 0.38),
    rgba(139, 108, 255, 0) 24%,
    transparent 100%
  );
}

.source-radar-core,
.source-radar-node {
  background: var(--purple);
  box-shadow: 0 0 14px rgba(139, 108, 255, 0.82);
}

.source-radar-core {
  box-shadow:
    0 0 0 7px rgba(139, 108, 255, 0.09),
    0 0 24px rgba(139, 108, 255, 0.78);
}

.source-monitor-stream i {
  background: var(--purple);
  box-shadow: 0 0 9px rgba(139, 108, 255, 0.8);
}

.source-monitor-stream em {
  color: var(--purple-2);
}

/* AI editorial visual, derived from the MediaSync story engine. */

.editorial-engine {
  padding: 64px 28px 24px;
  background:
    radial-gradient(circle at 76% 34%, rgba(139, 108, 255, 0.15), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    rgba(4, 7, 18, 0.76);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.editorial-engine-toolbar {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 0;
  height: 47px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.025);
}

.editorial-engine-toolbar > span {
  display: flex;
  gap: 6px;
}

.editorial-engine-toolbar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.editorial-engine-toolbar i:first-child {
  background: var(--purple);
  box-shadow: 0 0 10px rgba(139, 108, 255, 0.72);
}

.editorial-engine-toolbar strong {
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.editorial-engine-document {
  position: relative;
  z-index: 2;
  height: 218px;
  padding: 27px 25px;
  overflow: hidden;
  border: 1px solid rgba(139, 108, 255, 0.18);
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(8, 9, 26, 0.88);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    inset 0 0 35px rgba(139, 108, 255, 0.045);
}

.editorial-engine-document::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -25%;
  width: 18%;
  height: 180%;
  opacity: 0.16;
  transform: rotate(17deg);
  background: linear-gradient(90deg, transparent, var(--purple-2), transparent);
  animation: editorialDocumentScan 5.8s ease-in-out infinite;
}

@keyframes editorialDocumentScan {
  from {
    translate: -240% 0;
  }

  to {
    translate: 820% 0;
  }
}

.editorial-engine-kicker,
.editorial-engine-document > strong,
.editorial-line {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 999px;
}

.editorial-engine-kicker {
  width: 30%;
  height: 7px;
  background: var(--purple);
  box-shadow: 0 0 13px rgba(139, 108, 255, 0.44);
}

.editorial-engine-document > strong {
  width: 73%;
  height: 21px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--purple-2), rgba(139, 108, 255, 0.22));
}

.editorial-line {
  height: 8px;
  margin-top: 19px;
  background: rgba(255, 255, 255, 0.11);
  animation: editorialLinePulse 3.6s ease-in-out infinite;
}

.editorial-line.line-one {
  width: 94%;
}

.editorial-line.line-two {
  width: 80%;
  animation-delay: -1.2s;
}

.editorial-line.line-three {
  width: 61%;
  animation-delay: -2.4s;
}

@keyframes editorialLinePulse {
  50% {
    opacity: 0.48;
    transform: scaleX(0.97);
    transform-origin: left;
  }
}

.editorial-engine-score {
  position: absolute;
  z-index: 6;
  right: 17px;
  bottom: 16px;
  min-width: 70px;
  padding: 10px 13px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 9px;
  border: 1px solid rgba(139, 108, 255, 0.25);
  border-radius: 13px;
  color: var(--purple-2);
  background: rgba(12, 9, 34, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.editorial-engine-score span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.editorial-engine-score strong {
  font-size: 18px;
}

.editorial-engine-languages {
  position: absolute;
  z-index: 6;
  left: 17px;
  bottom: 17px;
  display: flex;
  gap: 7px;
}

.editorial-engine-languages span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 108, 255, 0.19);
  border-radius: 11px;
  color: var(--purple-2);
  background: rgba(139, 108, 255, 0.07);
  font-size: 8px;
  font-weight: 900;
}

/* Publio visual, derived from the Solutions distribution studio. */

.publio-studio {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(25, 230, 164, 0.13), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    rgba(4, 7, 18, 0.76);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.publio-format-card {
  position: absolute;
  width: 128px;
  height: 184px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 19px;
  background:
    radial-gradient(circle at 70% 18%, rgba(25, 230, 164, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(8, 9, 24, 0.94);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.publio-format-card > span {
  color: var(--green);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.publio-format-card > i {
  height: 91px;
  margin-top: 15px;
  display: block;
  border-radius: 13px;
  background:
    radial-gradient(circle, rgba(25, 230, 164, 0.26), transparent 56%),
    rgba(255, 255, 255, 0.045);
}

.publio-format-card > b {
  width: 68%;
  height: 6px;
  margin-top: 15px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.publio-format-carousel {
  left: 4%;
  top: 79px;
  transform: rotate(-8deg);
}

.publio-format-reel {
  z-index: 4;
  left: 50%;
  top: 45px;
  transform: translateX(-50%) scale(1.055);
}

.publio-format-story {
  right: 4%;
  top: 79px;
  transform: rotate(8deg);
}

.publio-schedule {
  position: absolute;
  z-index: 7;
  left: 8%;
  right: 8%;
  bottom: 19px;
  height: 38px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(25, 230, 164, 0.19);
  border-radius: 14px;
  background: rgba(4, 6, 18, 0.88);
}

.publio-schedule::before {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.publio-schedule span {
  position: relative;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(25, 230, 164, 0.78);
}

.publio-publish-state {
  position: absolute;
  z-index: 8;
  right: 14px;
  top: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(25, 230, 164, 0.24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(25, 230, 164, 0.07);
  font-size: 6px;
  letter-spacing: 0.12em;
  box-shadow: 0 0 24px rgba(25, 230, 164, 0.08);
}

/* Cleon visual, derived from the Solutions video and revenue engine. */

.cleon-engine {
  padding: 17px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 138, 42, 0.16), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    rgba(4, 7, 18, 0.76);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.cleon-video-frame {
  position: relative;
  height: 205px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 138, 42, 0.17);
  border-radius: 19px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 138, 42, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(139, 108, 255, 0.1), rgba(255, 76, 91, 0.09)),
    rgba(255, 255, 255, 0.025);
}

.cleon-video-frame::before,
.cleon-video-frame::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 1px;
  opacity: 0.18;
  background: linear-gradient(90deg, transparent, var(--orange), #ff4d68, transparent);
  transform: rotate(-18deg);
}

.cleon-video-frame::before {
  top: 34%;
}

.cleon-video-frame::after {
  bottom: 26%;
}

.cleon-play-button {
  position: relative;
  z-index: 3;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 13px rgba(255, 255, 255, 0.045),
    0 0 45px rgba(255, 108, 47, 0.38);
  animation: cleonPlayPulse 2.7s ease-in-out infinite;
}

.cleon-play-button i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #090914;
}

@keyframes cleonPlayPulse {
  50% {
    box-shadow:
      0 0 0 18px rgba(255, 255, 255, 0.015),
      0 0 54px rgba(255, 108, 47, 0.48);
  }
}

.cleon-video-progress {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.cleon-video-progress span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ff4d68);
  box-shadow: 0 0 16px rgba(255, 108, 47, 0.72);
  animation: cleonProgressFlow 3.4s ease-in-out infinite alternate;
}

@keyframes cleonProgressFlow {
  from {
    width: 31%;
  }

  to {
    width: 82%;
  }
}

.cleon-request-counter {
  position: absolute;
  left: 21px;
  bottom: 19px;
}

.cleon-request-counter small,
.cleon-request-counter strong {
  display: block;
}

.cleon-request-counter small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.cleon-request-counter strong {
  margin-top: 5px;
  font-size: 27px;
  letter-spacing: -0.065em;
}

.cleon-revenue-chart {
  position: absolute;
  right: 21px;
  bottom: 20px;
  width: 132px;
  height: 58px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.cleon-revenue-chart i {
  flex: 1;
  min-width: 7px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(var(--orange), rgba(255, 77, 104, 0.13));
  box-shadow: 0 0 11px rgba(255, 108, 47, 0.22);
  animation: cleonBarGrow 2.5s ease-in-out infinite alternate;
}

.cleon-revenue-chart i:nth-child(1) {
  height: 28%;
  animation-delay: -0.25s;
}

.cleon-revenue-chart i:nth-child(2) {
  height: 47%;
  animation-delay: -0.6s;
}

.cleon-revenue-chart i:nth-child(3) {
  height: 39%;
  animation-delay: -0.95s;
}

.cleon-revenue-chart i:nth-child(4) {
  height: 67%;
  animation-delay: -1.3s;
}

.cleon-revenue-chart i:nth-child(5) {
  height: 57%;
  animation-delay: -1.65s;
}

.cleon-revenue-chart i:nth-child(6) {
  height: 91%;
  animation-delay: -2s;
}

@keyframes cleonBarGrow {
  from {
    opacity: 0.58;
    transform: scaleY(0.68);
    transform-origin: bottom;
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .publio-format-card {
    width: 112px;
  }

  .publio-format-carousel {
    left: 2%;
  }

  .publio-format-story {
    right: 2%;
  }

  .cleon-revenue-chart {
    width: 112px;
  }
}

@media (max-width: 650px) {
  .editorial-engine {
    padding-right: 18px;
    padding-left: 18px;
  }

  .publio-format-card {
    width: 118px;
  }

  .publio-format-carousel {
    left: 3%;
  }

  .publio-format-story {
    right: 3%;
  }
}

@media (max-width: 680px) {
  .publishing-loop-rail {
    background: linear-gradient(
      180deg,
      rgba(139, 108, 255, 0.42),
      rgba(139, 108, 255, 0.34) 26%,
      rgba(25, 230, 164, 0.44) 52%,
      rgba(255, 138, 42, 0.46) 76%,
      rgba(88, 220, 255, 0.22)
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-engine-document::after,
  .editorial-line,
  .cleon-play-button,
  .cleon-video-progress span,
  .cleon-revenue-chart i {
    animation: none !important;
  }
}

/* =========================================================
   HEADER SCALE + NEW-CONTENT SCROLL LIGHTING
   ========================================================= */

.publishing-loop-heading > div {
  display: block;
}

.publishing-loop-showcase.scroll-glow-section::after {
  width: min(1180px, 96vw);
  height: 620px;
  background: radial-gradient(
    ellipse at center,
    rgba(217, 200, 255, 0.54) 0%,
    rgba(139, 108, 255, 0.42) 25%,
    rgba(117, 100, 255, 0.2) 50%,
    rgba(88, 220, 255, 0.06) 72%,
    transparent 88%
  );
}

.workflow-story-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -48%;
  z-index: 8;
  width: 130%;
  height: 92%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -40%, 0) scale(0.82);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(230, 221, 255, 0.48) 0%,
    rgba(139, 108, 255, 0.35) 27%,
    rgba(117, 100, 255, 0.14) 55%,
    transparent 78%
  );
  filter: blur(28px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.workflow-story.glow-active .workflow-story-card.is-active::after {
  animation: workflowCardPurpleSweep 1.9s cubic-bezier(0.16, 0.84, 0.33, 1) both;
}

@keyframes workflowCardPurpleSweep {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -38%, 0) scale(0.82);
  }

  18% {
    opacity: 0.88;
  }

  58% {
    opacity: 0.48;
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, 125%, 0) scale(1.18);
  }
}

/* Make the large background symbols legible while keeping them behind copy. */

.faq-intro::after {
  right: -8px;
  bottom: -58px;
  color: rgba(190, 172, 255, 0.16);
  text-shadow:
    0 0 42px rgba(139, 108, 255, 0.2),
    0 0 90px rgba(139, 108, 255, 0.12);
  -webkit-text-stroke: 1px rgba(217, 200, 255, 0.07);
}

.contact-information::after {
  right: -20px;
  bottom: -66px;
  color: rgba(190, 172, 255, 0.145);
  text-shadow:
    0 0 42px rgba(139, 108, 255, 0.2),
    0 0 90px rgba(139, 108, 255, 0.12);
  -webkit-text-stroke: 1px rgba(217, 200, 255, 0.065);
}

@media (max-width: 760px) {
  .brand img,
  .header.scrolled .brand img {
    width: 62px;
    height: 43px;
  }

  .brand span {
    font-size: 15px;
  }

  .home-header .nav {
    position: static;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-story-card::after,
  .workflow-story.glow-active .workflow-story-card.is-active::after {
    animation: none !important;
    opacity: 0;
  }
}

/* =========================================================
   LOOP TITLE ALIGNMENT + AI CORE TERMINAL
   ========================================================= */

.publishing-loop-heading {
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.publishing-loop-heading > div {
  width: auto;
  display: block;
}

.publishing-loop-eyebrow {
  justify-content: center;
  padding-bottom: 0;
}

.publishing-loop-heading h2 {
  text-align: center;
}

.logo-node {
  bottom: 10px;
  width: 360px;
  height: 250px;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.58));
}

.logo-node::before,
.logo-node::after {
  display: none;
}

.logo-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 46%;
  background: none;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 72% 88% at 50% 48%, #000 54%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 88% at 50% 48%, #000 54%, transparent 100%);
  animation: liquidCoreFloat 5.8s ease-in-out infinite;
}

.logo-inner::before,
.logo-inner::after {
  display: none;
}

.logo-inner img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 420px;
  height: 420px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transform: translate(-50%, -84px);
  mix-blend-mode: screen;
  filter:
    saturate(1.12)
    contrast(1.08)
    drop-shadow(0 0 22px rgba(139, 108, 255, 0.3));
}

@keyframes liquidCoreFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-7px) scale(1.018);
  }
}

.river-svg {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 69%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 0%, #000 69%, transparent 92%);
}

@media (max-width: 760px) {
  .publishing-loop-heading {
    gap: 12px;
  }

  .publishing-loop-heading > div {
    width: auto;
  }

  .logo-node {
    width: 280px;
    height: 202px;
    bottom: 8px;
  }

  .logo-inner {
    width: 100%;
    height: 100%;
  }

  .logo-inner img {
    width: 330px;
    height: 330px;
    transform: translate(-50%, -66px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-inner {
    animation: none !important;
  }
}

/* =========================================================
   INNER PAGE HERO CONCEPTS — DISTINCT VISUAL SYSTEM
   ========================================================= */

/* SOLUTIONS — EXPLODED PRODUCT STACK */

.solution-stack-scene {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 108, 255, 0.18), transparent 35%),
    radial-gradient(circle at 84% 52%, rgba(25, 230, 164, 0.1), transparent 34%),
    radial-gradient(circle at 62% 96%, rgba(255, 138, 42, 0.1), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012) 58%),
    rgba(7, 8, 22, 0.92);
  box-shadow:
    0 45px 140px rgba(0, 0, 0, 0.5),
    0 0 110px rgba(139, 108, 255, 0.14),
    inset 0 0 80px rgba(139, 108, 255, 0.055);
  isolation: isolate;
  transform-style: preserve-3d;
}

.solution-stack-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.045) 49%, transparent 62%);
  transform: translateX(-100%);
  animation: stackSceneSheen 8s ease-in-out infinite;
}

.stack-scene-grid,
.answer-console-grid,
.editorial-feed-grid,
.connection-scene-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 82%);
  mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 82%);
}

.stack-scene-glow {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(55px);
  pointer-events: none;
}

.stack-glow-purple {
  left: 12%;
  top: 9%;
  background: var(--purple);
}

.stack-glow-green {
  right: 2%;
  top: 38%;
  background: var(--green);
}

.stack-glow-orange {
  right: 22%;
  bottom: -5%;
  background: var(--orange);
}

.stack-cloud-rail {
  position: absolute;
  left: 38px;
  top: 56px;
  bottom: 50px;
  z-index: 8;
  width: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.stack-cloud-label,
.stack-cloud-status {
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.stack-cloud-status {
  color: var(--purple-2);
  opacity: 0.82;
}

.stack-cloud-line {
  position: relative;
  width: 1px;
  flex: 1;
  margin: 13px 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(217, 200, 255, 0.08), rgba(217, 200, 255, 0.72), rgba(217, 200, 255, 0.08));
  box-shadow: 0 0 12px rgba(139, 108, 255, 0.42);
}

.stack-cloud-line i {
  position: absolute;
  left: 50%;
  top: -18px;
  width: 7px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 12px var(--purple-2),
    0 0 28px var(--purple);
  transform: translateX(-50%);
  animation: stackRailSignal 3.8s ease-in-out infinite;
}

.stack-product-layer {
  position: absolute;
  z-index: 5;
  left: 92px;
  width: calc(100% - 132px);
  height: 137px;
  padding: 17px 20px 19px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025) 58%),
    rgba(9, 10, 28, 0.91);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform-origin: center;
  transform-style: preserve-3d;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.stack-product-layer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: inherit;
  opacity: 0.9;
}

.stack-product-layer:hover {
  filter: brightness(1.08);
}

.stack-mediasync {
  top: 67px;
  border-color: rgba(188, 163, 255, 0.36);
  box-shadow:
    0 24px 60px rgba(68, 43, 145, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: stackLayerMedia 5.4s ease-in-out infinite;
}

.stack-mediasync::before {
  background: linear-gradient(180deg, var(--purple-2), var(--purple));
  box-shadow: 0 0 22px rgba(139, 108, 255, 0.7);
}

.stack-publio {
  top: 221px;
  left: 72px;
  border-color: rgba(25, 230, 164, 0.31);
  box-shadow:
    0 24px 60px rgba(6, 92, 69, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: stackLayerPublio 5.7s ease-in-out infinite;
}

.stack-publio::before {
  background: linear-gradient(180deg, #78ffd3, var(--green));
  box-shadow: 0 0 22px rgba(25, 230, 164, 0.62);
}

.stack-cleon {
  top: 375px;
  left: 104px;
  border-color: rgba(255, 138, 42, 0.34);
  box-shadow:
    0 24px 60px rgba(120, 53, 7, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: stackLayerCleon 5.5s ease-in-out infinite;
}

.stack-cleon::before {
  background: linear-gradient(180deg, #ffbc72, var(--orange));
  box-shadow: 0 0 22px rgba(255, 138, 42, 0.62);
}

.stack-layer-heading,
.stack-layer-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stack-layer-heading {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-layer-index,
.stack-layer-state {
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stack-layer-index {
  color: rgba(255, 255, 255, 0.48);
}

.stack-layer-state {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
}

.stack-layer-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: stackStatusPulse 2s ease-in-out infinite;
}

.stack-mediasync .stack-layer-state {
  color: var(--purple-2);
}

.stack-publio .stack-layer-state {
  color: var(--green);
}

.stack-cleon .stack-layer-state {
  color: var(--orange);
}

.stack-layer-content {
  min-height: 79px;
  gap: 17px;
}

.stack-layer-copy {
  min-width: 0;
  flex: 1;
}

.stack-layer-copy strong,
.stack-layer-copy small {
  display: block;
}

.stack-layer-copy strong {
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.stack-layer-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
  line-height: 1.35;
  font-weight: 650;
}

.stack-mini-editor {
  position: relative;
  width: 112px;
  height: 48px;
  flex: 0 0 112px;
  padding: 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(217, 200, 255, 0.22);
  border-radius: 11px;
  background: rgba(3, 4, 16, 0.66);
}

.stack-mini-editor span {
  display: block;
  height: 3px;
  margin-bottom: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.stack-mini-editor span:nth-child(1) {
  width: 62%;
  background: var(--purple-2);
}

.stack-mini-editor span:nth-child(2) {
  width: 82%;
}

.stack-mini-editor span:nth-child(3) {
  width: 48%;
}

.stack-mini-editor b {
  position: absolute;
  right: 8px;
  top: 8px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 7px;
  color: #130e28;
  background: var(--purple-2);
  font-size: 7px;
  box-shadow: 0 0 18px rgba(139, 108, 255, 0.5);
}

.stack-social-formats {
  width: 124px;
  flex: 0 0 124px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.stack-social-formats span {
  display: grid;
  width: 36px;
  height: 44px;
  place-items: end center;
  padding-bottom: 5px;
  border: 1px solid rgba(25, 230, 164, 0.2);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(160deg, rgba(25, 230, 164, 0.22), transparent 58%),
    rgba(3, 14, 17, 0.62);
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.stack-social-formats span:nth-child(2) {
  height: 54px;
  color: #0a241a;
  background: linear-gradient(150deg, #92ffdb, var(--green));
  box-shadow: 0 0 22px rgba(25, 230, 164, 0.25);
}

.stack-revenue-visual {
  width: 124px;
  height: 50px;
  flex: 0 0 124px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 138, 42, 0.2);
  border-radius: 11px;
  background: rgba(19, 9, 3, 0.56);
}

.stack-revenue-visual span {
  flex: 1;
  height: 32%;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #ffc58b, var(--orange));
  box-shadow: 0 0 10px rgba(255, 138, 42, 0.2);
}

.stack-revenue-visual span:nth-child(2) { height: 48%; }
.stack-revenue-visual span:nth-child(3) { height: 40%; }
.stack-revenue-visual span:nth-child(4) { height: 72%; }
.stack-revenue-visual span:nth-child(5) { height: 94%; }

.stack-scene-caption {
  position: absolute;
  left: 92px;
  right: 38px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.stack-scene-caption i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 108, 255, 0.15), rgba(217, 200, 255, 0.72));
}

/* FAQ — ANSWER CONSOLE */

.faq-visual.faq-answer-console {
  background:
    radial-gradient(circle at 20% 12%, rgba(139, 108, 255, 0.2), transparent 36%),
    radial-gradient(circle at 90% 78%, rgba(25, 230, 164, 0.075), transparent 33%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(7, 8, 22, 0.94);
}

.answer-console-question-mark {
  position: absolute;
  right: -8px;
  top: -88px;
  color: var(--purple-2);
  font-size: 360px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.12em;
  opacity: 0.055;
  text-shadow: 0 0 90px rgba(139, 108, 255, 0.55);
  pointer-events: none;
}

.answer-console-window {
  position: absolute;
  inset: 42px 36px;
  z-index: 3;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 29px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015) 48%),
    rgba(8, 9, 27, 0.91);
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.4),
    0 0 45px rgba(139, 108, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.answer-console-toolbar,
.editorial-feed-toolbar,
.connection-toolbar {
  min-height: 51px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}

.answer-console-toolbar > span,
.connection-toolbar > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.answer-window-controls,
.connection-window-controls {
  display: flex;
  gap: 5px;
}

.answer-window-controls i,
.connection-window-controls i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.answer-window-controls i:first-child,
.connection-window-controls i:first-child { background: var(--purple); }
.answer-window-controls i:nth-child(2),
.connection-window-controls i:nth-child(2) { background: var(--green); }
.answer-window-controls i:last-child,
.connection-window-controls i:last-child { background: var(--orange); }

.answer-console-live,
.editorial-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.answer-console-live i,
.editorial-live i,
.connection-toolbar small i,
.answer-console-footer span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: consoleLivePulse 2s ease-in-out infinite;
}

.answer-search-field {
  position: relative;
  min-height: 64px;
  margin: 22px 21px 15px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(183, 157, 255, 0.34);
  border-radius: 17px;
  background:
    radial-gradient(circle at 8% 50%, rgba(139, 108, 255, 0.17), transparent 33%),
    rgba(3, 4, 17, 0.68);
  box-shadow:
    0 0 0 4px rgba(139, 108, 255, 0.045),
    0 14px 36px rgba(0, 0, 0, 0.22);
}

.answer-search-field::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-2), transparent);
  transform: translateX(-100%);
  animation: answerSearchSweep 5.8s ease-in-out infinite;
}

.answer-search-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border-radius: 10px;
  color: #120d27;
  background: linear-gradient(145deg, #f2eaff, var(--purple-2));
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(139, 108, 255, 0.34);
}

.answer-search-copy {
  position: relative;
  max-width: max-content;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.015em;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: answerQuestionType 8s steps(34, end) infinite;
}

.answer-search-cursor {
  width: 1px;
  height: 17px;
  background: var(--purple-2);
  box-shadow: 0 0 9px var(--purple);
  animation: answerCursorBlink 0.85s steps(1, end) infinite;
}

.answer-console-list {
  padding: 0 21px;
  display: grid;
  gap: 9px;
}

.answer-console-item {
  padding: 15px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  animation: answerItemBreathe 6s ease-in-out infinite;
}

.answer-console-item:nth-child(2) { animation-delay: -2s; }
.answer-console-item:nth-child(3) { animation-delay: -4s; }

.answer-console-item.is-preview-open {
  border-color: rgba(139, 108, 255, 0.34);
  background:
    linear-gradient(130deg, rgba(139, 108, 255, 0.11), rgba(139, 108, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 12px 32px rgba(42, 26, 94, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.answer-item-heading {
  display: grid;
  grid-template-columns: 25px 1fr 20px;
  gap: 10px;
  align-items: center;
}

.answer-item-heading > span {
  color: var(--purple-2);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.answer-item-heading strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.answer-item-heading > i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: var(--purple-2);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-style: normal;
}

.answer-console-item p {
  max-width: 88%;
  margin: 10px 0 0 35px;
  color: rgba(255, 255, 255, 0.51);
  font-size: 8px;
  line-height: 1.55;
  font-weight: 570;
}

.answer-console-footer {
  margin-top: auto;
  min-height: 45px;
  padding: 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
}

.answer-console-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.answer-console-footer small {
  font-size: 7px;
  font-weight: 700;
}

/* BLOG — EDITORIAL INTELLIGENCE FEED */

.blog-visual.blog-editorial-feed {
  background:
    radial-gradient(circle at 17% 13%, rgba(139, 108, 255, 0.2), transparent 36%),
    radial-gradient(circle at 91% 62%, rgba(25, 230, 164, 0.075), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(7, 8, 22, 0.94);
}

.editorial-feed-window {
  position: absolute;
  inset: 35px 31px;
  z-index: 3;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012) 48%),
    rgba(8, 9, 27, 0.92);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 50px rgba(139, 108, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(20px);
}

.editorial-feed-toolbar {
  min-height: 63px;
}

.editorial-feed-toolbar > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.editorial-kicker {
  color: var(--purple-2);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-feed-toolbar strong {
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.editorial-feed-layout {
  min-height: 0;
  padding: 15px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(125px, 0.78fr);
  gap: 12px;
  flex: 1;
}

.editorial-featured-story,
.editorial-mini-story {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.026);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.editorial-featured-story {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  animation: editorialFeaturedFloat 6.2s ease-in-out infinite;
}

.editorial-featured-art {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 52% 54%, rgba(139, 108, 255, 0.34), transparent 23%),
    radial-gradient(circle at 28% 15%, rgba(25, 230, 164, 0.08), transparent 31%),
    linear-gradient(140deg, #161333, #08091c 62%);
}

.editorial-featured-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 27px 27px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 78%);
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.editorial-art-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(217, 200, 255, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.editorial-art-orbit-one {
  width: 70%;
  aspect-ratio: 1;
  animation: editorialOrbitSpin 10s linear infinite;
}

.editorial-art-orbit-two {
  width: 44%;
  aspect-ratio: 1;
  border-color: rgba(25, 230, 164, 0.22);
  animation: editorialOrbitSpinReverse 7s linear infinite;
}

.editorial-art-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(217, 200, 255, 0.5);
  border-radius: 28px;
  color: #150f2c;
  background: linear-gradient(145deg, #f4edff, var(--purple-2));
  box-shadow:
    0 0 0 12px rgba(139, 108, 255, 0.06),
    0 0 55px rgba(139, 108, 255, 0.42);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.06em;
  transform: translate(-50%, -50%) rotate(-4deg);
  animation: editorialCorePulse 4s ease-in-out infinite;
}

.editorial-art-label {
  position: absolute;
  left: 14px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.editorial-featured-copy {
  padding: 16px;
}

.editorial-featured-copy > span,
.editorial-mini-story > span {
  color: var(--purple-2);
  font-size: 7px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-featured-copy strong,
.editorial-featured-copy small {
  display: block;
}

.editorial-featured-copy strong {
  max-width: 270px;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.editorial-featured-copy small {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 750;
}

.editorial-featured-copy small i {
  margin-left: 4px;
  color: var(--purple-2);
  font-style: normal;
}

.editorial-story-rail {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.editorial-mini-story {
  min-height: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  animation: editorialRailFloat 5.5s ease-in-out infinite;
}

.editorial-mini-story:nth-child(2) {
  animation-delay: -2.7s;
}

.editorial-mini-story strong {
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.editorial-mini-story small {
  margin-top: auto;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  font-weight: 700;
}

.editorial-mini-visual {
  height: 92px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 11px;
  background:
    radial-gradient(circle at center, rgba(25, 230, 164, 0.2), transparent 62%),
    rgba(3, 15, 17, 0.56);
}

.editorial-mini-visual i {
  width: 26px;
  height: 45px;
  border: 1px solid rgba(25, 230, 164, 0.3);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(25, 230, 164, 0.28), rgba(255, 255, 255, 0.025));
  transform: rotate(-7deg) translateY(4px);
}

.editorial-mini-visual i:nth-child(2) {
  z-index: 2;
  height: 58px;
  border-color: rgba(119, 255, 211, 0.65);
  background: linear-gradient(150deg, #67f8c7, #0ca679);
  box-shadow: 0 0 22px rgba(25, 230, 164, 0.2);
  transform: translateY(-1px);
}

.editorial-mini-visual i:nth-child(3) {
  transform: rotate(7deg) translateY(4px);
}

.editorial-mini-revenue > span {
  color: #ffb56c;
}

.editorial-mini-chart {
  height: 92px;
  margin-bottom: 12px;
  padding: 18px 14px 12px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 138, 42, 0.18), transparent 50%),
    rgba(18, 8, 3, 0.54);
}

.editorial-mini-chart i {
  flex: 1;
  height: 24%;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #ffc17d, var(--orange));
  box-shadow: 0 0 10px rgba(255, 138, 42, 0.16);
}

.editorial-mini-chart i:nth-child(2) { height: 42%; }
.editorial-mini-chart i:nth-child(3) { height: 35%; }
.editorial-mini-chart i:nth-child(4) { height: 68%; }
.editorial-mini-chart i:nth-child(5) { height: 91%; }

.editorial-feed-ticker {
  min-height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.editorial-feed-ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
  animation: editorialTicker 18s linear infinite;
}

.editorial-feed-ticker span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-feed-ticker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

/* CONTACT — HUMAN CONNECTION SEQUENCE */

.contact-visual.contact-connection-scene {
  background:
    radial-gradient(circle at 18% 22%, rgba(139, 108, 255, 0.19), transparent 34%),
    radial-gradient(circle at 83% 30%, rgba(25, 230, 164, 0.1), transparent 31%),
    radial-gradient(circle at 52% 93%, rgba(255, 138, 42, 0.065), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(7, 8, 22, 0.94);
}

.connection-scene-glow {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 290px;
  height: 180px;
  border-radius: 50%;
  background: rgba(139, 108, 255, 0.17);
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

.connection-scene-window {
  position: absolute;
  inset: 40px 32px;
  z-index: 3;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.012) 48%),
    rgba(8, 9, 27, 0.92);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 50px rgba(139, 108, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(20px);
}

.connection-toolbar small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connection-stage {
  position: relative;
  min-height: 272px;
  padding: 35px 18px 22px;
  display: grid;
  grid-template-columns: minmax(118px, 1fr) 0.75fr minmax(118px, 1fr);
  align-items: center;
  gap: 10px;
}

.connection-party {
  position: relative;
  z-index: 3;
  min-width: 0;
  min-height: 164px;
  padding: 18px 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(4, 5, 18, 0.68);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: connectionPartyFloat 5.4s ease-in-out infinite;
}

.connection-brainfood {
  border-color: rgba(25, 230, 164, 0.22);
  animation-delay: -2.7s;
}

.connection-party > small {
  margin-top: 13px;
  color: var(--purple-2);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.connection-brainfood > small {
  color: var(--green);
}

.connection-party > strong {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.connection-party > span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
  line-height: 1.4;
  font-weight: 650;
}

.connection-party-icon {
  position: relative;
  width: 54px;
  height: 46px;
}

.connection-party-icon span {
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 33px;
  border: 1px solid rgba(217, 200, 255, 0.38);
  border-radius: 12px 12px 9px 9px;
  background: rgba(139, 108, 255, 0.12);
  box-shadow: 0 0 20px rgba(139, 108, 255, 0.12);
}

.connection-party-icon span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-2);
  transform: translateX(-50%);
}

.connection-party-icon span:first-child { left: 0; transform: scale(0.82); opacity: 0.66; }
.connection-party-icon span:nth-child(2) { left: 15px; z-index: 2; height: 40px; }
.connection-party-icon span:last-child { right: 0; transform: scale(0.82); opacity: 0.66; }

.connection-cloud-mark {
  position: relative;
  width: 58px;
  height: 44px;
  filter: drop-shadow(0 0 18px rgba(25, 230, 164, 0.22));
}

.connection-cloud-mark span {
  position: absolute;
  border: 1px solid rgba(117, 255, 211, 0.58);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(90, 255, 204, 0.48), rgba(25, 230, 164, 0.16));
}

.connection-cloud-mark span:first-child { left: 1px; bottom: 3px; width: 26px; height: 26px; }
.connection-cloud-mark span:nth-child(2) { left: 16px; top: 1px; width: 34px; height: 34px; }
.connection-cloud-mark span:nth-child(3) { right: 0; bottom: 2px; width: 27px; height: 27px; }
.connection-cloud-mark span:last-child { left: 9px; right: 7px; bottom: 0; height: 23px; border-radius: 13px; }

.connection-bridge {
  position: relative;
  z-index: 5;
  min-width: 0;
  height: 164px;
  display: grid;
  place-items: center;
}

.connection-bridge-line {
  position: absolute;
  left: -12px;
  right: -12px;
  top: 50%;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, var(--purple), rgba(255, 255, 255, 0.54), var(--green));
  box-shadow: 0 0 13px rgba(139, 108, 255, 0.3);
}

.connection-bridge-line i {
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 12px var(--purple-2),
    0 0 27px var(--purple);
  transform: translate(-50%, -50%);
  animation: connectionSignalTravel 3.4s ease-in-out infinite;
}

.connection-message {
  position: relative;
  z-index: 4;
  width: 148px;
  padding: 12px 13px;
  border: 1px solid rgba(217, 200, 255, 0.32);
  border-radius: 14px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(139, 108, 255, 0.19), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 26, 0.95);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.33),
    0 0 25px rgba(139, 108, 255, 0.17);
  animation: connectionMessagePulse 4s ease-in-out infinite;
}

.connection-message span,
.connection-message strong {
  display: block;
}

.connection-message span {
  color: var(--purple-2);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.connection-message strong {
  margin-top: 5px;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.connection-steps {
  min-height: 77px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.016);
}

.connection-step {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.5;
}

.connection-step > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 6px;
  font-weight: 900;
}

.connection-step strong {
  font-size: 7px;
  line-height: 1.2;
  font-weight: 760;
}

.connection-step.is-complete,
.connection-step.is-active {
  opacity: 1;
}

.connection-step.is-complete > span {
  border-color: rgba(25, 230, 164, 0.5);
  color: #062319;
  background: var(--green);
  box-shadow: 0 0 16px rgba(25, 230, 164, 0.2);
}

.connection-step.is-active > span {
  border-color: rgba(217, 200, 255, 0.54);
  color: #160f2f;
  background: var(--purple-2);
  box-shadow: 0 0 18px rgba(139, 108, 255, 0.3);
  animation: connectionActiveStep 2.2s ease-in-out infinite;
}

.connection-steps > i {
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 200, 255, 0.18), rgba(217, 200, 255, 0.65));
}

.connection-confirmation {
  min-height: 48px;
  margin-top: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.connection-confirmation > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 8px;
  font-weight: 750;
}

.connection-confirmation > span i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #062319;
  background: var(--green);
  font-size: 9px;
  font-style: normal;
  box-shadow: 0 0 16px rgba(25, 230, 164, 0.22);
}

.connection-confirmation small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* MOTION */

@keyframes stackSceneSheen {
  0%, 18% { transform: translateX(-110%); opacity: 0; }
  43% { opacity: 1; }
  68%, 100% { transform: translateX(110%); opacity: 0; }
}

@keyframes stackRailSignal {
  0% { top: -18px; opacity: 0; }
  12%, 82% { opacity: 1; }
  100% { top: calc(100% + 4px); opacity: 0; }
}

@keyframes stackLayerMedia {
  0%, 100% { transform: perspective(900px) rotateX(2deg) rotateZ(-2.4deg) translate3d(0, 0, 42px); }
  50% { transform: perspective(900px) rotateX(1deg) rotateZ(-1.5deg) translate3d(5px, -5px, 58px); }
}

@keyframes stackLayerPublio {
  0%, 100% { transform: perspective(900px) rotateX(1deg) rotateZ(1.4deg) translate3d(0, 0, 30px); }
  50% { transform: perspective(900px) rotateX(2deg) rotateZ(0.7deg) translate3d(-4px, -5px, 44px); }
}

@keyframes stackLayerCleon {
  0%, 100% { transform: perspective(900px) rotateX(1deg) rotateZ(-1.2deg) translate3d(0, 0, 22px); }
  50% { transform: perspective(900px) rotateX(2deg) rotateZ(-0.5deg) translate3d(4px, -4px, 36px); }
}

@keyframes stackStatusPulse {
  0%, 100% { opacity: 0.48; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes consoleLivePulse {
  0%, 100% { opacity: 0.48; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes answerSearchSweep {
  0%, 12% { transform: translateX(-100%); opacity: 0; }
  36%, 58% { opacity: 1; }
  82%, 100% { transform: translateX(100%); opacity: 0; }
}

@keyframes answerQuestionType {
  0%, 8% { clip-path: inset(0 100% 0 0); }
  38%, 78% { clip-path: inset(0 0 0 0); }
  94%, 100% { clip-path: inset(0 100% 0 0); }
}

@keyframes answerCursorBlink {
  0%, 46% { opacity: 1; }
  47%, 100% { opacity: 0; }
}

@keyframes answerItemBreathe {
  0%, 100% { border-color: rgba(255, 255, 255, 0.1); }
  50% { border-color: rgba(217, 200, 255, 0.21); }
}

@keyframes editorialFeaturedFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes connectionPartyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes editorialRailFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes editorialOrbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes editorialOrbitSpinReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes editorialCorePulse {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(3deg) scale(1.04); }
}

@keyframes editorialTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes connectionSignalTravel {
  0% { left: 0; opacity: 0; }
  12%, 86% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes connectionMessagePulse {
  0%, 100% { transform: translateY(0) scale(1); border-color: rgba(217, 200, 255, 0.28); }
  50% { transform: translateY(-3px) scale(1.025); border-color: rgba(217, 200, 255, 0.5); }
}

@keyframes connectionActiveStep {
  0%, 100% { box-shadow: 0 0 14px rgba(139, 108, 255, 0.2); }
  50% { box-shadow: 0 0 24px rgba(139, 108, 255, 0.48); }
}

/* DISTINCT HERO CONCEPTS — RESPONSIVE */

@media (max-width: 1180px) {
  .solution-stack-scene {
    width: min(570px, 100%);
  }
}

@media (max-width: 760px) {
  .solution-stack-scene,
  .faq-visual.faq-answer-console,
  .blog-visual.blog-editorial-feed,
  .contact-visual.contact-connection-scene {
    width: min(100%, 420px);
    border-radius: 30px;
  }

  .stack-cloud-rail {
    left: 18px;
    top: 36px;
    bottom: 34px;
  }

  .stack-cloud-label,
  .stack-cloud-status {
    font-size: 6px;
  }

  .stack-product-layer {
    left: 55px;
    width: calc(100% - 76px);
    height: 101px;
    padding: 12px 13px;
    border-radius: 18px;
  }

  .stack-mediasync { top: 42px; }
  .stack-publio { top: 158px; left: 44px; }
  .stack-cleon { top: 274px; left: 61px; }

  .stack-layer-heading {
    padding-bottom: 6px;
  }

  .stack-layer-content {
    min-height: 58px;
    gap: 10px;
  }

  .stack-layer-copy strong {
    font-size: 16px;
  }

  .stack-layer-copy small {
    margin-top: 4px;
    font-size: 7px;
  }

  .stack-mini-editor,
  .stack-social-formats,
  .stack-revenue-visual {
    width: 83px;
    flex-basis: 83px;
  }

  .stack-mini-editor {
    height: 38px;
    padding: 7px;
  }

  .stack-mini-editor span {
    margin-bottom: 4px;
  }

  .stack-mini-editor b {
    width: 17px;
    height: 17px;
    right: 5px;
    top: 5px;
  }

  .stack-social-formats {
    gap: 3px;
  }

  .stack-social-formats span {
    width: 25px;
    height: 32px;
    border-radius: 6px;
    font-size: 4px;
  }

  .stack-social-formats span:nth-child(2) {
    height: 41px;
  }

  .stack-revenue-visual {
    height: 39px;
    padding: 7px;
    gap: 4px;
  }

  .stack-scene-caption {
    left: 50px;
    right: 18px;
    bottom: 14px;
    gap: 6px;
    font-size: 5px;
  }

  .stack-scene-caption i {
    width: 14px;
  }

  .answer-console-question-mark {
    top: -54px;
    font-size: 250px;
  }

  .answer-console-window {
    inset: 22px 18px;
    border-radius: 21px;
  }

  .answer-console-toolbar,
  .connection-toolbar {
    min-height: 42px;
    padding: 0 12px;
  }

  .answer-console-toolbar > span,
  .connection-toolbar > span {
    font-size: 7px;
  }

  .answer-search-field {
    min-height: 49px;
    margin: 14px 13px 10px;
    padding: 0 12px;
    gap: 8px;
    border-radius: 13px;
  }

  .answer-search-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    border-radius: 8px;
    font-size: 14px;
  }

  .answer-search-copy {
    font-size: 9px;
  }

  .answer-console-list {
    padding: 0 13px;
    gap: 7px;
  }

  .answer-console-item {
    padding: 10px;
    border-radius: 11px;
  }

  .answer-item-heading {
    grid-template-columns: 19px 1fr 17px;
    gap: 6px;
  }

  .answer-item-heading strong {
    font-size: 8px;
  }

  .answer-item-heading > i {
    width: 17px;
    height: 17px;
    border-radius: 5px;
  }

  .answer-console-item p {
    max-width: 92%;
    margin: 6px 0 0 25px;
    font-size: 6.5px;
  }

  .answer-console-footer {
    min-height: 36px;
    padding: 0 13px;
  }

  .editorial-feed-window {
    inset: 18px 16px;
    border-radius: 21px;
  }

  .editorial-feed-toolbar {
    min-height: 49px;
    padding: 0 12px;
  }

  .editorial-feed-toolbar strong {
    font-size: 12px;
  }

  .editorial-feed-layout {
    padding: 10px;
    grid-template-columns: minmax(0, 1.45fr) minmax(96px, 0.75fr);
    gap: 8px;
  }

  .editorial-featured-art {
    min-height: 158px;
  }

  .editorial-art-core {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    font-size: 21px;
  }

  .editorial-featured-copy {
    padding: 11px;
  }

  .editorial-featured-copy strong {
    margin-top: 6px;
    font-size: 12px;
  }

  .editorial-featured-copy small {
    margin-top: 8px;
    font-size: 6px;
  }

  .editorial-story-rail {
    gap: 8px;
  }

  .editorial-mini-story {
    padding: 8px;
    border-radius: 12px;
  }

  .editorial-mini-story strong {
    margin-top: 5px;
    font-size: 8px;
  }

  .editorial-mini-visual,
  .editorial-mini-chart {
    height: 62px;
    margin-bottom: 8px;
  }

  .editorial-mini-visual i {
    width: 17px;
    height: 31px;
  }

  .editorial-mini-visual i:nth-child(2) {
    height: 40px;
  }

  .editorial-feed-ticker {
    min-height: 30px;
  }

  .connection-scene-window {
    inset: 20px 16px;
    border-radius: 21px;
  }

  .connection-stage {
    min-height: 220px;
    padding: 24px 10px 15px;
    grid-template-columns: minmax(91px, 1fr) 0.52fr minmax(91px, 1fr);
    gap: 6px;
  }

  .connection-party {
    min-height: 131px;
    padding: 12px 8px;
    border-radius: 15px;
  }

  .connection-party-icon {
    width: 43px;
    height: 36px;
    transform: scale(0.82);
  }

  .connection-cloud-mark {
    transform: scale(0.78);
  }

  .connection-party > small {
    margin-top: 7px;
    font-size: 5px;
  }

  .connection-party > strong {
    font-size: 10px;
  }

  .connection-party > span {
    font-size: 6px;
  }

  .connection-bridge {
    height: 131px;
  }

  .connection-message {
    width: 112px;
    padding: 9px;
  }

  .connection-message strong {
    font-size: 7px;
  }

  .connection-steps {
    min-height: 58px;
    padding: 0 10px;
    grid-template-columns: 1fr 12px 1fr 12px 1fr;
    gap: 3px;
  }

  .connection-step {
    gap: 4px;
  }

  .connection-step > span {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    border-radius: 6px;
  }

  .connection-step strong {
    font-size: 5.5px;
  }

  .connection-confirmation {
    min-height: 38px;
    padding: 0 12px;
  }

  .connection-confirmation > span {
    font-size: 6px;
  }

  .connection-confirmation > span i {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 430px) {
  .stack-cloud-status,
  .answer-console-live,
  .answer-console-footer small,
  .editorial-live,
  .connection-confirmation small {
    display: none;
  }

  .stack-layer-copy small,
  .connection-party > span {
    display: none;
  }

  .stack-cloud-rail {
    left: 13px;
    top: 26px;
    bottom: 25px;
  }

  .stack-product-layer {
    left: 43px;
    width: calc(100% - 57px);
    height: 80px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .stack-mediasync { top: 28px; }
  .stack-publio { top: 121px; left: 35px; }
  .stack-cleon { top: 214px; left: 48px; }

  .stack-layer-index,
  .stack-layer-state {
    font-size: 6px;
  }

  .stack-layer-state {
    gap: 4px;
  }

  .stack-layer-state i {
    width: 4px;
    height: 4px;
  }

  .stack-layer-content {
    min-height: 46px;
  }

  .stack-layer-copy strong {
    font-size: 14px;
  }

  .stack-mini-editor,
  .stack-social-formats,
  .stack-revenue-visual {
    width: 67px;
    flex-basis: 67px;
  }

  .stack-social-formats span {
    width: 20px;
    height: 27px;
  }

  .stack-social-formats span:nth-child(2) {
    height: 34px;
  }

  .stack-scene-caption {
    left: 42px;
    bottom: 8px;
  }

  .answer-console-window,
  .editorial-feed-window,
  .connection-scene-window {
    inset: 12px 10px;
    border-radius: 18px;
  }

  .answer-console-toolbar,
  .connection-toolbar {
    min-height: 36px;
  }

  .answer-search-field {
    min-height: 43px;
    margin: 10px 9px 7px;
  }

  .answer-console-list {
    padding: 0 9px;
    gap: 5px;
  }

  .answer-console-item {
    padding: 8px;
  }

  .answer-console-item p {
    font-size: 5.5px;
    line-height: 1.4;
  }

  .answer-console-footer {
    min-height: 30px;
    padding: 0 9px;
  }

  .editorial-feed-toolbar {
    min-height: 42px;
  }

  .editorial-featured-art {
    min-height: 121px;
  }

  .editorial-feed-layout {
    padding: 7px;
    grid-template-columns: minmax(0, 1.4fr) minmax(78px, 0.72fr);
    gap: 6px;
  }

  .editorial-featured-copy {
    padding: 8px;
  }

  .editorial-featured-copy strong {
    font-size: 10px;
  }

  .editorial-mini-story {
    padding: 6px;
  }

  .editorial-mini-visual,
  .editorial-mini-chart {
    height: 50px;
    margin-bottom: 6px;
  }

  .editorial-mini-story > span,
  .editorial-mini-story small {
    font-size: 5px;
  }

  .connection-stage {
    min-height: 165px;
    padding: 16px 7px 10px;
    grid-template-columns: minmax(82px, 1fr) 0.4fr minmax(82px, 1fr);
  }

  .connection-party {
    min-height: 102px;
    padding: 8px 5px;
  }

  .connection-party-icon,
  .connection-cloud-mark {
    transform: scale(0.65);
    margin: -6px 0;
  }

  .connection-party > small {
    margin-top: 5px;
  }

  .connection-party > strong {
    font-size: 9px;
  }

  .connection-bridge {
    height: 102px;
  }

  .connection-message {
    width: 92px;
    padding: 7px;
  }

  .connection-steps {
    min-height: 46px;
  }

  .connection-confirmation {
    min-height: 34px;
  }

  .connection-step strong {
    display: none;
  }

  .connection-step {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .stack-product-layer {
    left: 35px;
    width: calc(100% - 46px);
    height: 67px;
    padding: 7px 8px;
  }

  .stack-mediasync { top: 20px; }
  .stack-publio { top: 99px; left: 29px; }
  .stack-cleon { top: 178px; left: 39px; }

  .stack-layer-content {
    min-height: 37px;
  }

  .stack-mini-editor,
  .stack-social-formats,
  .stack-revenue-visual {
    width: 54px;
    flex-basis: 54px;
    transform: scale(0.86);
    transform-origin: left center;
  }

  .stack-layer-copy strong {
    font-size: 12px;
  }

  .stack-scene-caption {
    display: none;
  }

  .answer-console-toolbar > span,
  .answer-console-footer {
    display: none;
  }

  .answer-search-field {
    margin-top: 9px;
  }

  .answer-console-item {
    padding: 7px;
  }

  .answer-console-item p {
    margin-top: 4px;
  }

  .editorial-feed-toolbar {
    min-height: 38px;
  }

  .editorial-featured-art {
    min-height: 104px;
  }

  .editorial-mini-visual,
  .editorial-mini-chart {
    height: 41px;
  }

  .editorial-feed-ticker {
    min-height: 26px;
  }

  .connection-stage {
    min-height: 143px;
    padding-top: 10px;
  }

  .connection-party,
  .connection-bridge {
    min-height: 88px;
    height: 88px;
  }

  .connection-steps {
    min-height: 38px;
  }

  .connection-confirmation {
    min-height: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-stack-scene::before,
  .stack-cloud-line i,
  .stack-product-layer,
  .stack-layer-state i,
  .answer-console-live i,
  .answer-search-field::after,
  .answer-search-copy,
  .answer-search-cursor,
  .answer-console-item,
  .answer-console-footer span i,
  .editorial-featured-story,
  .editorial-mini-story,
  .editorial-art-orbit,
  .editorial-art-core,
  .editorial-feed-ticker > div,
  .connection-toolbar small i,
  .connection-party,
  .connection-bridge-line i,
  .connection-message,
  .connection-step.is-active > span {
    animation: none !important;
  }

  .answer-search-copy {
    clip-path: inset(0 0 0 0);
  }
}

/* =========================================================
   INNER PAGE HERO REFINEMENT — MINIMAL LIQUID ARTWORK
   ========================================================= */

.inner-liquid-stage,
.solution-stack-scene.inner-liquid-stage,
.faq-visual.inner-liquid-stage,
.blog-visual.inner-liquid-stage,
.contact-visual.inner-liquid-stage {
  position: relative;
  width: min(610px, 104%);
  aspect-ratio: 1 / 1;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.inner-liquid-stage::before,
.inner-liquid-stage::after {
  content: none;
}

.inner-liquid-stage > :not(.liquid-minimal-art) {
  display: none !important;
}

.liquid-minimal-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
  pointer-events: none;
}

.liquid-minimal-art::before {
  content: "";
  position: absolute;
  z-index: -4;
  width: 72%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.14), rgba(78, 54, 198, 0.055) 43%, transparent 72%);
  filter: blur(30px);
  animation: innerLiquidAuraPulse 5.2s ease-in-out infinite;
}

.inner-liquid-aura {
  position: absolute;
  z-index: -3;
  width: 63%;
  aspect-ratio: 1.18 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 46% 44%, rgba(168, 147, 255, 0.44), rgba(75, 49, 207, 0.18) 43%, transparent 73%);
  filter: blur(54px);
  opacity: 0.78;
  animation: innerLiquidAuraBreath 4.8s ease-in-out infinite;
}

.inner-liquid-orbit {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(217, 200, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.inner-orbit-one {
  width: 74%;
  height: 45%;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 34px rgba(139, 108, 255, 0.06);
  animation: innerLiquidOrbitOne 11s linear infinite;
}

.inner-orbit-two {
  width: 48%;
  height: 78%;
  border-color: rgba(104, 225, 255, 0.12);
  transform: translate(-50%, -50%) rotate(27deg);
  animation: innerLiquidOrbitTwo 14s linear infinite;
}

.inner-liquid-svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 96%;
  height: auto;
  overflow: visible;
  filter: saturate(1.08) contrast(1.03);
  transform: translateZ(0);
  animation: innerLiquidArtworkFloat 6s ease-in-out infinite;
}

.inner-liquid-spark {
  position: absolute;
  z-index: 5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #effdff;
  box-shadow:
    0 0 11px rgba(166, 231, 255, 0.95),
    0 0 26px rgba(119, 84, 255, 0.75);
  animation: innerLiquidSpark 3.9s ease-in-out infinite;
}

.liquid-spark-a {
  left: 15%;
  top: 34%;
}

.liquid-spark-b {
  right: 14%;
  top: 43%;
  width: 4px;
  height: 4px;
  animation-delay: -1.3s;
}

.liquid-spark-c {
  right: 27%;
  bottom: 20%;
  width: 5px;
  height: 5px;
  animation-delay: -2.6s;
}

/* Solutions liquid ecosystem */

.liquid-solutions-art .inner-liquid-aura {
  width: 70%;
  background:
    radial-gradient(circle at 34% 30%, rgba(139, 108, 255, 0.4), transparent 47%),
    radial-gradient(circle at 73% 42%, rgba(25, 230, 164, 0.23), transparent 48%),
    radial-gradient(circle at 44% 76%, rgba(255, 138, 42, 0.2), transparent 47%);
}

.solutions-liquid-group {
  filter:
    url(#solutions-liquid-distortion)
    drop-shadow(0 28px 34px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 34px rgba(139, 108, 255, 0.22));
}

.solutions-liquid-lobe {
  transform-box: fill-box;
  transform-origin: center;
}

.solutions-lobe-purple {
  animation: solutionsLobePurple 6.4s ease-in-out infinite;
}

.solutions-lobe-green {
  animation: solutionsLobeGreen 6.8s ease-in-out infinite;
}

.solutions-lobe-orange {
  animation: solutionsLobeOrange 6.6s ease-in-out infinite;
}

.solutions-liquid-core {
  filter:
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 42px rgba(139, 108, 255, 0.64));
  transform-box: fill-box;
  transform-origin: center;
  animation: solutionsCorePulse 4.2s ease-in-out infinite;
}

.solutions-energy-arc {
  stroke: rgba(217, 200, 255, 0.32);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 4 17;
  filter: drop-shadow(0 0 5px rgba(139, 108, 255, 0.7));
  animation: solutionsArcFlow 7s linear infinite;
}

.solutions-arc-two {
  stroke: rgba(100, 246, 206, 0.28);
  animation-delay: -2.3s;
}

.solutions-arc-three {
  stroke: rgba(255, 171, 91, 0.28);
  animation-delay: -4.6s;
}

/* FAQ liquid question */

.liquid-faq-art .inner-liquid-aura {
  width: 58%;
  background: radial-gradient(circle at 50% 45%, rgba(147, 123, 255, 0.52), rgba(74, 49, 204, 0.19) 45%, transparent 74%);
}

.faq-liquid-glow {
  fill: none;
  stroke: rgba(126, 93, 255, 0.32);
  stroke-width: 108;
  stroke-linecap: round;
  filter: blur(28px);
}

.faq-liquid-symbol {
  filter:
    url(#faq-liquid-distortion)
    drop-shadow(0 30px 34px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 34px rgba(123, 92, 255, 0.4));
  transform-box: fill-box;
  transform-origin: center;
  animation: faqLiquidSymbolMove 5.8s ease-in-out infinite;
}

.faq-liquid-shimmer {
  opacity: 0.68;
  filter: blur(0.4px) drop-shadow(0 0 10px rgba(255, 255, 255, 0.75));
  stroke-dasharray: 115 170;
  animation: faqShimmerTravel 5.2s ease-in-out infinite;
}

.faq-dot-highlight {
  filter: blur(0.4px) drop-shadow(0 0 9px rgba(255, 255, 255, 0.7));
  animation: faqDotHighlight 4s ease-in-out infinite;
}

/* Blog liquid editorial mark */

.liquid-blog-art .inner-liquid-aura {
  width: 68%;
  background:
    radial-gradient(circle at 37% 43%, rgba(139, 108, 255, 0.38), transparent 50%),
    radial-gradient(circle at 67% 43%, rgba(87, 214, 255, 0.25), transparent 50%);
}

.blog-page-echoes path {
  fill: rgba(139, 108, 255, 0.035);
  stroke: rgba(217, 200, 255, 0.16);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 15px rgba(139, 108, 255, 0.15));
}

.blog-page-echoes path:first-child {
  transform: translate(-18px, 14px) rotate(-4deg);
  transform-origin: center;
}

.blog-page-echoes path:last-child {
  transform: translate(18px, 14px) rotate(4deg);
  transform-origin: center;
}

.blog-liquid-book {
  filter:
    url(#blog-liquid-distortion)
    drop-shadow(0 30px 34px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 30px rgba(139, 108, 255, 0.3));
}

.blog-liquid-page,
.blog-liquid-spine {
  transform-box: fill-box;
  transform-origin: center bottom;
}

.blog-liquid-page-left {
  animation: blogPageLeftMove 6.2s ease-in-out infinite;
}

.blog-liquid-page-right {
  animation: blogPageRightMove 6.2s ease-in-out infinite;
}

.blog-liquid-spine {
  filter: drop-shadow(0 0 13px rgba(255, 255, 255, 0.45));
  animation: blogSpinePulse 4.4s ease-in-out infinite;
}

.blog-page-lines {
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 5;
  filter: drop-shadow(0 0 7px rgba(188, 222, 255, 0.35));
  animation: blogLinesGlow 5s ease-in-out infinite;
}

.blog-liquid-pearl {
  fill: #f4fbff;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 30px rgba(139, 108, 255, 0.8));
  transform-box: fill-box;
  transform-origin: center;
  animation: blogPearlPulse 3.8s ease-in-out infinite;
}

/* Contact liquid connection */

.liquid-contact-art .inner-liquid-aura {
  width: 72%;
  background:
    radial-gradient(circle at 32% 50%, rgba(139, 108, 255, 0.39), transparent 48%),
    radial-gradient(circle at 68% 50%, rgba(25, 230, 164, 0.25), transparent 48%);
}

.contact-infinity-glow {
  stroke: rgba(122, 94, 255, 0.26);
  stroke-width: 112;
  stroke-linecap: round;
  filter: blur(30px);
}

.contact-liquid-symbol {
  filter:
    url(#contact-liquid-distortion)
    drop-shadow(0 30px 36px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 32px rgba(139, 108, 255, 0.32));
  transform-box: fill-box;
  transform-origin: center;
  animation: contactLiquidSymbolMove 6.2s ease-in-out infinite;
}

.contact-signal-path {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 15;
  filter: drop-shadow(0 0 8px rgba(170, 227, 255, 0.65));
  animation: contactSignalPath 7s linear infinite;
}

.contact-travel-signal {
  fill: #ffffff;
  filter:
    drop-shadow(0 0 8px #ffffff)
    drop-shadow(0 0 18px #8b6cff)
    drop-shadow(0 0 28px #19e6a4);
}

.contact-pearl-highlight {
  fill: rgba(255, 255, 255, 0.72);
  transform: rotate(-25deg);
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
  animation: contactHighlightPulse 4.2s ease-in-out infinite;
}

.contact-highlight-right {
  animation-delay: -2.1s;
}

/* Minimal liquid artwork motion */

@keyframes innerLiquidAuraPulse {
  0%, 100% { opacity: 0.48; transform: scale(0.92); }
  50% { opacity: 0.84; transform: scale(1.08); }
}

@keyframes innerLiquidAuraBreath {
  0%, 100% { opacity: 0.55; transform: scale(0.93); }
  50% { opacity: 0.88; transform: scale(1.08); }
}

@keyframes innerLiquidOrbitOne {
  to { transform: translate(-50%, -50%) rotate(342deg); }
}

@keyframes innerLiquidOrbitTwo {
  to { transform: translate(-50%, -50%) rotate(-333deg); }
}

@keyframes innerLiquidArtworkFloat {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-9px) rotate(0.7deg); }
}

@keyframes innerLiquidSpark {
  0%, 100% { opacity: 0.2; transform: translateY(0) scale(0.7); }
  50% { opacity: 1; transform: translateY(-7px) scale(1.25); }
}

@keyframes solutionsLobePurple {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(5px, -7px) rotate(2deg) scale(1.035); }
}

@keyframes solutionsLobeGreen {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(7px, 4px) rotate(-2deg) scale(1.04); }
}

@keyframes solutionsLobeOrange {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-5px, 6px) rotate(2deg) scale(1.035); }
}

@keyframes solutionsCorePulse {
  0%, 100% { transform: scale(0.94) rotate(-2deg); }
  50% { transform: scale(1.07) rotate(3deg); }
}

@keyframes solutionsArcFlow {
  to { stroke-dashoffset: -84; }
}

@keyframes faqLiquidSymbolMove {
  0%, 100% { transform: translateY(0) rotate(-1.5deg) scale(0.98); }
  50% { transform: translateY(-7px) rotate(1.5deg) scale(1.025); }
}

@keyframes faqShimmerTravel {
  0%, 100% { stroke-dashoffset: 160; opacity: 0.18; }
  48%, 62% { opacity: 0.86; }
  80% { stroke-dashoffset: -120; opacity: 0.22; }
}

@keyframes faqDotHighlight {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@keyframes blogPageLeftMove {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(-1.8deg) translateY(-4px); }
}

@keyframes blogPageRightMove {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(1.8deg) translateY(-4px); }
}

@keyframes blogSpinePulse {
  0%, 100% { opacity: 0.62; transform: scaleX(0.82); }
  50% { opacity: 1; transform: scaleX(1.18); }
}

@keyframes blogLinesGlow {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.7; }
}

@keyframes blogPearlPulse {
  0%, 100% { opacity: 0.62; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes contactLiquidSymbolMove {
  0%, 100% { transform: translateY(0) rotate(-1deg) scale(0.98); }
  50% { transform: translateY(-6px) rotate(1deg) scale(1.025); }
}

@keyframes contactSignalPath {
  to { stroke-dashoffset: -100; }
}

@keyframes contactHighlightPulse {
  0%, 100% { opacity: 0.32; }
  50% { opacity: 0.92; }
}

@media (max-width: 1180px) {
  .inner-liquid-stage,
  .solution-stack-scene.inner-liquid-stage,
  .faq-visual.inner-liquid-stage,
  .blog-visual.inner-liquid-stage,
  .contact-visual.inner-liquid-stage {
    width: min(570px, 100%);
  }
}

@media (max-width: 760px) {
  .inner-liquid-stage,
  .solution-stack-scene.inner-liquid-stage,
  .faq-visual.inner-liquid-stage,
  .blog-visual.inner-liquid-stage,
  .contact-visual.inner-liquid-stage {
    width: min(100%, 420px);
    border-radius: 0;
  }

  .inner-liquid-svg {
    width: 100%;
  }

  .inner-orbit-one {
    width: 78%;
  }

  .inner-orbit-two {
    height: 82%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .liquid-minimal-art::before,
  .inner-liquid-aura,
  .inner-liquid-orbit,
  .inner-liquid-svg,
  .inner-liquid-spark,
  .solutions-liquid-lobe,
  .solutions-liquid-core,
  .solutions-energy-arc,
  .faq-liquid-symbol,
  .faq-liquid-shimmer,
  .faq-dot-highlight,
  .blog-liquid-page,
  .blog-liquid-spine,
  .blog-page-lines,
  .blog-liquid-pearl,
  .contact-liquid-symbol,
  .contact-signal-path,
  .contact-pearl-highlight {
    animation: none !important;
  }

  .liquid-minimal-art animate,
  .liquid-minimal-art animateTransform,
  .liquid-minimal-art animateMotion {
    display: none !important;
  }
}

/* =========================================================
   INNER PAGES — CINEMATIC EDITORIAL HERO
   ========================================================= */

.solutions-hero,
.faq-hero,
.blog-hero,
.contact-hero {
  --cinematic-primary: 139, 108, 255;
  --cinematic-secondary: 88, 220, 255;
  position: relative;
  min-height: 100svh;
  padding: 0 4vw;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 47%, rgba(var(--cinematic-primary), 0.15), transparent 30%),
    radial-gradient(circle at 84% 38%, rgba(var(--cinematic-secondary), 0.06), transparent 25%),
    linear-gradient(180deg, #03040b 0%, #03040d 58%, #02030a 100%);
}

.solutions-hero {
  --cinematic-secondary: 25, 230, 164;
}

.faq-hero {
  --cinematic-secondary: 88, 220, 255;
}

.blog-hero {
  --cinematic-primary: 128, 101, 255;
  --cinematic-secondary: 92, 219, 255;
}

.contact-hero {
  --cinematic-primary: 139, 108, 255;
  --cinematic-secondary: 25, 230, 164;
}

.solutions-hero::before,
.faq-hero::before,
.blog-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 44% 16% at 50% 68%, rgba(var(--cinematic-primary), 0.16), transparent 72%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.018) 50%, transparent);
}

.solutions-hero::after,
.faq-hero::after,
.blog-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 3, 9, 0.12), transparent 24%, transparent 74%, rgba(2, 3, 9, 0.8)),
    linear-gradient(90deg, rgba(2, 3, 9, 0.56), transparent 12%, transparent 88%, rgba(2, 3, 9, 0.56));
}

.solutions-hero-grid,
.faq-hero-grid,
.blog-hero-grid,
.contact-hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin: 0;
  display: block;
}

.solutions-hero-copy,
.faq-hero-copy,
.blog-hero-copy,
.contact-hero-copy {
  position: absolute;
  left: 50%;
  top: clamp(128px, 13.5vh, 168px);
  z-index: 12;
  width: min(1380px, 96vw);
  max-width: none;
  margin: 0;
  text-align: center;
  transform: translateX(-50%);
}

.solutions-hero-copy > .pill,
.faq-hero-copy > .pill,
.blog-hero-copy > .pill,
.contact-hero-copy > .pill,
.solutions-hero-copy > p,
.faq-hero-copy > p,
.blog-hero-copy > p,
.contact-hero-copy > p,
.solutions-hero-copy > .hero-actions,
.faq-hero-copy > .hero-actions,
.blog-hero-copy > .hero-actions,
.contact-hero-copy > .hero-actions {
  display: none;
}

.solutions-hero h1.cinematic-title,
.faq-hero h1.cinematic-title,
.blog-hero h1.cinematic-title,
.contact-hero h1.cinematic-title {
  max-width: none;
  margin: 0;
  color: #f8f8fb;
  font-size: inherit;
  line-height: 0.87;
  letter-spacing: -0.07em;
  font-weight: 400;
  text-wrap: balance;
}

.cinematic-title-line {
  position: relative;
  display: block;
  width: 100%;
  overflow: visible;
  text-align: center;
}

.cinematic-title-sans {
  color: rgba(255, 255, 255, 0.97);
  font-family: "Inter", sans-serif;
  font-size: clamp(58px, 7.5vw, 118px);
  line-height: 0.93;
  font-weight: 400;
  letter-spacing: -0.078em;
}

.cinematic-title-serif {
  z-index: 2;
  margin-top: -0.03em;
  padding: 0 0 0.12em;
  color: transparent;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: clamp(57px, 7.25vw, 112px);
  line-height: 0.94;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.065em;
  background: linear-gradient(98deg, #f7f7fb 2%, #d7d6df 40%, #ffffff 57%, #bdb5db 81%, #f6f7fb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 14px 34px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 30px rgba(var(--cinematic-primary), 0.1));
}

.solutions-page .cinematic-title-serif {
  font-size: clamp(48px, 5.75vw, 88px);
}

.cinematic-title .hero-reveal-word,
.cinematic-title .hero-reveal-char,
.cinematic-title .hero-reveal-space {
  overflow: visible;
}

.cinematic-title-serif .hero-reveal-char,
.cinematic-title-serif .hero-reveal-word {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cinematic-title-serif .hero-reveal-char {
  background: linear-gradient(180deg, #ffffff 0%, #e3e1e8 48%, #b7afc8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cinematic-title .hero-reveal-char {
  transform: translate3d(0, 58px, 0) rotate(3deg) scaleY(1.06);
  filter: blur(8px);
}

body.hero-intro-play .cinematic-title .hero-reveal-char {
  animation-name: cinematicCharacterReveal;
  animation-duration: 1.05s;
  animation-timing-function: cubic-bezier(0.16, 0.9, 0.24, 1);
}

.solutions-hero-visual,
.faq-hero-art,
.blog-hero-art,
.contact-hero-art {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-height: 0;
  display: block;
  perspective: none;
}

.solution-stack-scene.inner-liquid-stage,
.faq-visual.inner-liquid-stage,
.blog-visual.inner-liquid-stage,
.contact-visual.inner-liquid-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: none;
}

.solution-stack-scene.inner-liquid-stage > :not(.cinematic-hero-art),
.faq-visual.inner-liquid-stage > :not(.cinematic-hero-art),
.blog-visual.inner-liquid-stage > :not(.cinematic-hero-art),
.contact-visual.inner-liquid-stage > :not(.cinematic-hero-art) {
  display: none !important;
}

.inner-liquid-stage > .cinematic-hero-art {
  position: absolute;
  inset: 0;
  display: block !important;
  overflow: hidden;
  isolation: isolate;
}

.cinematic-hero-art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 62%;
  z-index: 0;
  width: min(920px, 74vw);
  height: min(360px, 35vh);
  border-radius: 50%;
  background: rgba(var(--cinematic-primary), 0.17);
  filter: blur(88px);
  opacity: 0.72;
  transform: translate(-50%, -50%);
  animation: cinematicAuraBreath 6s ease-in-out infinite;
}

.cinematic-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 28% at 50% 65%, transparent 42%, rgba(2, 3, 9, 0.18) 78%, rgba(2, 3, 9, 0.52) 100%),
    linear-gradient(180deg, transparent 72%, rgba(2, 3, 9, 0.74) 100%);
}

.cinematic-mesh-canvas {
  position: absolute;
  left: -10%;
  top: 29%;
  z-index: 1;
  width: 120%;
  height: 53%;
  opacity: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 74%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 74%, transparent 100%);
  transform: translateY(24px) scale(1.03);
  transition:
    opacity 1.6s ease 0.52s,
    transform 1.8s cubic-bezier(0.16, 0.9, 0.24, 1) 0.52s;
}

body.hero-intro-play .cinematic-mesh-canvas {
  opacity: 0.86;
  transform: translateY(0) scale(1);
}

.cinematic-horizon-glow {
  position: absolute;
  left: 50%;
  top: 59%;
  z-index: 2;
  width: min(1050px, 82vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--cinematic-primary), 0.2), rgba(255, 255, 255, 0.22), rgba(var(--cinematic-secondary), 0.18), transparent);
  box-shadow:
    0 0 24px rgba(var(--cinematic-primary), 0.24),
    0 0 46px rgba(var(--cinematic-secondary), 0.09);
  opacity: 0.62;
  transform: translateX(-50%);
}

.cinematic-object-shell {
  position: absolute;
  left: 50%;
  bottom: clamp(-275px, -27vh, -210px);
  z-index: 4;
  width: clamp(780px, 74vw, 1080px);
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: translate3d(-50%, 90px, 0) scale(0.88);
  transform-origin: 50% 70%;
  will-change: transform, opacity;
}

body.hero-intro-play .cinematic-object-shell {
  animation: cinematicObjectEntrance 1.75s cubic-bezier(0.16, 0.9, 0.24, 1) forwards 0.82s;
}

.cinematic-object-shell img {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 52%, #000 46%, rgba(0, 0, 0, 0.92) 68%, transparent 93%);
  mask-image: radial-gradient(ellipse 70% 62% at 50% 52%, #000 46%, rgba(0, 0, 0, 0.92) 68%, transparent 93%);
  filter:
    saturate(0.88)
    contrast(1.12)
    brightness(0.92)
    drop-shadow(0 0 28px rgba(var(--cinematic-primary), 0.26))
    drop-shadow(0 0 52px rgba(var(--cinematic-secondary), 0.1));
  animation: cinematicObjectFloat 7s ease-in-out infinite 2.4s;
}

.solutions-page .cinematic-object-shell img {
  filter:
    saturate(0.92)
    contrast(1.12)
    brightness(0.93)
    drop-shadow(0 0 30px rgba(139, 108, 255, 0.28))
    drop-shadow(0 0 52px rgba(25, 230, 164, 0.1));
}

.contact-page .cinematic-object-shell img {
  filter:
    saturate(0.84)
    hue-rotate(7deg)
    contrast(1.12)
    brightness(0.9)
    drop-shadow(0 0 32px rgba(139, 108, 255, 0.25))
    drop-shadow(0 0 55px rgba(25, 230, 164, 0.12));
}

.cinematic-object-halo {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 1;
  width: 57%;
  aspect-ratio: 1.36 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 44%, rgba(255, 255, 255, 0.12), rgba(var(--cinematic-primary), 0.24) 36%, transparent 72%);
  filter: blur(48px);
  transform: translate(-50%, -50%);
  animation: cinematicObjectHalo 5.4s ease-in-out infinite;
}

.cinematic-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 10;
  width: 70px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(4, 5, 13, 0.38);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, 16px);
}

body.hero-intro-play .cinematic-scroll-cue {
  animation: cinematicCueEntrance 0.9s cubic-bezier(0.16, 0.9, 0.24, 1) forwards 1.9s;
}

.cinematic-scroll-cue i {
  position: relative;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.82);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.82);
  transform: rotate(45deg) translate(-2px, -2px);
  animation: cinematicCueFloat 2.1s ease-in-out infinite 2.8s;
}

@keyframes cinematicCharacterReveal {
  0% {
    opacity: 0;
    filter: blur(9px);
    transform: translate3d(0, 58px, 0) rotate(3deg) scaleY(1.07);
  }

  58% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0) scaleY(1);
  }
}

@keyframes cinematicObjectEntrance {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 90px, 0) scale(0.88);
    filter: blur(8px);
  }

  62% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes cinematicObjectFloat {
  0%, 100% { transform: translateY(0) rotate(-0.45deg) scale(1); }
  50% { transform: translateY(-9px) rotate(0.55deg) scale(1.012); }
}

@keyframes cinematicAuraBreath {
  0%, 100% { opacity: 0.48; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 0.82; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes cinematicObjectHalo {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 0.86; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes cinematicCueEntrance {
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes cinematicCueFloat {
  0%, 100% { transform: rotate(45deg) translate(-2px, -2px); }
  50% { transform: rotate(45deg) translate(2px, 2px); }
}

@media (max-width: 1100px) {
  .solutions-hero-copy,
  .faq-hero-copy,
  .blog-hero-copy,
  .contact-hero-copy {
    top: clamp(126px, 13vh, 154px);
    width: 94vw;
  }

  .cinematic-title-sans {
    font-size: clamp(54px, 8.5vw, 88px);
  }

  .cinematic-title-serif {
    font-size: clamp(53px, 8.2vw, 86px);
  }

  .solutions-page .cinematic-title-serif {
    font-size: clamp(42px, 6.7vw, 68px);
  }

  .cinematic-object-shell {
    bottom: clamp(-250px, -25vh, -185px);
    width: clamp(700px, 88vw, 900px);
  }
}

@media (max-width: 760px) {
  .solutions-hero,
  .faq-hero,
  .blog-hero,
  .contact-hero {
    min-height: max(760px, 100svh);
    padding: 0 5vw;
  }

  .solutions-hero-grid,
  .faq-hero-grid,
  .blog-hero-grid,
  .contact-hero-grid {
    min-height: max(760px, 100svh);
  }

  .solutions-hero-copy,
  .faq-hero-copy,
  .blog-hero-copy,
  .contact-hero-copy {
    top: 126px;
    width: 92vw;
  }

  .cinematic-title-sans {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.068em;
  }

  .cinematic-title-serif {
    margin-top: 0.03em;
    font-size: clamp(43px, 12.2vw, 59px);
    line-height: 0.93;
    letter-spacing: -0.055em;
  }

  .solutions-page .cinematic-title-serif {
    max-width: 94vw;
    margin: 0.12em auto 0;
    font-size: clamp(30px, 8.7vw, 42px);
    line-height: 0.98;
  }

  .contact-page .cinematic-title-sans {
    font-size: clamp(37px, 10.8vw, 50px);
  }

  .cinematic-title .hero-reveal-char {
    transform: translate3d(0, 38px, 0) rotate(2deg) scaleY(1.04);
    filter: blur(6px);
  }

  .cinematic-mesh-canvas {
    left: -30%;
    top: 34%;
    width: 160%;
    height: 47%;
  }

  .cinematic-horizon-glow {
    top: 61%;
    width: 120vw;
  }

  .cinematic-object-shell {
    bottom: -125px;
    width: min(680px, 162vw);
  }

  .cinematic-scroll-cue {
    bottom: 24px;
    width: 62px;
    height: 31px;
  }
}

@media (max-width: 430px) {
  .solutions-hero-copy,
  .faq-hero-copy,
  .blog-hero-copy,
  .contact-hero-copy {
    top: 118px;
  }

  .cinematic-title-sans {
    font-size: clamp(38px, 11.5vw, 47px);
  }

  .cinematic-title-serif {
    font-size: clamp(39px, 11.8vw, 48px);
  }

  .solutions-page .cinematic-title-serif {
    font-size: clamp(28px, 8.25vw, 35px);
  }

  .contact-page .cinematic-title-sans {
    font-size: clamp(34px, 10.2vw, 42px);
  }

  .cinematic-object-shell {
    bottom: -94px;
    width: 166vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-hero-art::before,
  .cinematic-object-shell img,
  .cinematic-object-halo,
  .cinematic-scroll-cue i {
    animation: none !important;
  }

  .cinematic-mesh-canvas,
  .cinematic-object-shell,
  .cinematic-scroll-cue {
    opacity: 1 !important;
    transform: translate(-50%, 0) scale(1) !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
  }

  .cinematic-mesh-canvas {
    transform: none !important;
  }
}

/* =========================================================
   INNER PAGES — TYPOGRAPHY-ONLY HERO
   ========================================================= */

.solutions-hero-copy,
.faq-hero-copy,
.blog-hero-copy,
.contact-hero-copy {
  top: 50%;
  transform: translate(-50%, -50%);
}

.solutions-hero-visual,
.faq-hero-art,
.blog-hero-art,
.contact-hero-art {
  display: none !important;
}

@media (max-width: 760px) {
  .solutions-hero-copy,
  .faq-hero-copy,
  .blog-hero-copy,
  .contact-hero-copy {
    top: 48%;
  }
}

/* =========================================================
   INNER PAGES — UNIFIED TYPE & PURPLE LIGHT SWEEP
   ========================================================= */

.solutions-hero h1.cinematic-title,
.faq-hero h1.cinematic-title,
.blog-hero h1.cinematic-title,
.contact-hero h1.cinematic-title {
  position: relative;
  padding: 0.12em 0.08em 0.22em;
  overflow: visible;
  line-height: 1;
  letter-spacing: 0;
}

.cinematic-title-line {
  padding: 0.08em 0.1em 0.18em;
  overflow: visible;
}

.cinematic-title-sans,
.cinematic-title-serif {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.058em;
}

.cinematic-title-serif {
  margin-top: 0.1em;
  padding-top: 0.08em;
  padding-bottom: 0.2em;
  font-weight: 500;
  letter-spacing: -0.052em;
}

.solutions-page .cinematic-title-serif {
  margin-top: 0.18em;
  letter-spacing: -0.045em;
}

.cinematic-title .hero-reveal-word,
.cinematic-title .hero-reveal-char {
  overflow: visible;
}

.cinematic-title .hero-reveal-char {
  padding-block: 0.08em 0.18em;
  margin-block: -0.08em -0.18em;
}

.cinematic-title .hero-reveal-space {
  width: 0.31em;
}

.inner-hero-purple-sweep {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 10;
  width: min(1150px, 100vw);
  height: 680px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -150px, 0) scale(1);
  background: radial-gradient(
    ellipse at center,
    rgba(217, 200, 255, 0.55) 0%,
    rgba(139, 108, 255, 0.42) 24%,
    rgba(139, 108, 255, 0.22) 48%,
    rgba(139, 108, 255, 0.09) 70%,
    transparent 86%
  );
  filter: blur(38px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.solutions-hero.glow-active .inner-hero-purple-sweep,
.faq-hero.glow-active .inner-hero-purple-sweep,
.blog-hero.glow-active .inner-hero-purple-sweep,
.contact-hero.glow-active .inner-hero-purple-sweep,
.scroll-glow-section.glow-active > .inner-hero-purple-sweep {
  animation: sectionGlowDrop 2.35s cubic-bezier(0.16, 0.84, 0.33, 1) both;
}

.solutions-hero,
.faq-hero,
.blog-hero,
.contact-hero,
.solutions-hero-grid,
.faq-hero-grid,
.blog-hero-grid,
.contact-hero-grid {
  min-height: clamp(600px, 64svh, 700px);
}

.solutions-hero-copy,
.faq-hero-copy,
.blog-hero-copy,
.contact-hero-copy {
  top: 55%;
}

.solutions-overview,
.faq-section,
.contact-section {
  padding-top: 54px;
}

.blog-controls-section {
  padding-top: 54px;
}

@media (max-width: 760px) {
  .solutions-hero,
  .faq-hero,
  .blog-hero,
  .contact-hero,
  .solutions-hero-grid,
  .faq-hero-grid,
  .blog-hero-grid,
  .contact-hero-grid {
    min-height: clamp(520px, 64svh, 600px);
  }

  .cinematic-title-sans,
  .cinematic-title-serif {
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .cinematic-title-serif,
  .solutions-page .cinematic-title-serif {
    margin-top: 0.14em;
    padding-bottom: 0.24em;
  }

  .inner-hero-purple-sweep {
    width: 120vw;
    height: 540px;
    filter: blur(36px);
  }

  .solutions-overview,
  .faq-section,
  .contact-section,
  .blog-controls-section {
    padding-top: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-hero-purple-sweep,
  .solutions-hero.glow-active .inner-hero-purple-sweep,
  .faq-hero.glow-active .inner-hero-purple-sweep,
  .blog-hero.glow-active .inner-hero-purple-sweep,
  .contact-hero.glow-active .inner-hero-purple-sweep,
  .scroll-glow-section.glow-active > .inner-hero-purple-sweep {
    animation: none !important;
    opacity: 0.12;
    transform: translate3d(-50%, 40px, 0) scale(1);
  }
}

/* =========================================================
   FOOTER LEGAL NAVIGATION
   ========================================================= */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.22s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: linear-gradient(90deg, #8b6cff, #19e6a4);
  transition: right 0.25s ease;
}

.footer-links a:hover,
.footer-links a.active {
  color: #ffffff;
}

.footer-links a:hover::after,
.footer-links a.active::after {
  right: 0;
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-page {
  scroll-padding-top: 112px;
}

.legal-hero {
  position: relative;
  min-height: clamp(560px, 68svh, 760px);
  padding-top: 140px;
  padding-bottom: 90px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 58%, rgba(139, 108, 255, 0.14), transparent 35%),
    radial-gradient(circle at 84% 32%, rgba(25, 230, 164, 0.045), transparent 25%),
    linear-gradient(180deg, #03040b 0%, #040510 100%);
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 4, 13, 0.5), transparent 18%, transparent 82%, rgba(3, 4, 13, 0.5)),
    linear-gradient(180deg, transparent 64%, rgba(3, 4, 13, 0.72));
}

.legal-hero.scroll-glow-section::after {
  content: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 12;
  width: min(1120px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.legal-hero .pill {
  width: max-content;
  margin: 0 auto 28px;
}

.legal-title {
  margin: 0;
  padding: 0.09em 0.08em 0.18em;
  overflow: visible;
  color: #ffffff;
  font-size: clamp(68px, 8.4vw, 132px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.078em;
  text-wrap: balance;
}

.legal-title .hero-reveal-word,
.legal-title .hero-reveal-char {
  overflow: visible;
}

.legal-title .hero-reveal-char {
  padding-block: 0.08em 0.17em;
  margin-block: -0.08em -0.17em;
}

.legal-subtitle {
  max-width: 850px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}

.legal-meta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.67);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

.legal-content-section {
  position: relative;
  padding-top: 84px;
  padding-bottom: 140px;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 108, 255, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(4, 5, 16, 0.96), #03040d 24%);
}

.legal-layout {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 112px;
  padding: 24px 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background:
    radial-gradient(circle at 15% 0%, rgba(139, 108, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.legal-toc-label {
  display: block;
  padding: 0 10px 14px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.legal-toc nav {
  max-height: calc(100svh - 195px);
  padding-right: 5px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 108, 255, 0.42) transparent;
}

.legal-toc nav a {
  min-height: 42px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  align-items: start;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
  line-height: 1.35;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.legal-toc nav a span {
  color: rgba(139, 108, 255, 0.88);
  font-size: 10px;
  font-weight: 800;
}

.legal-toc nav a:hover {
  color: #ffffff;
  background: rgba(139, 108, 255, 0.1);
  transform: translateX(3px);
}

.legal-document {
  width: min(980px, 100%);
  min-width: 0;
}

.legal-intro {
  margin-bottom: 22px;
  padding: clamp(27px, 3.4vw, 42px);
  border: 1px solid rgba(139, 108, 255, 0.24);
  border-radius: 28px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 88% 0%, rgba(139, 108, 255, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.8;
}

.legal-intro p {
  margin: 0;
}

.legal-section {
  scroll-margin-top: 112px;
  padding: clamp(42px, 5vw, 68px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-section h2 {
  margin: 0 0 27px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  color: #ffffff;
  font-size: clamp(25px, 2.8vw, 39px);
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.legal-section h2 > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 108, 255, 0.3);
  border-radius: 12px;
  color: #cfc3ff;
  background: rgba(139, 108, 255, 0.09);
  box-shadow: 0 0 26px rgba(139, 108, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.legal-section p,
.legal-section li {
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.85;
}

.legal-section p + p {
  margin-top: 16px;
}

.legal-section ul {
  margin: 20px 0;
  padding-left: 24px;
  display: grid;
  gap: 12px;
}

.legal-section li::marker {
  color: #8b6cff;
}

.legal-section strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

.legal-section a {
  color: #cfc3ff;
  text-decoration: underline;
  text-decoration-color: rgba(139, 108, 255, 0.42);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.legal-section a:hover {
  color: #ffffff;
  text-decoration-color: #8b6cff;
}

.legal-clause {
  margin-right: 8px;
  color: #b7a8ff;
  font-size: 0.86em;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.legal-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 2px solid #8b6cff;
  border-radius: 0 14px 14px 0;
  background: rgba(139, 108, 255, 0.07);
}

.legal-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 25px 0;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.17);
}

.legal-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  table-layout: fixed;
}

.legal-table th,
.legal-table td {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

.legal-table th:last-child,
.legal-table td:last-child {
  border-right: 0;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  color: #ffffff;
  background: rgba(139, 108, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-table td {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
}

.legal-table td:first-child {
  width: 24%;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}

.legal-table td:last-child {
  width: 21%;
}

.legal-table-two-column td:first-child,
.legal-table-two-column td:last-child {
  width: 50%;
}

.legal-product-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.legal-product-notes > div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 108, 255, 0.11), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.legal-product-notes > div > strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 15px;
}

.legal-product-notes p {
  font-size: 13px;
  line-height: 1.7;
}

.legal-contact-section {
  margin-top: 34px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(139, 108, 255, 0.24);
  border-radius: 27px;
  background:
    radial-gradient(circle at 92% 12%, rgba(25, 230, 164, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(139, 108, 255, 0.1), rgba(255, 255, 255, 0.025));
}

.legal-contact-section h2 {
  margin-bottom: 20px;
}

@media (max-width: 1050px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-toc {
    position: relative;
    top: auto;
  }

  .legal-toc nav {
    max-height: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 12px;
  }

  .legal-document {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .footer {
    padding-top: 28px;
    padding-bottom: 28px;
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    gap: 20px;
  }

  .legal-hero {
    min-height: 540px;
    padding: 126px 5vw 70px;
  }

  .legal-title {
    font-size: clamp(52px, 15vw, 72px);
    line-height: 1;
    letter-spacing: -0.066em;
  }

  .legal-subtitle {
    font-size: 15px;
  }

  .legal-content-section {
    padding: 54px 5vw 100px;
  }

  .legal-toc {
    padding: 21px 15px;
    border-radius: 22px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-section {
    padding: 44px 0;
  }

  .legal-section h2 {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    font-size: clamp(23px, 7.7vw, 32px);
  }

  .legal-section h2 > span {
    width: 38px;
    height: 38px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 14px;
    line-height: 1.78;
  }

  .legal-table-wrap {
    margin-right: -1vw;
    border-radius: 18px;
  }

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

  .legal-contact-section {
    padding: 25px 22px;
  }
}

/* =========================================================
   INNER PAGE INTROS — SHOWCASE TYPOGRAPHY, NEUTRAL TYPE
   ========================================================= */

.solutions-page .cinematic-title-sans,
.faq-page .cinematic-title-sans,
.blog-page .cinematic-title-sans,
.contact-page .cinematic-title-sans,
.legal-page .cinematic-title-sans {
  color: rgba(255, 255, 255, 0.98);
  font-family: "Inter", sans-serif;
  font-size: clamp(58px, 8.2vw, 132px);
  font-style: normal;
  font-weight: 580;
  line-height: 0.9;
  letter-spacing: -0.082em;
}

.solutions-page .cinematic-title-serif,
.faq-page .cinematic-title-serif,
.blog-page .cinematic-title-serif,
.contact-page .cinematic-title-serif,
.legal-page .cinematic-title-serif {
  margin-top: -0.015em;
  padding: 0.02em 0.08em 0.15em;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 9.1vw, 145px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.07em;
  background: linear-gradient(105deg, #ffffff 4%, #e7e8ec 44%, #b7bcc7 78%, #f8f9fb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 14px 34px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.035));
}

.solutions-page .cinematic-title-serif .hero-reveal-char,
.faq-page .cinematic-title-serif .hero-reveal-char,
.blog-page .cinematic-title-serif .hero-reveal-char,
.contact-page .cinematic-title-serif .hero-reveal-char,
.legal-page .cinematic-title-serif .hero-reveal-char {
  background: linear-gradient(180deg, #ffffff 0%, #e5e6ea 50%, #b7bcc7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions-page .cinematic-title-sans {
  font-size: clamp(56px, 7.4vw, 116px);
}

.solutions-page .cinematic-title-serif {
  margin-top: 0.08em;
  font-size: clamp(47px, 5.9vw, 91px);
  letter-spacing: -0.058em;
}

.contact-page .cinematic-title-sans {
  font-size: clamp(54px, 7.35vw, 112px);
}

.legal-page .legal-hero {
  min-height: clamp(620px, 76svh, 820px);
}

.legal-page .legal-title.cinematic-title {
  width: 100%;
  margin: 0;
  padding: 0.08em 0.08em 0.18em;
  line-height: 1;
  letter-spacing: 0;
}

.legal-page .legal-title .cinematic-title-line {
  display: block;
  width: 100%;
  padding-inline: 0.08em;
  overflow: visible;
  text-align: center;
}

.legal-page .legal-title .cinematic-title-sans {
  font-size: clamp(62px, 7.7vw, 120px);
}

.legal-page .legal-title .cinematic-title-serif {
  font-size: clamp(70px, 8.8vw, 138px);
}

.legal-page .legal-hero .pill {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.legal-page .legal-hero .pill span {
  background: #e8ebf1;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.32);
}

@media (max-width: 760px) {
  .solutions-page .cinematic-title-sans,
  .faq-page .cinematic-title-sans,
  .blog-page .cinematic-title-sans,
  .contact-page .cinematic-title-sans {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.068em;
  }

  .solutions-page .cinematic-title-serif,
  .faq-page .cinematic-title-serif,
  .blog-page .cinematic-title-serif,
  .contact-page .cinematic-title-serif {
    margin-top: 0.04em;
    font-size: clamp(47px, 13vw, 63px);
    line-height: 0.91;
    letter-spacing: -0.055em;
  }

  .solutions-page .cinematic-title-serif {
    margin-top: 0.13em;
    font-size: clamp(31px, 8.8vw, 43px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .contact-page .cinematic-title-sans {
    font-size: clamp(38px, 10.8vw, 51px);
  }

  .legal-page .legal-hero {
    min-height: 600px;
    padding: 126px 5vw 66px;
  }

  .legal-page .legal-title .cinematic-title-sans {
    font-size: clamp(50px, 14vw, 68px);
  }

  .legal-page .legal-title .cinematic-title-serif {
    font-size: clamp(58px, 16vw, 78px);
  }
}

@media (max-width: 430px) {
  .solutions-page .cinematic-title-sans,
  .faq-page .cinematic-title-sans,
  .blog-page .cinematic-title-sans {
    font-size: clamp(39px, 11.5vw, 48px);
  }

  .faq-page .cinematic-title-serif,
  .blog-page .cinematic-title-serif {
    font-size: clamp(43px, 12.6vw, 53px);
  }

  .solutions-page .cinematic-title-serif {
    font-size: clamp(29px, 8.35vw, 36px);
  }

  .contact-page .cinematic-title-sans {
    font-size: clamp(35px, 10.2vw, 43px);
  }

  .contact-page .cinematic-title-serif {
    font-size: clamp(42px, 12.4vw, 52px);
  }
}
