.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.reveal {
  transition-property: opacity, transform, box-shadow, border-color, background-color;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border: 1px solid #1769ff;
  background: #1769ff;
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 105, 255, 0.22);
}

.btn-primary:hover {
  background: #0d56df;
}

.btn-secondary {
  border: 1px solid #d5deec;
  background: #fff;
  color: #22355e;
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: #1769ff;
  color: #1769ff;
}

.btn-ghost {
  border: 1px solid #d5deec;
  background: rgba(255, 255, 255, 0.8);
  color: #22355e;
}

.btn-dark {
  border: 1px solid #0b1736;
  background: #0b1736;
  color: #fff;
}

.btn-dark:hover {
  background: #12285f;
}

.btn-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.desktop-nav > a,
.desktop-nav .group > button {
  position: relative;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding-inline: 16px;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.desktop-nav > a:hover,
.desktop-nav .group > button:hover,
.desktop-nav .group:focus-within > button {
  color: #1769ff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
  border-color: rgba(23, 105, 255, 0.1);
  box-shadow: 0 12px 28px rgba(11, 23, 54, 0.06);
  transform: translateY(-1px);
}

.desktop-nav .group > button i {
  color: #7f8da8;
  transition:
    transform 0.24s ease,
    color 0.24s ease;
}

.desktop-nav .group:hover > button i,
.desktop-nav .group:focus-within > button i {
  color: #1769ff;
}

.desktop-nav .group > div {
  overflow: hidden;
  border: 1px solid rgba(214, 226, 245, 0.9) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96)) !important;
  padding: 10px !important;
  box-shadow:
    0 24px 64px rgba(11, 23, 54, 0.12),
    0 6px 20px rgba(23, 105, 255, 0.06) !important;
  backdrop-filter: blur(18px);
}

.desktop-nav .group > div::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(23, 105, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 122, 31, 0.07), transparent 24%);
  pointer-events: none;
}

.desktop-nav .group > div > a {
  position: relative;
  z-index: 1;
  gap: 14px !important;
  min-height: 72px;
  border: 1px solid transparent;
  border-radius: 18px !important;
  padding: 12px 14px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.35;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.desktop-nav .group > div > a:hover,
.desktop-nav .group > div > a:focus-visible {
  color: #0f4fda !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(23, 105, 255, 0.12);
  box-shadow: 0 14px 28px rgba(17, 32, 79, 0.08);
  transform: translateX(4px);
  outline: none;
}

.desktop-nav .group > div > a > span:first-child {
  width: 46px !important;
  height: 46px !important;
  border-radius: 15px !important;
  background:
    linear-gradient(180deg, rgba(236, 244, 255, 0.95), rgba(228, 238, 255, 0.9)) !important;
  color: #1769ff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 18px rgba(23, 105, 255, 0.08);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.desktop-nav .group > div > a:hover > span:first-child,
.desktop-nav .group > div > a:focus-visible > span:first-child {
  transform: scale(1.05);
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.14), rgba(255, 122, 31, 0.12)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 24px rgba(23, 105, 255, 0.14);
}

.desktop-nav .group > div > a > span:last-child {
  display: block;
  max-width: 320px;
}

.desktop-nav .group > div > a strong {
  display: block;
  color: #22355e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.22s ease;
}

.desktop-nav .group > div > a small {
  display: block;
  margin-top: 4px;
  color: #6d7b98;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  transition: color 0.22s ease;
}

.desktop-nav .group > div > a:hover strong,
.desktop-nav .group > div > a:focus-visible strong {
  color: #0f4fda;
}

.desktop-nav .group > div > a:hover small,
.desktop-nav .group > div > a:focus-visible small {
  color: #58709e;
}

.faq-item {
  transition:
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}

.faq-item[open] {
  background: rgba(248, 251, 255, 0.72);
}

.faq-item summary {
  transition: color 0.24s ease;
}

.faq-item summary:hover {
  color: #1769ff;
}

.faq-answer {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.faq-item[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: min(440px, calc(100vw - 32px));
  border: 1px solid rgba(214, 226, 245, 0.95);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  box-shadow:
    0 22px 60px rgba(11, 23, 54, 0.16),
    0 8px 24px rgba(23, 105, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  visibility: hidden;
  pointer-events: none;
}

.cookie-consent__body {
  padding: 20px;
}

.cookie-consent__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #1769ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cookie-consent__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.cookie-consent__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(23, 105, 255, 0.14);
  border-radius: 999px;
  background: rgba(244, 248, 255, 0.92);
  padding: 6px 10px;
  color: #1769ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent__title {
  margin: 0;
  color: #0b1736;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.cookie-consent__text {
  margin: 10px 0 0;
  color: #60708f;
  font-size: 14px;
  line-height: 1.7;
}

.cookie-consent__meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  border-radius: 18px;
  background: rgba(244, 248, 255, 0.72);
  padding: 12px 14px;
}

.cookie-consent__meta-item {
  display: flex;
  gap: 10px;
}

.cookie-consent__meta-item i {
  margin-top: 2px;
  color: #1769ff;
}

.cookie-consent__meta-item strong {
  display: block;
  color: #0b1736;
  font-size: 13px;
  font-weight: 700;
}

.cookie-consent__meta-item span {
  display: block;
  margin-top: 2px;
  color: #60708f;
  font-size: 12px;
  line-height: 1.5;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-consent__link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1769ff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cookie-consent__link:hover {
  color: #0d56df;
}

@media (max-width: 640px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    border-radius: 20px;
  }

  .cookie-consent__body {
    padding: 16px;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__actions .btn {
    width: 100%;
  }
}

.platform-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.82)),
    url("../images/hero-back.png") center top / cover no-repeat;
}

