@charset "utf-8";

:root {
  --rlx-bg: #f7faff;
  --rlx-surface: #ffffff;
  --rlx-text: #1f2329;
  --rlx-muted: #646a73;
  --rlx-soft: #f3f7ff;
  --rlx-line: #e8edf6;
  --rlx-blue: #007aff;
  --rlx-purple: #9854e2;
  --rlx-cyan: #14b8a6;
  --rlx-amber: #f59e0b;
  --rlx-radius: 8px;
  --rlx-radius-lg: 8px;
  --rlx-shadow: 0 18px 48px rgba(15, 23, 42, .08);
  --rlx-shadow-strong: 0 28px 80px rgba(30, 64, 175, .14);
}

html {
  overflow-x: hidden;
}

body:has(.rlx-page),
body:has(.rlx-inner-page) {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  color: var(--rlx-text);
  background: var(--rlx-bg);
}

body:has(.rlx-page) *,
body:has(.rlx-inner-page) * {
  box-sizing: border-box;
}

body:has(.rlx-page) a:hover,
body:has(.rlx-inner-page) a:hover {
  color: var(--rlx-blue);
}

.rlx-shell {
  width: min(1200px, calc(100% - 40px));
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.rlx-gradient-text {
  background: linear-gradient(90deg, var(--rlx-blue), var(--rlx-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rlx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(59, 130, 246, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(59, 130, 246, .08);
}

.rlx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.rlx-btn-primary {
  color: #fff !important;
  background: linear-gradient(90deg, var(--rlx-blue), var(--rlx-purple));
  box-shadow: 0 12px 30px rgba(0, 122, 255, .22);
}

.rlx-btn-secondary {
  color: var(--rlx-text) !important;
  background: #fff;
  border: 1px solid var(--rlx-line);
}

.rlx-card {
  background: var(--rlx-surface);
  border: 1px solid var(--rlx-line);
  border-radius: var(--rlx-radius-lg);
  box-shadow: var(--rlx-shadow);
}

.rlx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(232, 237, 246, .86);
  backdrop-filter: blur(16px);
}

.rlx-header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.rlx-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 330px;
  min-width: 260px;
  max-width: 360px;
  color: var(--rlx-text);
  white-space: nowrap;
}

.rlx-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 5px;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 122, 255, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.rlx-brand img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rlx-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.rlx-brand-copy strong {
  overflow: hidden;
  color: var(--rlx-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.rlx-brand-copy em {
  color: #667085;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rlx-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.rlx-nav a {
  position: relative;
  color: var(--rlx-muted);
  font-size: 15px;
  line-height: 72px;
  white-space: nowrap;
}

.rlx-nav a:after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 19px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rlx-blue), var(--rlx-cyan), var(--rlx-purple));
  transition: left .2s ease, right .2s ease;
}

.rlx-nav a:hover {
  color: var(--rlx-blue);
}

.rlx-nav a:hover:after {
  left: 0;
  right: 0;
}

.rlx-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--rlx-blue), var(--rlx-purple));
  box-shadow: 0 10px 26px rgba(0, 122, 255, .2);
}

.rlx-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background: #f2f6ff;
}

.rlx-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--rlx-text);
}

.rlx-page,
.rlx-inner-page {
  min-width: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f7faff 0%, #fff 34%, #f3f6ff 100%);
}

.rlx-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 78px 0 72px;
  text-align: left;
  overflow: hidden;
}

.rlx-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 122, 255, .12), transparent 36%),
    linear-gradient(245deg, rgba(20, 184, 166, .08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(247, 250, 255, .2) 62%, rgba(255, 255, 255, .96)),
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-size: auto, auto, auto, 42px 42px, 42px 42px;
}

.rlx-hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0), rgba(247, 250, 255, .92));
}

.rlx-hero .rlx-shell {
  position: relative;
  z-index: 1;
}

.rlx-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.rlx-hero-copy {
  max-width: 680px;
}

.rlx-hero h1 {
  max-width: none;
  margin: 22px 0 0;
  color: var(--rlx-text);
  font-size: 56px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.rlx-hero p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--rlx-muted);
  font-size: 18px;
  line-height: 1.85;
  text-align: left;
}

.rlx-hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.rlx-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 24px 0 0;
}

.rlx-hero-metrics div {
  min-width: 0;
  padding: 15px 18px;
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
  backdrop-filter: blur(12px);
}

.rlx-hero-metrics strong {
  display: block;
  color: var(--rlx-text);
  font-size: 18px;
  line-height: 1.2;
}

.rlx-hero-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--rlx-muted);
  font-size: 13px;
}

.rlx-hero-visual-wrap {
  position: relative;
  min-height: 540px;
  perspective: 1100px;
  --rlx-model-x: 0deg;
  --rlx-model-y: 0deg;
}

.rlx-hero-visual-wrap:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 3%;
  top: 8%;
  bottom: 9%;
  border-radius: 42px;
  background:
    radial-gradient(ellipse at 52% 54%, rgba(0, 122, 255, .22), transparent 36%),
    radial-gradient(ellipse at 62% 38%, rgba(20, 184, 166, .16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(237, 246, 255, .34));
  filter: blur(6px);
}

.rlx-ai-model {
  position: relative;
  left: 50%;
  width: min(560px, 100%);
  height: 520px;
  margin: 0;
  transform-style: preserve-3d;
  --rlx-model-scale: 1;
  transform: translateX(-50%) scale(var(--rlx-model-scale)) rotateX(var(--rlx-model-y)) rotateY(var(--rlx-model-x));
  animation: rlx-model-float 7s ease-in-out infinite;
}

.rlx-model-light {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 450px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 122, 255, .32) 0%, rgba(20, 184, 166, .18) 38%, transparent 72%);
  filter: blur(7px);
  transform: translateX(-50%);
  animation: rlx-model-glow 4.8s ease-in-out infinite;
}

.rlx-model-platform {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(139, 180, 255, .72);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(237, 246, 255, .94)),
    linear-gradient(90deg, transparent, rgba(0, 122, 255, .18), transparent);
  transform: translateX(-50%) rotateX(62deg) rotateZ(-22deg);
  transform-style: preserve-3d;
  box-shadow:
    0 24px 46px rgba(0, 122, 255, .18),
    inset 0 0 0 1px rgba(255, 255, 255, .86);
}

.rlx-model-platform:before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(0, 122, 255, .2);
  border-radius: 22px;
}

.rlx-model-platform:after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 18px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, .9), rgba(20, 184, 166, .78), transparent);
  animation: rlx-platform-scan 3.8s ease-in-out infinite;
}

.rlx-model-platform-base {
  top: 285px;
  width: 430px;
  height: 210px;
}

.rlx-model-platform-mid {
  top: 205px;
  width: 320px;
  height: 160px;
  border-color: rgba(0, 122, 255, .5);
  box-shadow:
    0 22px 42px rgba(0, 122, 255, .16),
    0 0 44px rgba(20, 184, 166, .16),
    inset 0 0 0 1px rgba(255, 255, 255, .9);
}

.rlx-model-columns {
  position: absolute;
  left: 50%;
  top: 214px;
  display: flex;
  gap: 8px;
  width: 230px;
  justify-content: center;
  transform: translateX(-50%);
}

.rlx-model-columns span {
  display: block;
  width: 22px;
  height: 112px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(108, 177, 255, .2));
  box-shadow: inset 0 0 12px rgba(0, 122, 255, .14);
}

.rlx-model-columns span:nth-child(2),
.rlx-model-columns span:nth-child(5) {
  height: 92px;
  margin-top: 20px;
}

.rlx-model-columns span:nth-child(3),
.rlx-model-columns span:nth-child(4) {
  height: 128px;
  margin-top: -10px;
}