.platform-hero-world {
  position: absolute;
  top: 92px;
  width: 430px;
  height: 240px;
  background-image: radial-gradient(rgba(23, 105, 255, 0.18) 1.4px, transparent 1.6px);
  background-size: 8px 8px;
  opacity: 0.8;
  filter: blur(0.1px);
}

.platform-hero-world-left {
  left: -20px;
  mask-image: radial-gradient(circle at 38% 48%, #000 0 52%, transparent 73%);
}

.platform-hero-world-right {
  right: -20px;
  mask-image: radial-gradient(circle at 62% 48%, #000 0 52%, transparent 73%);
}

.platform-hero-network {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 73%, rgba(23, 105, 255, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 60%, rgba(23, 105, 255, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 48%, rgba(23, 105, 255, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 66% 50%, rgba(23, 105, 255, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 61%, rgba(23, 105, 255, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 74%, rgba(23, 105, 255, 0.14) 0 2px, transparent 3px);
  opacity: 0.8;
}

.platform-hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.platform-hero-eyebrow {
  display: inline-flex;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(23, 105, 255, 0.12);
  background: rgba(255, 255, 255, 0.94);
  padding: 12px 28px;
  color: #1769ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(11, 23, 54, 0.06);
}

.platform-hero-copy h1 {
  margin: 18px 0 0;
  color: #0b1736;
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.platform-hero-copy h1 span {
  background: linear-gradient(90deg, #1769ff 0%, #3f7cff 52%, #ff7a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.platform-hero-copy h1 .platform-hero-gradient-word {
  background: linear-gradient(90deg, #1769ff 0%, #6c63ff 52%, #ff7a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: gradientShift 8s ease-in-out infinite;
}

.home-site-header {
  box-shadow: none;
  border-bottom-color: transparent !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.14)) !important;
  backdrop-filter: blur(10px);
}

.home-platform-hero {
  margin-top: -76px;
  padding-top: calc(76px + 26px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.24)),
    url("../images/bg.png") center top / contain no-repeat;
}

.home-platform-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 18%, rgba(255, 255, 255, 0) 30%);
  pointer-events: none;
}

.home-platform-hero .platform-hero-world,
.home-platform-hero .platform-hero-network {
  display: none;
}

.home-platform-hero .platform-hero-copy h1 {
  font-size: clamp(2.65rem, 4.45vw, 4.6rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.home-platform-hero .platform-hero-copy h1 span {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #0b1736;
}

.home-platform-hero .platform-hero-copy h1 .platform-hero-gradient-word {
  background: linear-gradient(90deg, #1769ff 0%, #6c63ff 52%, #ff7a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: gradientShift 8s ease-in-out infinite;
}

.home-platform-hero .platform-hero-description {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
}

.home-platform-hero .platform-kpi-strip {
  max-width: 1020px;
}

.home-platform-hero .platform-hero-dashboard {
  max-width: 920px;
  margin-top: 26px;
}

.home-platform-hero .platform-hero-dashboard-frame {
  position: relative;
  overflow: hidden;
}

.home-platform-hero .platform-hero-dashboard-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(116, 98, 255, 0.12), transparent 18%, transparent 82%, rgba(255, 122, 31, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.home-platform-hero .platform-hero-dashboard-frame::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -24px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 114, 246, 0.2), rgba(92, 114, 246, 0) 70%);
  filter: blur(14px);
  pointer-events: none;
  animation: dashboardGlow 6s ease-in-out infinite;
}

.home-platform-hero .platform-hero-dashboard-frame img {
  position: relative;
  z-index: 0;
}

.ai-copilot-section {
  position: relative;
}

.ai-robot-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 254, 255, 0.99) 100%),
    radial-gradient(circle at 14% 28%, rgba(75, 127, 255, 0.05), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(114, 91, 255, 0.035), transparent 18%);
  box-shadow:
    0 24px 60px rgba(11, 23, 54, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.ai-robot-visual {
  position: relative;
}

.ai-robot-visual::before {
  content: "";
  position: absolute;
  inset: 8% 12% 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223, 235, 255, 0.65) 0%, rgba(236, 243, 255, 0.28) 55%, transparent 75%);
  filter: blur(6px);
}

.ai-robot-image {
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.01);
}

.ai-robot-world {
  position: absolute;
  width: 410px;
  height: 185px;
  background-image: radial-gradient(rgba(74, 128, 255, 0.16) 1.2px, transparent 1.4px);
  background-size: 8px 8px;
  opacity: 0.75;
  pointer-events: none;
}

.ai-robot-world-left {
  top: 34px;
  left: -128px;
  mask-image: radial-gradient(circle at 58% 52%, #000 0 52%, transparent 72%);
  opacity: 0.2;
}

.ai-robot-world-right {
  top: 22px;
  right: -96px;
  mask-image: radial-gradient(circle at 42% 50%, #000 0 56%, transparent 76%);
}

.ai-robot-visual {
  animation: aiVisualFloat 6.5s ease-in-out infinite;
}

.ai-robot-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 98px;
  padding-right: 14px;
  border-right: 1px solid rgba(213, 226, 251, 0.9);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.ai-robot-feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef4ff 0%, #e5efff 100%);
  color: #3d73ff;
  font-size: 18px;
}

.ai-robot-feature-icon.is-blue {
  background: linear-gradient(180deg, #eef4ff 0%, #dfeaff 100%);
  color: #2d6dff;
}

.ai-robot-feature-icon.is-indigo {
  background: linear-gradient(180deg, #f0ecff 0%, #e6deff 100%);
  color: #5f57ff;
}

.ai-robot-feature-icon.is-cyan {
  background: linear-gradient(180deg, #ebfbff 0%, #daf6ff 100%);
  color: #18a7da;
}

.ai-robot-feature-icon.is-violet {
  background: linear-gradient(180deg, #f3edff 0%, #e8deff 100%);
  color: #6b46ff;
}

.ai-robot-feature p {
  margin: 0;
  color: #0b1736;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.ai-robot-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 149, 228, 0.75);
}

.ai-robot-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 98px;
  padding-left: 16px;
  border-left: 1px solid rgba(213, 226, 251, 0.9);
}

.ai-robot-cta-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 18px;
  background: linear-gradient(90deg, #2d6dff 0%, #6a3dff 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 24px 48px rgba(64, 94, 255, 0.22);
}

.ai-robot-cta-button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.ai-robot-cta p {
  margin: 0;
  color: #60708f;
  font-size: 12px;
  line-height: 1.5;
}

.industry-showcase-section {
  position: relative;
  margin-top: 0;
}

.industry-showcase-section::before {
  content: none;
}

.industry-showcase-section > .container {
  position: relative;
  z-index: 1;
}

.industry-showcase-section article,
.faq-item,
.reveal.rounded-\[28px\],
.reveal.rounded-\[22px\] {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  box-shadow:
    0 18px 46px rgba(11, 23, 54, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.industry-showcase-section article:hover,
.faq-item:hover,
.reveal.rounded-\[28px\]:hover,
.reveal.rounded-\[22px\]:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 64px rgba(11, 23, 54, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  border-color: rgba(166, 192, 243, 0.95);
}

.ai-copilot-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(241, 246, 255, 0.96) 100%),
    radial-gradient(circle at 12% 20%, rgba(96, 156, 255, 0.16), transparent 28%),
    radial-gradient(circle at 83% 78%, rgba(255, 122, 31, 0.12), transparent 24%),
    radial-gradient(circle at 56% 46%, rgba(130, 151, 255, 0.08), transparent 32%);
  backdrop-filter: blur(10px);
}

.ai-copilot-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  animation: aiCopilotFloat 9s ease-in-out infinite;
}

.ai-copilot-orb-left {
  top: -58px;
  left: -36px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(71, 128, 255, 0.16) 0%, rgba(71, 128, 255, 0.02) 68%, transparent 74%);
}

.ai-copilot-orb-right {
  right: -22px;
  bottom: -74px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 122, 31, 0.12) 0%, rgba(111, 140, 255, 0.05) 48%, transparent 72%);
  animation-delay: -3.5s;
}

.ai-copilot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(145, 171, 227, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 171, 227, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85) 0%, transparent 82%);
}