.rlx-model-core {
  position: absolute;
  left: 50%;
  top: 70px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 176px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(232, 247, 255, .82)),
    radial-gradient(circle at 50% 18%, rgba(20, 184, 166, .26), transparent 34%);
  box-shadow:
    0 24px 56px rgba(0, 122, 255, .22),
    inset 0 -12px 24px rgba(0, 122, 255, .1);
  transform: translateX(-50%);
}

.rlx-model-core span {
  color: transparent;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #15d7ff 6%, #087cff 48%, #8b5cf6 92%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 32px rgba(20, 184, 166, .36);
  animation: rlx-letter-glow 3.6s ease-in-out infinite;
}

.rlx-model-ring {
  position: absolute;
  left: 50%;
  top: 326px;
  width: 188px;
  height: 72px;
  border: 14px solid rgba(0, 122, 255, .16);
  border-top-color: rgba(20, 184, 166, .68);
  border-right-color: rgba(0, 122, 255, .55);
  border-radius: 50%;
  transform: translateX(-50%) rotateX(62deg) rotateZ(-18deg);
  box-shadow: 0 0 30px rgba(0, 122, 255, .2);
  animation: rlx-ring-pulse 4.2s ease-in-out infinite;
}

.rlx-model-panel,
.rlx-model-chat,
.rlx-model-chip {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
  backdrop-filter: blur(14px);
}

.rlx-model-panel {
  display: grid;
  place-items: center;
  width: 70px;
  height: 96px;
  border-radius: 18px;
  color: #175cd3;
  font-weight: 900;
  animation: rlx-card-float 5.6s ease-in-out infinite;
}

.rlx-model-panel span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15d7ff, #8b5cf6);
}

.rlx-model-panel-left {
  left: 38px;
  top: 188px;
  transform: rotate(-10deg);
}

.rlx-model-panel-right {
  right: 36px;
  top: 220px;
  color: #0f766e;
  transform: rotate(9deg);
  animation-delay: -1.8s;
}

.rlx-model-chat {
  right: 48px;
  top: 112px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 72px;
  border-radius: 20px 20px 20px 8px;
  background: linear-gradient(135deg, rgba(20, 184, 166, .92), rgba(0, 122, 255, .88));
  animation: rlx-chat-pulse 4.8s ease-in-out infinite;
}

.rlx-model-chat span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 16px rgba(255, 255, 255, .72);
}

.rlx-model-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  animation: rlx-chip-float 5.4s ease-in-out infinite;
}

.chip-agent {
  left: 122px;
  top: 86px;
}

.chip-data {
  right: 92px;
  bottom: 80px;
  animation-delay: -1.4s;
}

.chip-flow {
  left: 58px;
  bottom: 128px;
  animation-delay: -2.7s;
}

@keyframes rlx-model-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes rlx-model-glow {
  0%,
  100% {
    opacity: .72;
    transform: translateX(-50%) scale(.98);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes rlx-platform-scan {
  0%,
  100% {
    opacity: .4;
    transform: translateX(-16%);
  }

  50% {
    opacity: 1;
    transform: translateX(16%);
  }
}

@keyframes rlx-letter-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(0, 122, 255, .28));
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(20, 184, 166, .48));
  }
}

@keyframes rlx-ring-pulse {
  0%,
  100% {
    opacity: .68;
    scale: 1;
  }

  50% {
    opacity: 1;
    scale: 1.05;
  }
}

@keyframes rlx-card-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes rlx-chat-pulse {
  0%,
  100% {
    translate: 0 0;
    box-shadow: 0 18px 38px rgba(0, 122, 255, .2);
  }

  50% {
    translate: 0 -8px;
    box-shadow: 0 24px 48px rgba(20, 184, 166, .28);
  }
}

@keyframes rlx-chip-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -9px;
  }
}

.rlx-section {
  padding: 82px 0;
}