.ai-copilot-shell > .grid {
  position: relative;
  z-index: 1;
}

.ai-copilot-pill,
.ai-copilot-response,
.ai-copilot-actions,
.ai-copilot-action-item,
.ai-copilot-bubble {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.ai-copilot-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 105, 255, 0.18);
  box-shadow: 0 18px 34px rgba(52, 92, 190, 0.1);
}

.ai-copilot-bubble {
  animation: aiCopilotBubble 5.5s ease-in-out infinite;
}

.ai-copilot-response {
  position: relative;
}

.ai-copilot-response::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 105, 255, 0.14), transparent);
}

.ai-copilot-response:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(11, 23, 54, 0.1);
}

.ai-copilot-actions {
  position: relative;
}

.ai-copilot-actions::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(235, 240, 250, 0.9);
  pointer-events: none;
}

.ai-copilot-action-item:hover {
  transform: translateX(4px);
  background: linear-gradient(90deg, rgba(244, 248, 255, 0.96), rgba(255, 255, 255, 0.96));
}

@keyframes aiCopilotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 14px, 0) scale(1.04);
  }
}

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

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes dashboardGlow {
  0%,
  100% {
    opacity: 0.75;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.06);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .platform-hero-gradient-word,
  .home-platform-hero .platform-hero-copy h1 .platform-hero-gradient-word,
  .ai-robot-visual,
  .home-platform-hero .platform-hero-dashboard-frame::after {
    animation: none;
  }

  .ai-copilot-orb,
  .ai-copilot-bubble {
    animation: none;
  }

  .ai-copilot-pill,
  .ai-copilot-response,
  .ai-copilot-actions,
  .ai-copilot-action-item,
  .ai-copilot-bubble {
    transition: none;
  }

  .industry-showcase-section article,
  .faq-item,
  .reveal.rounded-\[28px\],
  .reveal.rounded-\[22px\],
  .ai-robot-feature,
  .reveal,
  .btn {
    transition: none;
  }
}