.rlx-section.alt {
  background:
    linear-gradient(180deg, #f2f5ff 0%, #fff 28%),
    linear-gradient(rgba(15, 23, 42, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .025) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.rlx-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.rlx-section-head h2 {
  margin: 0;
  color: var(--rlx-text);
  font-size: 38px;
  line-height: 1.25;
  font-weight: 900;
}

.rlx-section-head p {
  margin: 14px 0 0;
  color: var(--rlx-muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

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

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

.rlx-capability-card,
.rlx-case-card,
.rlx-list-card,
.rlx-trust-card,
.rlx-contact-card,
.rlx-solution-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rlx-line);
  border-radius: var(--rlx-radius-lg);
  box-shadow: var(--rlx-shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.rlx-capability-card:hover,
.rlx-case-card:hover,
.rlx-list-card:hover,
.rlx-trust-card:hover,
.rlx-contact-card:hover,
.rlx-solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 122, 255, .18);
  box-shadow: 0 24px 54px rgba(15, 23, 42, .1);
}

.rlx-card-accent {
  position: relative;
}

.rlx-card-accent:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 122, 255, .18), transparent 28%, rgba(20, 184, 166, .1) 60%, rgba(152, 84, 226, .16));
  opacity: .72;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

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

.rlx-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 122, 255, .08), rgba(20, 184, 166, .06)),
    #f8fbff;
}

.rlx-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rlx-card-body {
  padding: 22px;
}

.rlx-card-body h3,
.rlx-card-body h2 {
  margin: 0;
  color: var(--rlx-text);
  font-size: 21px;
  line-height: 1.35;
}

.rlx-card-body p {
  margin: 12px 0 0;
  color: var(--rlx-muted);
  font-size: 14px;
  line-height: 1.75;
}

.rlx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.rlx-tags span,
.rlx-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f6fb;
  color: #475467;
  font-size: 12px;
}

.rlx-tags span:nth-child(3n + 1) {
  background: rgba(0, 122, 255, .08);
  color: #175cd3;
}

.rlx-tags span:nth-child(3n + 2) {
  background: rgba(20, 184, 166, .1);
  color: #0f766e;
}

.rlx-tags span:nth-child(3n + 3) {
  background: rgba(245, 158, 11, .12);
  color: #92400e;
}

.rlx-tabs {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 22px;
  padding: 10px;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
}

.rlx-tab-list {
  display: grid;
  gap: 10px;
}

.rlx-tab {
  padding: 17px;
  border: 1px solid var(--rlx-line);
  border-radius: 8px;
  background: #fff;
  color: var(--rlx-muted);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.rlx-tab.active {
  color: var(--rlx-text);
  border-color: rgba(0, 122, 255, .26);
  background:
    linear-gradient(135deg, rgba(0, 122, 255, .08), rgba(20, 184, 166, .06)),
    #fff;
  box-shadow: 0 12px 30px rgba(0, 122, 255, .1);
}

.rlx-tab-panel {
  display: none;
  min-height: 340px;
  padding: 26px;
  border: 1px solid var(--rlx-line);
  border-radius: var(--rlx-radius-lg);
  background:
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff, #fff);
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: var(--rlx-shadow);
}

.rlx-tab-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: center;
}

.rlx-tab-panel h3 {
  margin: 0;
  font-size: 28px;
}

.rlx-tab-panel p {
  margin: 14px 0 0;
  color: var(--rlx-muted);
  line-height: 1.8;
}

.rlx-tab-panel img {
  width: 100%;
  border-radius: 8px;
}

.rlx-inner-hero {
  position: relative;
  padding: 78px 0;
  text-align: center;
  background:
    linear-gradient(115deg, rgba(0, 122, 255, .11), transparent 42%),
    linear-gradient(245deg, rgba(20, 184, 166, .08), transparent 40%),
    url(../images/ai/page-banner.svg) center/cover no-repeat;
}

.rlx-inner-hero h1 {
  margin: 18px auto 0;
  color: var(--rlx-text);
  font-size: 42px;
  line-height: 1.25;
  font-weight: 900;
}

.rlx-inner-hero p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--rlx-muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.rlx-breadcrumb {
  padding: 18px 0;
  color: var(--rlx-muted);
  font-size: 13px;
}

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

.rlx-list-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.rlx-list-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rlx-list-card .rlx-card-body span {
  color: var(--rlx-blue);
  font-size: 13px;
  font-weight: 700;
}

.rlx-pages {
  margin-top: 36px;
  text-align: center;
}

.rlx-article {
  margin-top: 56px;
  margin-bottom: 70px;
  padding: 36px;
  border: 1px solid var(--rlx-line);
  border-radius: var(--rlx-radius-lg);
  background: #fff;
  box-shadow: var(--rlx-shadow);
}

.rlx-article-meta {
  color: var(--rlx-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.rlx-article-body {
  color: #344054;
  font-size: 16px;
  line-height: 1.95;
}

.rlx-article-body img {
  max-width: 100%;
  border-radius: 8px;
}

.rlx-article-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rlx-line);
}

.rlx-footer {
  padding: 70px 0 28px;
  color: #e5edff;
  background:
    linear-gradient(135deg, rgba(0, 122, 255, .1), transparent 34%),
    linear-gradient(225deg, rgba(20, 184, 166, .09), transparent 32%),
    #111827;
}

.rlx-footer-cta {
  padding: 46px;
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(115deg, rgba(20, 184, 166, .14), transparent 42%),
    linear-gradient(135deg, rgba(0, 122, 255, .22), rgba(17, 24, 39, .95));
  border: 1px solid rgba(255, 255, 255, .12);
}

.rlx-footer-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 34px;
}

.rlx-footer-cta p {
  max-width: 680px;
  margin: 14px auto 24px;
  color: rgba(229, 237, 255, .78);
  line-height: 1.8;
  text-align: center;
}

.rlx-footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  padding-top: 44px;
}

.rlx-footer-main strong,
.rlx-footer-main span {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 12px;
}

.rlx-footer-main p,
.rlx-footer-main a {
  margin: 7px 0;
  color: rgba(229, 237, 255, .72);
  line-height: 1.7;
}

.rlx-consult {
  position: fixed;
  right: 32px;
  bottom: 40px;
  z-index: 90;
}

.rlx-consult-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--rlx-blue), var(--rlx-purple));
  box-shadow: 0 16px 36px rgba(0, 122, 255, .28);
  cursor: pointer;
}

.rlx-consult-toggle::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .18), 0 0 18px rgba(255, 255, 255, .9);
}

.rlx-consult-panel {
  display: none;
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 260px;
  padding: 18px;
  border: 1px solid var(--rlx-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--rlx-shadow-strong);
}

.rlx-consult.is-open .rlx-consult-panel {
  display: block;
}

.rlx-consult-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rlx-text);
}

.rlx-consult-panel p,
.rlx-consult-panel a {
  margin: 6px 0;
  color: var(--rlx-muted);
  line-height: 1.6;
}

.rlx-mobile-bar {
  display: none;
}