.platform-hero-description {
  max-width: 760px;
  margin: 18px auto 0;
  color: #47618d;
  font-size: 18px;
  line-height: 1.55;
}

.platform-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.platform-hero-actions .btn {
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 15px;
}

.platform-hero-actions .btn-secondary {
  border-color: rgba(23, 105, 255, 0.28);
}

.platform-kpi-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 32px auto 0;
}

.platform-kpi-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 18px;
  border: 1px solid rgba(23, 105, 255, 0.08);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 16px;
  box-shadow: 0 16px 38px rgba(11, 23, 54, 0.06);
}

.platform-kpi-card span,
.platform-kpi-card small {
  display: block;
}

.platform-kpi-card span {
  color: #5a6f95;
  font-size: 12px;
  font-weight: 600;
}

.platform-kpi-card strong {
  display: block;
  margin-top: 2px;
  color: #0b1736;
  font-size: 18px;
  line-height: 1.15;
}

.platform-kpi-card small {
  margin-top: 8px;
  color: #2ba971;
  font-size: 11px;
  font-weight: 700;
}

.platform-kpi-card:nth-child(4) small {
  color: #e25151;
}

.platform-kpi-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #edf4ff;
  color: #1769ff;
  font-size: 16px;
}

.platform-kpi-icon.is-purple {
  background: #f2edff;
  color: #6f56ff;
}

.platform-kpi-icon.is-green {
  background: #ebfbf2;
  color: #1fb874;
}