@media (max-width: 1024px) {
  .rlx-header-inner {
    gap: 14px;
  }

  .rlx-brand {
    flex-basis: 280px;
    min-width: 220px;
  }

  .rlx-brand-logo {
    width: 38px;
    height: 38px;
  }

  .rlx-nav {
    gap: 12px;
  }

  .rlx-nav a {
    font-size: 14px;
  }

  .rlx-nav-cta {
    padding: 0 14px;
  }

  .rlx-hero {
    padding: 58px 0 56px;
  }

  .rlx-hero-layout {
    grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
    gap: 24px;
    min-height: calc(100vh - 176px);
  }

  .rlx-hero-copy {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .rlx-hero h1,
  .rlx-hero p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .rlx-hero h1 {
    font-size: 42px;
  }

  .rlx-hero p {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.72;
  }

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

  .rlx-hero-metrics div {
    padding: 12px 13px;
  }

  .rlx-hero-metrics strong {
    font-size: 16px;
  }

  .rlx-hero-metrics span {
    font-size: 12px;
  }

  .rlx-hero-visual-wrap {
    min-height: 430px;
  }

  .rlx-ai-model {
    width: 520px;
    --rlx-model-scale: .78;
    transform-origin: center top;
  }

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

@media (max-width: 900px) {
  .rlx-hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }

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

  .rlx-hero h1,
  .rlx-hero p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

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

  .rlx-hero-visual-wrap {
    height: 330px;
    min-height: 330px;
    overflow: hidden;
  }

  .rlx-ai-model {
    position: absolute;
    top: 0;
    width: 560px;
    max-width: none;
    --rlx-model-scale: .58;
  }
}

@media (max-width: 767px) {
  body:has(.rlx-page),
  body:has(.rlx-inner-page) {
    padding-top: 0;
    padding-bottom: 62px;
  }

  .rlx-shell {
    width: min(100% - 28px, 1200px);
    max-width: calc(100% - 28px);
  }

  .rlx-header-inner {
    height: 62px;
  }

  .rlx-brand {
    min-width: 0;
    max-width: calc(100% - 54px);
    font-size: 15px;
  }

  .rlx-brand-logo {
    width: 34px;
    height: 34px;
    padding: 4px;
  }

  .rlx-brand-copy strong {
    font-size: 15px;
  }

  .rlx-brand-copy em {
    display: none;
  }

  .rlx-menu-toggle {
    display: block;
  }

  .rlx-nav,
  .rlx-nav-cta {
    display: none;
  }

  .rlx-header.is-open .rlx-nav {
    display: grid;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--rlx-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--rlx-shadow);
  }

  .rlx-header.is-open .rlx-nav a {
    line-height: 42px;
    padding: 0 12px;
  }

  .rlx-hero {
    padding: 54px 0 48px;
    min-height: 0;
  }

  .rlx-hero-layout {
    gap: 18px;
  }

  .rlx-hero h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .rlx-hero p {
    font-size: 15px;
  }

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

  .rlx-hero-visual-wrap {
    height: 340px;
    min-height: 340px;
    overflow: hidden;
  }

  .rlx-ai-model {
    width: 560px;
    max-width: none;
    --rlx-model-scale: .62;
  }

  .rlx-model-panel-left {
    left: 72px;
  }

  .rlx-model-panel-right,
  .rlx-model-chat {
    right: 74px;
  }

  .chip-agent {
    left: 142px;
  }

  .chip-data {
    right: 122px;
  }

  .chip-flow {
    left: 90px;
  }

  .rlx-section {
    padding: 52px 0;
  }

  .rlx-section-head h2,
  .rlx-inner-hero h1 {
    font-size: 28px;
  }

  .rlx-grid-3,
  .rlx-grid-4,
  .rlx-card-grid,
  .rlx-tabs,
  .rlx-tab-panel.active,
  .rlx-footer-main {
    grid-template-columns: 1fr;
  }

  .rlx-tab-panel {
    min-height: 0;
  }

  .rlx-tabs {
    padding: 8px;
  }

  .rlx-footer-cta {
    padding: 28px 18px;
  }

  .rlx-footer-cta h2 {
    font-size: 26px;
  }

  .rlx-article {
    padding: 22px;
    margin-top: 34px;
  }

  .rlx-article-nav {
    display: grid;
  }

  .rlx-consult {
    display: none;
  }

  .rlx-mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid var(--rlx-line);
  }

  .rlx-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    color: var(--rlx-muted);
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rlx-ai-model,
  .rlx-model-light,
  .rlx-model-platform:after,
  .rlx-model-core span,
  .rlx-model-ring,
  .rlx-model-panel,
  .rlx-model-chat,
  .rlx-model-chip,
  .rlx-btn,
  .rlx-capability-card,
  .rlx-case-card,
  .rlx-list-card,
  .rlx-trust-card,
  .rlx-contact-card,
  .rlx-solution-card {
    animation: none !important;
    transition: none !important;
  }
}