.platform-kpi-icon.is-orange {
  background: #fff4e9;
  color: #ff9327;
}

.platform-hero-dashboard {
  max-width: 1080px;
  margin: 18px auto 0;
}

.platform-hero-dashboard-frame {
  border-radius: 28px;
  border: 1px solid rgba(23, 105, 255, 0.1);
  background: #ffffff;
  padding: 10px;
  box-shadow:
    0 32px 80px rgba(17, 53, 120, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.platform-hero-dashboard-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.trusted-label {
  border-color: rgba(23, 105, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 12px 26px rgba(11, 23, 54, 0.05);
}

.industry-band-section {
  position: relative;
  z-index: 2;
  margin-top: -18px;
}

.industry-band-intro {
  position: relative;
}

.trusted-pill {
  border-color: rgba(148, 163, 184, 0.18) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 16px 34px rgba(11, 23, 54, 0.05) !important;
  backdrop-filter: blur(12px);
}

.trusted-pill-icon {
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.trusted-pill-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  background: radial-gradient(circle, currentColor 0%, transparent 72%);
  opacity: 0.08;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .platform-kpi-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-platform-hero {
    margin-top: -76px;
    padding-top: calc(76px + 12px) !important;
    padding-bottom: 28px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.8) 24%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.92) 100%),
      url("../images/bg.png") center 96px / 215% auto no-repeat;
  }

  .home-platform-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 28%, rgba(255, 255, 255, 0.4) 56%, rgba(255, 255, 255, 0.18) 100%);
  }

  .home-platform-hero .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-platform-hero .platform-hero-copy {
    max-width: 100%;
  }

  .home-platform-hero .platform-hero-eyebrow {
    width: min(100%, 680px);
    justify-content: center;
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 0.2em;
    box-shadow: 0 12px 28px rgba(11, 23, 54, 0.045);
  }

  .home-platform-hero .platform-hero-dashboard {
    max-width: 92vw;
    margin-top: 18px;
  }

  .home-platform-hero .platform-hero-copy h1 {
    margin-top: 22px;
    font-size: clamp(2rem, 9.6vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-wrap: balance;
  }

  .home-platform-hero .platform-hero-copy h1 br {
    display: none;
  }

  .home-platform-hero .platform-hero-copy h1 span {
    white-space: normal;
  }

  .platform-hero-world {
    display: none;
  }

  .platform-hero-copy h1 {
    font-size: 2.7rem;
  }

  .home-platform-hero .platform-hero-description,
  .platform-hero-description {
    max-width: 100%;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
    text-wrap: balance;
  }

  .platform-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .platform-hero-actions .btn {
    width: 100%;
    max-width: 280px;
    min-height: 50px;
    padding-inline: 20px;
  }

  .platform-kpi-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .platform-kpi-card {
    padding: 13px 14px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(11, 23, 54, 0.05);
  }

  .platform-kpi-card strong {
    font-size: 17px;
  }

  .platform-kpi-card span,
  .platform-kpi-card small {
    font-size: 11px;
  }
}
.hero-home-visual .group:hover > div:first-child {
    transform: perspective(1800px) rotateY(-6deg) rotateX(2deg) scale(1.02);
}

.hero-home-section {
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 82% 10%, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0) 30%),
    radial-gradient(circle at 68% 72%, rgba(241, 245, 249, 0.72), rgba(241, 245, 249, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #fcfdff 52%, #f8fafc 100%);
  color: #0b1736;
}

.hero-home-backdrop {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.54));
}

.hero-home-orb-left {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 249, 0.38));
}

.hero-home-orb-right {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.3));
}

.hero-home-gridline {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5) 18%, rgba(0, 0, 0, 1));
}

.hero-home-copy {
  position: relative;
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
}

.hero-home-eyebrow {
  border-color: rgba(23, 105, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #1769ff !important;
  box-shadow: 0 12px 30px rgba(11, 23, 54, 0.04) !important;
}

.hero-home-title {
  letter-spacing: -0.05em;
  font-weight: 600 !important;
}

.hero-home-title span {
  display: block;
}

.hero-home-title span:first-child {
  color: #0b1736;
}

.hero-home-title span:last-child {
  display: block;
  background: linear-gradient(120deg, #1769ff 0%, #3a86f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  filter: none;
}

.hero-home-description {
  max-width: 42rem;
  color: #5e6d86 !important;
  margin-right: auto;
  margin-left: auto;
}

.hero-feature-list {
  max-width: 42rem;
  margin-right: auto;
  margin-left: auto;
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #29456f;
  font-size: 14px;
  font-weight: 600;
}

.hero-feature-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(23, 105, 255, 0.12);
  background: #ffffff;
  color: #1769ff;
  box-shadow: 0 8px 18px rgba(11, 23, 54, 0.05);
  font-size: 12px;
}

.hero-primary-cta {
  background: #1769ff !important;
  border: none !important;
  box-shadow: 0 16px 36px rgba(23, 105, 255, 0.2);
}

.hero-primary-cta:hover {
  box-shadow: 0 20px 42px rgba(23, 105, 255, 0.28);
}

.hero-secondary-cta {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(23, 105, 255, 0.12) !important;
  color: #0d56df !important;
  box-shadow: 0 10px 28px rgba(11, 23, 54, 0.06);
  backdrop-filter: blur(10px);
}

.hero-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgba(23, 105, 255, 0.2) !important;
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: -40px 4% auto;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.9), transparent 72%);
  filter: blur(22px);
  z-index: -1;
}

.hero-visual-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 14px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 105, 255, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: #4b5f85;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(11, 23, 54, 0.06);
  width: fit-content;
}

.hero-visual-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1769ff;
  box-shadow: 0 0 0 6px rgba(23, 105, 255, 0.08);
}

.hero-browser-frame {
  border-radius: 22px;
  border: 1px solid rgba(23, 105, 255, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(11, 23, 54, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
  transform: none;
}

.hero-browser-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  border-bottom: 1px solid rgba(23, 105, 255, 0.08);
}

.hero-browser-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #22355e;
}

.hero-browser-brand-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #1769ff, #3b8bff);
  color: #fff;
  font-size: 12px;
}

.hero-browser-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #60708f;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .hero-home-section {
    min-height: calc(100dvh - 76px);
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    display: flex;
    align-items: center;
  }

  .hero-home-layout {
    min-height: 100%;
    gap: clamp(28px, 3vw, 56px);
  }

  .hero-home-copy {
    max-width: min(760px, 72vw);
  }

  .hero-home-copy h1 {
    margin-bottom: clamp(16px, 1.5vw, 24px) !important;
    font-size: clamp(3.3rem, 4.7vw, 5rem) !important;
    line-height: 1 !important;
  }

  .hero-home-copy > p:not(:first-child) {
    margin-top: 0 !important;
    font-size: clamp(1rem, 1.05vw, 1.08rem) !important;
    line-height: 1.7 !important;
  }

  .hero-feature-list {
    margin-top: 20px !important;
  }

  .hero-actions {
    margin-top: clamp(22px, 2vw, 30px) !important;
  }

  .hero-home-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: min(1040px, 92vw) !important;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-home-visual .group {
    width: 100%;
  }

  .hero-visual-frame {
    padding: 8px 0 10px;
  }
}

@media (min-width: 1024px) and (max-height: 900px) {
  .hero-home-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .hero-home-copy h1 {
    font-size: clamp(3rem, 4vw, 4.3rem) !important;
  }

  .hero-feature-list {
    margin-top: 16px !important;
    gap: 10px 18px !important;
  }

  .hero-actions {
    margin-top: 18px !important;
  }

  .hero-visual-frame {
    padding-top: 20px;
    padding-right: 12px;
  }
}

@media (min-width: 1024px) and (max-height: 760px) {
  .hero-home-section {
    min-height: calc(100dvh - 76px);
  }

  .hero-home-layout {
    gap: 24px;
  }

  .hero-home-copy h1 {
    margin-top: 12px !important;
    margin-bottom: 14px !important;
    font-size: clamp(2.75rem, 3.5vw, 3.7rem) !important;
  }

  .hero-home-copy > p:not(:first-child) {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .hero-feature-item {
    font-size: 13px;
  }

  .hero-actions {
    margin-top: 14px !important;
  }
}

@media (max-width: 639px) {
  .hero-home-copy {
    max-width: 280px !important;
  }

  .hero-home-title span:last-child {
    display: block;
  }

  .hero-home-copy > p:not(:first-child) {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .hero-feature-list {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-visual-pill {
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
    padding: 10px 14px;
  }

  .hero-browser-frame {
    transform: none;
  }
}
