:root {
  --black: #07070a;
  --black-2: #0b0c11;
  --black-3: #11131a;
  --white: #f7f7fb;
  --paper: #f2f1ee;
  --paper-2: #e9e8e5;
  --ink: #111117;
  --muted: #9295a3;
  --muted-dark: #666873;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(17, 17, 23, 0.12);
  --blue: #7187ff;
  --violet: #9e83ff;
  --cyan: #61e7ff;
  --pink: #ef8dff;
  --shell: min(1200px, calc(100% - 48px));
  --mouse-x: 50vw;
  --mouse-y: 35vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.cursor-light {
  position: fixed;
  z-index: 0;
  left: var(--mouse-x);
  top: var(--mouse-y);
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(113, 135, 255, 0.055);
  filter: blur(100px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 84px;
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 68px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo-wrap {
  position: relative;
  display: block;
  isolation: isolate;
  line-height: 0;
}

.brand-logo-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 17% 4% 14%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(97, 231, 255, 0.28), rgba(113, 135, 255, 0.38), rgba(158, 131, 255, 0.24));
  filter: blur(17px);
  opacity: 0.26;
  transform: scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 152px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(113, 135, 255, 0.12));
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand:hover .brand-logo-wrap::before {
  opacity: 0.48;
  transform: scale(1);
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 18px rgba(116, 174, 255, 0.26));
}

.site-header.scrolled .brand-logo-wrap::before,
.site-header.menu-active .brand-logo-wrap::before {
  opacity: 0.2;
}

.footer-brand .brand-logo {
  width: 174px;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(23px, 2.5vw, 40px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.53);
  font-size: 12px;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: right 0.25s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

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

.header-cta {
  min-height: 42px;
  padding: 0 6px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 11px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.header-cta i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-style: normal;
}

.header-cta:hover {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.header-cta:hover i {
  background: var(--paper-2);
}

.menu-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-button span {
  width: 17px;
  height: 1px;
  background: #fff;
  transition: transform 0.3s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  height: calc(100dvh - 68px);
  padding: 34px 24px;
  background: rgba(7, 7, 10, 0.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu nav {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu nav > a:not(.mobile-menu-cta) {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 18px;
}

.mobile-menu nav > a i {
  color: rgba(255, 255, 255, 0.25);
  font-size: 9px;
  font-style: normal;
}

.mobile-menu-cta {
  min-height: 54px;
  margin-top: 30px;
  padding: 0 9px 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.mobile-menu-cta b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7e7eb;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 148px 0 0;
  background:
    radial-gradient(circle at 79% 43%, rgba(108, 112, 255, 0.08), transparent 31%),
    linear-gradient(140deg, #07070a 0%, #090a10 58%, #07070a 100%);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 82%);
}

.hero-beam {
  position: absolute;
  width: 720px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117, 139, 255, 0.45), transparent);
  filter: blur(0.3px);
  transform-origin: center;
}

.hero-beam-one {
  top: 27%;
  right: -180px;
  transform: rotate(-34deg);
}

.hero-beam-two {
  right: -110px;
  bottom: 25%;
  opacity: 0.45;
  transform: rotate(23deg);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 1.04fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6f7079;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.4);
}

.eyebrow > span {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.hero h1 {
  margin: 26px 0 25px;
  font-size: clamp(58px, 5.8vw, 86px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero h1 strong {
  display: block;
  color: transparent;
  background: linear-gradient(102deg, #fff 2%, #b8c4ff 38%, #8feeff 69%, #d2a3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: inherit;
  text-shadow: 0 0 45px rgba(119, 145, 255, 0.08);
}

.hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

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

.button-white {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.08);
}

.button-white > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9e9ed;
  font-size: 14px;
}

.button-white:hover {
  background: #eaf0ff;
}

.button-quiet {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.play {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(97, 231, 255, 0.28);
  border-radius: 50%;
  font-size: 7px;
  font-style: normal;
  padding-left: 1px;
}

.hero-proof {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(97, 231, 255, 0.65);
}

.hero-art {
  position: relative;
  min-height: 570px;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
}

.art-halo {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(87, 226, 255, 0.08), rgba(122, 104, 255, 0.26), rgba(236, 116, 255, 0.16), rgba(87, 226, 255, 0.08));
  filter: blur(55px);
  transform: translate(-50%, -50%);
  animation: haloBreathe 6s ease-in-out infinite;
}

@keyframes haloBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.art-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.art-orbit::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  left: -3px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.orbit-one {
  width: 285px;
  height: 285px;
  border-color: rgba(180, 190, 255, 0.17);
  animation: orbitSpin 18s linear infinite;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.085);
  animation: orbitSpinReverse 28s linear infinite;
}

.orbit-three {
  width: 520px;
  height: 520px;
  border-color: rgba(255, 255, 255, 0.055);
  animation: orbitSpin 40s linear infinite;
}

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

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

.ai-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 48%;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(13, 14, 22, 0.7);
  box-shadow: 0 0 80px rgba(111, 128, 255, 0.16), inset 0 0 45px rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}

.core-glass {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 28%, rgba(255, 255, 255, 0.26), transparent 18%),
    radial-gradient(circle at 62% 68%, rgba(102, 226, 255, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(150, 163, 255, 0.19), rgba(21, 21, 32, 0.1) 45%, rgba(224, 124, 255, 0.15));
  box-shadow: inset -20px -24px 40px rgba(0, 0, 0, 0.3), inset 12px 12px 28px rgba(255, 255, 255, 0.06);
}

.core-light {
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 228, 255, 0.72), rgba(114, 139, 255, 0.22) 36%, transparent 72%);
  filter: blur(8px);
  animation: corePulse 3.8s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

.core-mark {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.core-mark svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}

.core-mark circle {
  fill: var(--cyan);
  stroke: none;
  filter: drop-shadow(0 0 6px var(--cyan));
}

.core-label {
  position: absolute;
  left: 50%;
  bottom: 31px;
  z-index: 2;
  display: flex;
  gap: 6px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 6px;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.core-label strong {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.orbit-node {
  position: absolute;
  z-index: 4;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(12, 13, 19, 0.78);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.orbit-node span {
  color: rgba(255, 255, 255, 0.28);
  font-size: 6px;
}

.orbit-node strong {
  font-size: 10px;
  font-weight: 550;
}

.orbit-node i {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.node-think { top: 13%; left: 16%; }
.node-act { right: 8%; top: 34%; }
.node-learn { bottom: 10%; left: 23%; }

.glass-float {
  position: absolute;
  z-index: 5;
  min-height: 62px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(16, 17, 25, 0.66);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: floatY 5s ease-in-out infinite;
}

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

.float-status {
  top: 4%;
  right: 0;
  width: 218px;
}

.float-task {
  bottom: 4%;
  right: 2%;
  width: 228px;
  animation-delay: -2.4s;
}

.status-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(116, 139, 255, 0.13);
}

.status-icon i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.glass-float > div:not(.status-icon) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.glass-float small {
  color: rgba(255, 255, 255, 0.28);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.glass-float strong {
  font-size: 9px;
  font-weight: 550;
}

.float-status > span {
  margin-left: auto;
  padding: 4px 6px;
  color: var(--cyan);
  border: 1px solid rgba(97, 231, 255, 0.18);
  border-radius: 999px;
  font-size: 6px;
}

.task-spark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #d7c8ff;
  border-radius: 10px;
  background: rgba(160, 129, 255, 0.13);
}

.float-task > i {
  width: 18px;
  height: 18px;
  margin-left: auto;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(97, 231, 255, 0.22);
  border-radius: 50%;
  font-size: 7px;
  font-style: normal;
}

.art-coordinate {
  position: absolute;
  color: rgba(255, 255, 255, 0.17);
  font-family: monospace;
  font-size: 6px;
  letter-spacing: 0.11em;
}

.coordinate-top { left: 1%; top: 47%; transform: rotate(-90deg); }
.coordinate-bottom { right: 8%; bottom: 1%; }

.hero-bottom {
  position: relative;
  z-index: 3;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-bottom > div,
.hero-bottom > p {
  min-height: 112px;
  margin: 0;
  padding: 25px 26px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bottom > div:first-child {
  padding-left: 0;
}

.hero-bottom strong {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero-bottom div span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
}

.hero-bottom > p {
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.36);
  border-right: 0;
  font-size: 10px;
  line-height: 1.7;
}

.manifesto {
  position: relative;
  padding: 145px 0;
  color: var(--ink);
  background: var(--paper);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 90px;
}

.manifesto h2,
.products-heading h2,
.platform-heading h2,
.agent-heading h2,
.process-heading h2,
.contact-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(42px, 4.7vw, 66px);
  font-weight: 540;
  line-height: 1.18;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.manifesto h2 span {
  position: relative;
  color: #6257e8;
}

.manifesto h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 7px;
  border-radius: 999px;
  background: rgba(104, 90, 239, 0.13);
}

.narrow-only-break {
  display: none;
}

.manifesto-copy {
  padding-bottom: 6px;
}

.manifesto-copy p {
  margin: 0;
  color: #666872;
  font-size: 12px;
  line-height: 1.9;
}

.manifesto-copy p:first-child {
  margin-bottom: 14px;
  color: #24242c;
  font-size: 15px;
  font-weight: 600;
}

.capability-grid {
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.capability-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.capability-card:hover {
  transform: translateY(-7px);
  border-color: rgba(84, 82, 166, 0.25);
  box-shadow: 0 30px 70px rgba(35, 33, 60, 0.1);
}

.card-glow {
  position: absolute;
  z-index: -1;
  left: var(--spot-x, 50%);
  top: var(--spot-y, 50%);
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(119, 115, 255, 0.1);
  filter: blur(45px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-card:hover .card-glow {
  opacity: 1;
}

.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9a9ba2;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.capability-top i {
  font-style: normal;
}

.line-icon {
  width: 72px;
  height: 72px;
  margin-top: 46px;
  display: grid;
  place-items: center;
  color: #5b5c68;
  border: 1px solid rgba(17, 17, 23, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
}

.line-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-reason { color: #675be3; }
.icon-action { color: #19889a; }
.icon-evolve { color: #8d4ca0; }

.capability-card h3 {
  margin: 29px 0 12px;
  font-size: 26px;
  font-weight: 550;
  letter-spacing: -0.04em;
}

.capability-card > p {
  margin: 0;
  color: #70717a;
  font-size: 11px;
  line-height: 1.85;
}

.capability-meta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid rgba(17, 17, 23, 0.09);
}

.capability-meta span {
  padding: 6px 9px;
  color: #777881;
  border: 1px solid rgba(17, 17, 23, 0.1);
  border-radius: 999px;
  font-size: 7px;
}

.products {
  position: relative;
  padding: 145px 0 130px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #08090d 0%, #06070b 58%, #08090d 100%);
  overflow: hidden;
}

.products-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 76%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 76%, transparent);
}

.products-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.products-aura-one {
  width: 680px;
  height: 560px;
  top: 7%;
  left: -260px;
  background: rgba(70, 150, 255, 0.1);
}

.products-aura-two {
  width: 720px;
  height: 620px;
  right: -300px;
  bottom: 2%;
  background: rgba(151, 87, 255, 0.1);
}

.products-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: 90px;
}

.products-heading > * {
  min-width: 0;
}

.products-heading h2 span {
  color: transparent;
  background: linear-gradient(100deg, #d6dcff, #87e9ff, #c7a6ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.products-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.9;
}

.product-deck {
  position: relative;
  margin-top: 68px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(13, 14, 20, 0.88);
  box-shadow: 0 48px 130px rgba(0, 0, 0, 0.42), 0 0 110px rgba(104, 119, 255, 0.055);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.018);
}

.product-tabs button {
  position: relative;
  min-width: 0;
  min-height: 108px;
  padding: 20px 23px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.43);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.product-tabs button:last-child {
  border-right: 0;
}

.product-tabs button::after {
  content: "";
  position: absolute;
  left: 22px;
  right: calc(100% - 22px);
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tabs button:hover,
.product-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(112, 136, 255, 0.08), rgba(132, 92, 255, 0.03));
}

.product-tabs button.active::after {
  right: 22px;
}

.product-tab-no {
  color: rgba(137, 153, 255, 0.75);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.product-tab-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-tabs small {
  color: rgba(255, 255, 255, 0.24);
  font-size: 6px;
  letter-spacing: 0.16em;
}

.product-tabs strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-tabs button > i {
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 6px;
  font-style: normal;
  white-space: nowrap;
}

.product-tabs button.active > i {
  color: #bdefff;
  border-color: rgba(97, 231, 255, 0.2);
  background: rgba(97, 231, 255, 0.06);
}

.product-panel {
  min-height: 650px;
  display: none;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1.26fr);
}

.product-panel.active {
  display: grid;
  animation: product-panel-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes product-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-copy {
  padding: 47px 43px 42px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.product-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.27);
  font-size: 6px;
  letter-spacing: 0.14em;
}

.product-label i {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.34);
  font-style: normal;
}

.product-label b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.product-copy h3 {
  margin: 45px 0 17px;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 540;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.product-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.95;
}

.product-feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.product-feature-grid > div {
  min-height: 112px;
  padding: 17px 16px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.product-feature-grid span {
  color: #8093ff;
  font-size: 6px;
  letter-spacing: 0.12em;
}

.product-feature-grid strong {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 550;
}

.product-feature-grid small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
  line-height: 1.65;
}

.product-actions {
  margin-top: auto;
  padding-top: 31px;
  display: flex;
  align-items: center;
  gap: 19px;
}

.product-actions a {
  min-height: 45px;
  padding: 0 7px 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  border-radius: 999px;
  background: linear-gradient(100deg, #fff, #dfe7ff);
  font-size: 9px;
  font-weight: 650;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 32px rgba(123, 152, 255, 0.18);
}

.product-actions a i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 17, 23, 0.08);
  font-style: normal;
}

.product-actions > span {
  color: rgba(255, 255, 255, 0.26);
  font-size: 7px;
  line-height: 1.6;
}

.product-screen {
  min-width: 0;
  min-height: 560px;
  margin: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: #090a10;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.product-window-bar {
  height: 47px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.27);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
  font-size: 6px;
  letter-spacing: 0.13em;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.19);
}

.product-window-bar > strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 6px;
  font-weight: 500;
}

.product-window-bar > strong i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan);
}

.live-product-ui {
  height: calc(100% - 47px);
  min-height: 513px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(185px, 0.88fr);
}

.live-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 46%, rgba(116, 130, 255, 0.22), transparent 31%), radial-gradient(circle at 72% 23%, rgba(132, 80, 255, 0.12), transparent 28%), linear-gradient(155deg, #10121b, #08090e 66%);
}

.live-stage::before,
.live-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  border: 1px solid rgba(136, 159, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.live-stage::before { width: 330px; height: 330px; }
.live-stage::after { width: 245px; height: 245px; }

.live-stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 72%);
}

.live-brand {
  position: absolute;
  left: 19px;
  top: 17px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.live-brand span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 5px;
  font-weight: 500;
  letter-spacing: 0.19em;
}

.virtual-presenter {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 190px;
  height: 300px;
  transform: translate(-50%, -50%);
}

.virtual-presenter::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 210px;
  height: 54px;
  border-radius: 50%;
  background: rgba(73, 118, 255, 0.2);
  filter: blur(24px);
  transform: translateX(-50%);
}

.virtual-presenter i {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 18px;
  width: 74px;
  height: 87px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 47% 47% 44% 44%;
  background: radial-gradient(circle at 42% 33%, rgba(255, 255, 255, 0.5), rgba(170, 189, 255, 0.18) 18%, rgba(56, 65, 105, 0.82) 56%, #171a27 100%);
  box-shadow: 0 0 35px rgba(114, 150, 255, 0.16);
  transform: translateX(-50%);
}

.virtual-presenter span {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 91px;
  width: 145px;
  height: 192px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 55px 55px 20px 20px;
  background: linear-gradient(145deg, rgba(169, 184, 255, 0.24), rgba(45, 48, 70, 0.82) 40%, rgba(15, 17, 26, 0.94));
  clip-path: polygon(23% 0, 77% 0, 100% 27%, 89% 100%, 11% 100%, 0 27%);
  transform: translateX(-50%);
}

.virtual-presenter b {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 142px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(104, 229, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(97, 231, 255, 0.17), inset 0 0 14px rgba(97, 231, 255, 0.1);
  transform: translateX(-50%);
}

.virtual-presenter b::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px var(--cyan);
}

.live-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 23px;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(6, 7, 12, 0.72);
  backdrop-filter: blur(12px);
}

.live-caption small {
  color: #84deff;
  font-size: 5px;
  letter-spacing: 0.12em;
}

.live-caption strong {
  overflow: hidden;
  font-size: 8px;
  font-weight: 520;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-timer {
  position: absolute;
  right: 17px;
  top: 16px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  font-size: 5px;
}

.live-timer i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff6388;
  box-shadow: 0 0 8px #ff6388;
}

.live-console {
  min-width: 0;
  padding: 18px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.console-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
}

.console-title i {
  color: rgba(97, 231, 255, 0.55);
  font-size: 5px;
  font-style: normal;
}

.script-card {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.022);
}

.script-card.active {
  border-color: rgba(119, 144, 255, 0.24);
  background: linear-gradient(135deg, rgba(111, 134, 255, 0.09), rgba(97, 231, 255, 0.025));
}

.script-card small {
  color: rgba(255, 255, 255, 0.28);
  font-size: 5px;
}

.script-card.active small {
  color: #96eaff;
}

.script-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 7px;
  line-height: 1.75;
}

.script-card > span {
  width: 58%;
  height: 2px;
  margin-top: 11px;
  display: block;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 8px rgba(97, 231, 255, 0.3);
}

.voice-wave {
  height: 72px;
  margin-top: 13px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.17);
}

.voice-wave span {
  width: 3px;
  height: 24%;
  border-radius: 99px;
  background: linear-gradient(to top, var(--blue), var(--cyan));
  animation: voice-wave 1.4s ease-in-out infinite alternate;
}

.voice-wave span:nth-child(2n) { height: 55%; animation-delay: -0.7s; }
.voice-wave span:nth-child(3n) { height: 78%; animation-delay: -0.3s; }
.voice-wave span:nth-child(4n) { height: 38%; animation-delay: -1s; }

@keyframes voice-wave {
  to { transform: scaleY(0.45); opacity: 0.55; }
}

.live-metrics {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.live-metrics > div {
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.live-metrics small { color: rgba(255, 255, 255, 0.25); font-size: 5px; }
.live-metrics strong { font-size: 8px; font-weight: 520; }

.studio-product-ui {
  height: calc(100% - 47px);
  min-height: 513px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 165px;
}

.mini-sidebar {
  padding: 13px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.012);
}

.mini-sidebar b,
.mini-sidebar span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 7px;
}

.mini-sidebar b {
  margin-bottom: 17px;
  color: var(--ink);
  background: linear-gradient(135deg, #d6dcff, #81eaff);
}

.mini-sidebar i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  font-size: 8px;
  font-style: normal;
}

.mini-sidebar i.active {
  color: #cfd8ff;
  background: rgba(114, 136, 255, 0.12);
}

.mini-sidebar span {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.mini-workflow {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mini-workflow-head {
  height: 61px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-workflow-head > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-workflow-head small {
  color: rgba(255, 255, 255, 0.28);
  font-size: 5px;
}

.mini-workflow-head strong {
  font-size: 9px;
  font-weight: 520;
}

.mini-workflow-head > span {
  padding: 7px 10px;
  color: var(--ink);
  border-radius: 7px;
  background: #fff;
  font-size: 6px;
}

.mini-canvas {
  position: relative;
  flex: 1;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0.7px, transparent 0.8px);
  background-size: 18px 18px;
}

.mini-canvas::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: 35%;
  top: 4%;
  border-radius: 50%;
  background: rgba(99, 117, 255, 0.08);
  filter: blur(60px);
}

.mini-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(128, 147, 255, 0.35);
  stroke-width: 1.2;
}

.mini-node {
  position: absolute;
  width: 116px;
  min-height: 51px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(19, 21, 31, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.mini-node > i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #bcd6ff;
  border-radius: 7px;
  background: rgba(116, 137, 255, 0.1);
  font-size: 7px;
  font-style: normal;
}

.mini-node > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-node small { color: rgba(255, 255, 255, 0.24); font-size: 4px; letter-spacing: 0.1em; }
.mini-node strong { overflow: hidden; font-size: 7px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.node-input { left: 4%; top: 42%; }
.node-reason { left: 35%; top: 18%; border-color: rgba(125, 151, 255, 0.32); }
.node-data { right: 3%; top: 7%; }
.node-knowledge { right: 3%; top: 40%; }
.node-output { right: 3%; bottom: 8%; }

.mini-running {
  position: absolute;
  left: 35%;
  bottom: 10%;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(6, 7, 11, 0.72);
  font-size: 5px;
}

.mini-running > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.mini-running strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 5px;
  font-weight: 500;
}

.mini-inspector {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.012);
}

.mini-inspector > small {
  color: rgba(255, 255, 255, 0.23);
  font-size: 5px;
  letter-spacing: 0.12em;
}

.mini-inspector > strong {
  margin: 9px 0 18px;
  font-size: 10px;
  font-weight: 520;
}

.mini-setting {
  margin-top: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  font-size: 5px;
}

.mini-setting span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 6px;
}

.mini-inspector > div {
  margin-top: auto;
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(97, 231, 255, 0.04);
  font-size: 5px;
}

.mini-inspector > div i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.service-product-ui {
  height: calc(100% - 47px);
  min-height: 513px;
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr) 168px;
}

.service-list,
.service-insight {
  padding: 17px 12px;
  background: rgba(255, 255, 255, 0.012);
}

.service-list {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-list-head {
  padding: 0 4px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.service-list-head strong { font-size: 8px; font-weight: 520; }
.service-list-head span { padding: 3px 6px; color: #a7eaff; border-radius: 99px; background: rgba(97, 231, 255, 0.07); font-size: 5px; }

.service-contact {
  margin-top: 7px;
  padding: 10px 8px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 9px;
}

.service-contact.active {
  border-color: rgba(120, 143, 255, 0.17);
  background: rgba(110, 130, 255, 0.07);
}

.service-contact > i,
.service-chat-head > div > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #d7e1ff;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(119, 139, 255, 0.26), rgba(97, 231, 255, 0.13));
  font-size: 7px;
  font-style: normal;
}

.service-contact > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-contact strong { font-size: 7px; font-weight: 520; }
.service-contact small { overflow: hidden; color: rgba(255, 255, 255, 0.25); font-size: 5px; text-overflow: ellipsis; white-space: nowrap; }
.service-contact > span { align-self: start; color: rgba(255, 255, 255, 0.18); font-size: 4px; }

.service-chat {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.service-chat-head {
  min-height: 62px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.service-chat-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-chat-head > div > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-chat-head strong { font-size: 8px; font-weight: 520; }
.service-chat-head small { color: rgba(255, 255, 255, 0.25); font-size: 5px; }
.service-chat-head small b { width: 4px; height: 4px; margin-right: 4px; display: inline-block; border-radius: 50%; background: var(--cyan); }
.service-chat-head em { padding: 6px 8px; color: rgba(255, 255, 255, 0.35); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 7px; font-size: 5px; font-style: normal; }

.chat-thread {
  flex: 1;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 42%, rgba(92, 112, 255, 0.06), transparent 55%);
}

.chat-thread p {
  margin: 0;
}

.customer-message {
  max-width: 82%;
  margin-left: auto !important;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.66);
  border-radius: 11px 11px 3px 11px;
  background: rgba(112, 132, 255, 0.13);
  font-size: 6px;
  line-height: 1.7;
}

.agent-message {
  max-width: 91%;
  margin-top: 15px !important;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.agent-message > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  border-radius: 8px;
  background: linear-gradient(135deg, #d7ddff, #89e9ff);
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
}

.agent-message > span {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px 11px 11px 11px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 6px;
  line-height: 1.75;
}

.agent-message small {
  margin-top: 8px;
  display: block;
  color: rgba(151, 190, 255, 0.45);
  font-size: 5px;
}

.agent-action {
  margin: 15px 0 0 35px;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(97, 231, 255, 0.11);
  border-radius: 9px;
  background: rgba(97, 231, 255, 0.035);
  font-size: 5px;
}

.agent-action span { color: rgba(255, 255, 255, 0.31); }
.agent-action strong { color: #a6eaff; font-size: 5px; font-weight: 500; }

.chat-input {
  min-height: 43px;
  margin: 0 12px 12px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 5px;
}

.chat-input i { color: rgba(255, 255, 255, 0.28); font-style: normal; }

.service-insight {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.service-insight > small { color: rgba(255, 255, 255, 0.22); font-size: 5px; letter-spacing: 0.12em; }
.service-insight > strong { margin-top: 8px; font-size: 9px; font-weight: 520; }

.intent-score {
  margin-top: 17px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(110, 132, 255, 0.08), rgba(97, 231, 255, 0.025));
}

.intent-score span { color: rgba(255, 255, 255, 0.31); font-size: 5px; }
.intent-score b { color: #bdefff; font-size: 20px; font-weight: 500; }

.insight-block {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.27);
  font-size: 5px;
}

.insight-block i {
  margin: 8px 5px 0 0;
  padding: 5px 6px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  font-size: 5px;
  font-style: normal;
}

.insight-block p {
  margin: 8px 0 0;
  padding: 9px;
  color: rgba(255, 255, 255, 0.5);
  border-left: 2px solid rgba(100, 222, 255, 0.48);
  background: rgba(255, 255, 255, 0.025);
  font-size: 5px;
  line-height: 1.7;
}

.service-task-button {
  min-height: 36px;
  margin-top: auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 8px;
  background: #fff;
  font-size: 6px;
}

.live-automation-core {
  top: 48%;
  width: 260px;
  height: 260px;
}

.live-automation-core::before {
  bottom: 0;
  width: 230px;
  background: rgba(74, 136, 255, 0.28);
}

.live-automation-core i {
  left: 50%;
  top: 50%;
  width: 212px;
  height: 212px;
  border: 1px solid rgba(134, 176, 255, 0.36);
  border-radius: 50%;
  background: conic-gradient(from 40deg, rgba(97, 231, 255, 0.05), rgba(111, 125, 255, 0.46), rgba(176, 97, 255, 0.08), rgba(97, 231, 255, 0.05));
  box-shadow: 0 0 55px rgba(94, 133, 255, 0.16), inset 0 0 42px rgba(97, 231, 255, 0.06);
  transform: translate(-50%, -50%);
  animation: automation-orbit 11s linear infinite;
}

.live-automation-core i::after {
  content: "";
  position: absolute;
  inset: 19px;
  border: 1px dashed rgba(170, 194, 255, 0.23);
  border-radius: 50%;
}

.live-automation-core span {
  left: 50%;
  top: 50%;
  width: 142px;
  height: 142px;
  border-color: rgba(128, 165, 255, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle at 45% 38%, rgba(240, 248, 255, 0.38), rgba(87, 121, 255, 0.2) 28%, rgba(24, 28, 52, 0.93) 67%, rgba(7, 9, 15, 0.98));
  clip-path: none;
  box-shadow: 0 0 45px rgba(91, 131, 255, 0.2), inset 0 0 34px rgba(97, 231, 255, 0.09);
  transform: translate(-50%, -50%);
}

.live-automation-core b {
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
}

.live-automation-core b::after {
  inset: 18px;
}

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

.product-screen-hermes {
  background: #101014;
}

.product-screen-hermes .mini-canvas::before {
  background: rgba(255, 183, 0, 0.085);
}

.product-screen-hermes .mini-node > i {
  color: #ffd71f;
  background: rgba(255, 205, 0, 0.08);
}

.product-screen-hermes .mini-node.node-reason {
  border-color: rgba(255, 210, 40, 0.24);
}

.hermes-head img {
  width: 142px;
  height: auto;
  display: block;
  filter: saturate(0.88) brightness(1.08);
}

.hermes-head small {
  color: rgba(255, 218, 61, 0.5);
}

.flowcraft-product-ui {
  position: relative;
  height: calc(100% - 47px);
  min-height: 513px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(75, 105, 255, 0.13), transparent 48%), #06070a;
}

.flowcraft-product-ui::before {
  content: "";
  position: absolute;
  inset: 9% 4%;
  border-radius: 20px;
  background: rgba(86, 118, 255, 0.12);
  filter: blur(48px);
}

.flowcraft-product-ui > img {
  position: absolute;
  width: 116%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: contrast(1.04) saturate(0.9) brightness(0.86);
  transform: scale(1.01);
}

.flowcraft-screen-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.02), rgba(6, 7, 10, 0.15) 58%, rgba(6, 7, 10, 0.82));
}

.flowcraft-screen-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(8, 9, 14, 0.74);
  backdrop-filter: blur(13px);
}

.flowcraft-screen-meta span {
  color: #9eeaff;
  font-size: 5px;
  letter-spacing: 0.14em;
}

.flowcraft-screen-meta strong {
  color: rgba(255, 255, 255, 0.68);
  font-size: 7px;
  font-weight: 500;
}

.product-screen-huoke .mini-canvas::before {
  background: rgba(151, 82, 255, 0.11);
}

.product-screen-huoke .mini-node > i {
  color: #d3c0ff;
  background: rgba(151, 104, 255, 0.11);
}

.product-screen-huoke .mini-node.node-reason {
  border-color: rgba(164, 126, 255, 0.32);
}

.product-screen-huoke .mini-running strong {
  color: #c9b7ff;
}

.product-demo-note {
  min-height: 43px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.012);
  font-size: 6px;
}

.products-proof {
  position: relative;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.products-proof > div {
  min-height: 118px;
  padding: 24px 27px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  gap: 7px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.products-proof > div:last-child { border-right: 0; }
.products-proof span { grid-row: 1 / 3; color: #8295ff; font-size: 7px; letter-spacing: 0.1em; }
.products-proof strong { font-size: 11px; font-weight: 520; }
.products-proof small { color: rgba(255, 255, 255, 0.27); font-size: 7px; line-height: 1.6; }

.platform {
  position: relative;
  padding: 145px 0 130px;
  background: linear-gradient(180deg, #08090d, #07070a);
  overflow: hidden;
}

.platform-aura {
  position: absolute;
  width: 900px;
  height: 620px;
  top: 13%;
  left: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 117, 255, 0.14), rgba(188, 97, 255, 0.04) 45%, transparent 72%);
  filter: blur(80px);
  transform: translateX(-50%);
}

.platform-heading,
.agent-heading,
.process-heading {
  position: relative;
  text-align: center;
}

.platform-heading h2 span,
.process-heading h2 span,
.contact-copy h2 span {
  color: transparent;
  background: linear-gradient(100deg, #c9d2ff, #83e9ff, #c7a4ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.platform-heading > p,
.agent-heading > p {
  max-width: 560px;
  margin: 23px auto 0;
  color: rgba(255, 255, 255, 0.39);
  font-size: 12px;
  line-height: 1.8;
}

.studio-frame {
  position: relative;
  margin-top: 66px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: rgba(15, 16, 23, 0.76);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.5), 0 0 90px rgba(104, 118, 255, 0.07);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.studio-chrome {
  height: 51px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.chrome-dots {
  display: flex;
  gap: 5px;
}

.chrome-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.chrome-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.chrome-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan);
}

.studio-layout {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 600px;
}

.studio-sidebar {
  padding: 16px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.studio-logo,
.studio-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 9px;
}

.studio-logo {
  color: var(--ink);
  background: linear-gradient(135deg, #d5dcff, #81eaff);
  font-weight: 800;
}

.studio-sidebar nav {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.studio-sidebar nav span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.29);
  border-radius: 10px;
  font-size: 10px;
}

.studio-sidebar nav span.active {
  color: #d5ddff;
  background: rgba(120, 137, 255, 0.12);
}

.studio-avatar {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 7px;
}

.studio-main {
  min-width: 0;
}

.studio-head {
  height: 76px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-head > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.studio-head small {
  color: rgba(255, 255, 255, 0.25);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.studio-head strong {
  font-size: 12px;
  font-weight: 550;
}

.studio-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.studio-actions > span {
  color: rgba(255, 255, 255, 0.27);
  font-size: 7px;
}

.studio-actions button {
  height: 31px;
  padding: 0 12px;
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  background: #fff;
  font-size: 7px;
}

.studio-body {
  margin: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(4, 5, 8, 0.38);
  overflow: hidden;
}

.studio-tabs {
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.studio-tabs span {
  position: relative;
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
}

.studio-tabs span.active {
  color: rgba(255, 255, 255, 0.75);
}

.studio-tabs span.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 1px;
  background: var(--cyan);
}

.flow-canvas {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.canvas-grid {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 0.7px, transparent 0.7px);
  background-size: 17px 17px;
  mask-image: radial-gradient(circle at center, #000, transparent 88%);
}

.flow-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-links path {
  fill: none;
  stroke: rgba(144, 159, 255, 0.5);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  animation: dashFlow 4s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -40; }
}

.flow-node {
  position: absolute;
  z-index: 2;
  width: 145px;
  min-height: 66px;
  padding: 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(17, 19, 28, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.flow-node > i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #cfd5ff;
  border-radius: 9px;
  background: rgba(122, 137, 255, 0.12);
  font-size: 9px;
  font-style: normal;
}

.flow-node > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.flow-node small {
  color: rgba(255, 255, 255, 0.25);
  font-size: 5px;
  letter-spacing: 0.1em;
}

.flow-node strong {
  overflow: hidden;
  font-size: 8px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.flow-node > b {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(180, 192, 255, 0.7);
  border-radius: 50%;
  background: #11131a;
  transform: translateY(-50%);
}

.flow-node > b:first-child { left: -4px; }
.flow-node > b:last-child { right: -4px; }
.flow-start > b { right: -4px; }
.flow-output > b { left: -4px; }

.flow-start { left: 5%; top: 43%; }
.flow-plan { left: 28%; top: 12%; }
.flow-data { right: 19%; top: 4%; }
.flow-knowledge { right: 19%; top: 37%; }
.flow-review { right: 19%; top: 70%; }
.flow-output { right: 2%; top: 43%; }

.running-pill {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  min-height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(12, 13, 19, 0.86);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.running-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.running-pill span,
.running-pill strong {
  color: rgba(255, 255, 255, 0.42);
  font-size: 6px;
}

.running-pill strong {
  color: rgba(255, 255, 255, 0.7);
}

.platform-points {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-points > div {
  min-height: 155px;
  padding: 26px 25px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-points > div:not(:first-child) {
  padding-left: 25px;
}

.platform-points > div:last-child {
  border-right: 0;
}

.platform-points span {
  color: #8899ff;
  font-size: 8px;
}

.platform-points strong {
  margin-top: 15px;
  display: block;
  font-size: 14px;
  font-weight: 520;
}

.platform-points p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.31);
  font-size: 9px;
  line-height: 1.7;
}

.agent-matrix {
  padding: 145px 0;
  color: var(--ink);
  background: var(--paper);
}

.agent-heading h2 span {
  color: transparent;
  background: linear-gradient(100deg, #5754d9, #208caa, #9b58ae);
  background-clip: text;
  -webkit-background-clip: text;
}

.agent-heading > p {
  color: #74757d;
}

.agent-explorer {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 570px;
  border: 1px solid var(--line-dark);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 35px 90px rgba(30, 29, 45, 0.08);
  overflow: hidden;
}

.agent-tabs {
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--line-dark);
  background: rgba(232, 231, 228, 0.55);
  scrollbar-width: none;
}

.agent-tabs::-webkit-scrollbar {
  display: none;
}

.agent-tabs button {
  width: 100%;
  min-height: 82px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 24px 1fr 26px;
  align-items: center;
  gap: 9px;
  color: #85868e;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.agent-tabs button:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
}

.agent-tabs button.active {
  color: var(--ink);
  border-color: rgba(17, 17, 23, 0.09);
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 23, 38, 0.06);
}

.agent-tabs button > span {
  font-size: 8px;
}

.agent-tabs button > strong {
  font-size: 13px;
  font-weight: 550;
}

.agent-tabs button > i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 23, 0.11);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.agent-tabs button.active > i {
  color: #fff;
  border-color: #17171d;
  background: #17171d;
}

.agent-showcase {
  position: relative;
  min-width: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 75% 35%, rgba(108, 113, 255, 0.11), transparent 32%),
    #0c0d12;
  overflow: hidden;
}

.showcase-light {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(127, 112, 255, 0.12);
  filter: blur(65px);
}

.showcase-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-top > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-top span,
.showcase-top > strong {
  color: rgba(255, 255, 255, 0.29);
  font-size: 7px;
  letter-spacing: 0.13em;
}

.showcase-top i {
  padding: 5px 7px;
  color: var(--cyan);
  border: 1px solid rgba(97, 231, 255, 0.15);
  border-radius: 999px;
  font-size: 5px;
  font-style: normal;
}

.showcase-main {
  position: relative;
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: stretch;
  gap: 42px;
}

.showcase-copy {
  padding: 8px 0 20px;
}

.showcase-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #d8dcff;
  border: 1px solid rgba(157, 166, 255, 0.18);
  border-radius: 18px;
  background: rgba(112, 126, 255, 0.1);
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 0 35px rgba(112, 126, 255, 0.08);
}

.showcase-copy h3 {
  margin: 25px 0 13px;
  color: #fff;
  font-size: 31px;
  font-weight: 530;
  letter-spacing: -0.045em;
}

.showcase-copy > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.85;
}

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

.showcase-tags span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 7px;
}

.showcase-result {
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.result-head,
.result-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-head span,
.result-foot span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 7px;
}

.result-head i {
  color: var(--cyan);
  font-size: 6px;
  font-style: normal;
}

.showcase-result > strong {
  margin-top: 28px;
  color: #fff;
  font-size: 50px;
  font-weight: 470;
  letter-spacing: -0.06em;
}

.showcase-result > small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
}

.result-chart {
  height: 98px;
  margin-top: 25px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.result-chart span {
  height: var(--h);
  flex: 1;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, #8ddfff, #7678ff);
  opacity: 0.26;
}

.result-chart span:nth-last-child(-n+2) {
  opacity: 0.8;
  box-shadow: 0 0 15px rgba(104, 148, 255, 0.18);
}

.result-foot {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.result-foot strong {
  color: #b7c4ff;
  font-size: 12px;
  font-weight: 550;
}

.showcase-command {
  min-height: 62px;
  margin-top: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.showcase-command > span {
  color: #a9b6ff;
}

.showcase-command p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.showcase-command > i {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.24);
  font-size: 7px;
  font-style: normal;
}

.agent-showcase.is-changing .showcase-main,
.agent-showcase.is-changing .showcase-command {
  opacity: 0;
  transform: translateY(6px);
}

.showcase-main,
.showcase-command {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.process {
  position: relative;
  padding: 145px 0 130px;
  background: #08090d;
  overflow: hidden;
}

.process-light {
  position: absolute;
  width: 700px;
  height: 500px;
  right: -250px;
  top: -180px;
  border-radius: 50%;
  background: rgba(115, 129, 255, 0.08);
  filter: blur(100px);
}

.process-list {
  position: relative;
  margin-top: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.process-item {
  min-height: 155px;
  display: grid;
  grid-template-columns: 70px 190px 1fr 100px;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding 0.3s ease, background 0.3s ease;
}

.process-item:hover {
  padding-inline: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent);
}

.process-no {
  color: #7c8df5;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.process-item > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-item small {
  color: rgba(255, 255, 255, 0.25);
  font-size: 6px;
  letter-spacing: 0.16em;
}

.process-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 520;
}

.process-item p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.8;
}

.process-item > i {
  justify-self: end;
  color: rgba(255, 255, 255, 0.24);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.1em;
}

.contact {
  position: relative;
  padding: 145px 0;
  background: #07070a;
  overflow: hidden;
}

.contact-aurora {
  position: absolute;
  width: 800px;
  height: 700px;
  left: -300px;
  top: -120px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(102, 230, 255, 0.12), rgba(105, 104, 255, 0.15), rgba(227, 115, 255, 0.1), rgba(102, 230, 255, 0.12));
  filter: blur(110px);
}

.contact-ring {
  position: absolute;
  width: 720px;
  height: 720px;
  left: -320px;
  top: -140px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.012), 0 0 0 180px rgba(255, 255, 255, 0.009);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.7fr);
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  font-size: clamp(46px, 5.2vw, 72px);
}

.contact-copy > p {
  max-width: 480px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 13px;
  line-height: 1.85;
}

.contact-notes {
  margin-top: 43px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-notes span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.contact-notes i {
  color: #96a6ff;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.1em;
}

.contact-form {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: rgba(120, 128, 255, 0.08);
  filter: blur(50px);
  pointer-events: none;
}

.form-title {
  position: relative;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-title > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.form-title i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
}

.form-title strong {
  font-size: 13px;
}

.form-title > span {
  color: rgba(255, 255, 255, 0.26);
  font-size: 7px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.contact-form label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.contact-form .form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -10000px;
  overflow: hidden;
  pointer-events: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input,
.contact-form select {
  height: 45px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 78px;
  padding: 12px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.45) 50%), linear-gradient(135deg, rgba(255,255,255,.45) 50%, transparent 50%);
  background-position: calc(100% - 16px) 19px, calc(100% - 12px) 19px;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}

.contact-form option {
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(139, 159, 255, 0.56);
  background-color: rgba(255, 255, 255, 0.055);
}

.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  padding: 0 8px 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg, #fff, #dfe8ff);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.25s;
}

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

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-submit i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 17, 23, 0.08);
  font-style: normal;
}

.form-policy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 6px;
  text-align: center;
}

.form-error {
  display: block;
  min-height: 0;
  color: #ff9eae;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.form-error:empty {
  display: none;
}

.form-success {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  border-radius: inherit;
  background: rgba(9, 10, 15, 0.97);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: 0.35s ease;
}

.contact-form.submitted .form-success {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.form-success > span {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #bfefff);
  font-size: 18px;
}

.form-success strong {
  font-size: 16px;
}

.form-success small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.site-footer {
  padding: 70px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050507;
}

.footer-main {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 9px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #b9c5ff;
}

.footer-bottom {
  padding-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 7px;
}

.footer-bottom b {
  font-weight: 400;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(720px, calc(100% - 36px));
  }

  .hero {
    padding-top: 130px;
  }

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

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

  .hero-art {
    width: min(620px, 100%);
    margin: 10px auto 0;
  }

  .hero-bottom {
    margin-top: 35px;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .manifesto-copy {
    max-width: 560px;
  }

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

  .capability-card {
    min-height: 360px;
  }

  .products-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .products-heading > p {
    max-width: 580px;
    margin-bottom: 0;
  }

  .product-tabs {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .product-tabs::-webkit-scrollbar {
    display: none;
  }

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

  .product-copy {
    min-height: 590px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .product-screen {
    min-height: 520px;
    margin: 22px;
  }

  .products-proof > div {
    padding-inline: 20px;
  }

  .platform-points {
    grid-template-columns: 1fr 1fr;
  }

  .platform-points > div:nth-child(2) {
    border-right: 0;
  }

  .platform-points > div:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .agent-explorer {
    grid-template-columns: 1fr;
  }

  .agent-tabs {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    overflow-x: auto;
  }

  .agent-tabs button {
    min-width: 210px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 680px;
  }

  .contact-form {
    max-width: 640px;
  }

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

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header {
    height: 68px;
  }

  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 128px;
  }

  .footer-brand .brand-logo {
    width: 158px;
  }

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

  .hero-grid {
    background-size: 48px 48px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.11;
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-art {
    min-height: 470px;
    margin-top: 30px;
  }

  .art-halo {
    width: 350px;
    height: 350px;
  }

  .orbit-one { width: 220px; height: 220px; }
  .orbit-two { width: 310px; height: 310px; }
  .orbit-three { width: 390px; height: 390px; }

  .ai-core {
    width: 165px;
    height: 165px;
  }

  .core-mark {
    width: 68px;
    height: 68px;
  }

  .core-label {
    bottom: 20px;
  }

  .orbit-node {
    width: 60px;
    height: 60px;
  }

  .node-think { top: 11%; left: 8%; }
  .node-act { right: 2%; top: 34%; }
  .node-learn { bottom: 9%; left: 15%; }

  .float-status {
    top: 2%;
    right: -6px;
    width: 178px;
  }

  .float-task {
    right: -5px;
    bottom: 2%;
    width: 188px;
  }

  .glass-float strong {
    font-size: 8px;
  }

  .hero-bottom {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-bottom > div {
    min-height: 92px;
    padding: 18px 8px !important;
  }

  .hero-bottom strong {
    font-size: 20px;
  }

  .hero-bottom > p {
    grid-column: 1 / -1;
    min-height: 74px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .manifesto,
  .products,
  .agent-matrix,
  .contact {
    padding: 90px 0;
  }

  .platform,
  .process {
    padding: 90px 0 80px;
  }

  .manifesto h2,
  .products-heading h2,
  .platform-heading h2,
  .agent-heading h2,
  .process-heading h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .products-heading h2 {
    font-size: clamp(30px, 8.8vw, 34px);
    text-wrap: wrap;
  }

  .products-heading h2 span,
  .products-heading > p {
    overflow-wrap: anywhere;
  }

  .capability-grid {
    margin-top: 50px;
  }

  .capability-card {
    min-height: 390px;
    padding: 24px;
  }

  .product-deck {
    margin-top: 48px;
    border-radius: 20px;
  }

  .product-tabs button {
    min-height: 91px;
    padding: 16px 18px;
    grid-template-columns: 23px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .product-tabs strong {
    font-size: 11px;
  }

  .product-copy {
    min-height: auto;
    padding: 28px 20px 30px;
  }

  .product-copy h3 {
    margin-top: 32px;
    font-size: 31px;
  }

  .product-lead {
    font-size: 10px;
  }

  .product-feature-grid {
    margin-top: 25px;
  }

  .product-feature-grid > div {
    min-height: 105px;
    padding: 15px 13px;
  }

  .product-actions {
    margin-top: 28px;
    padding-top: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .product-screen {
    min-height: 420px;
    margin: 10px;
    border-radius: 15px;
  }

  .product-window-bar {
    height: 43px;
  }

  .product-window-bar > span {
    display: none;
  }

  .live-product-ui,
  .studio-product-ui,
  .service-product-ui,
  .flowcraft-product-ui {
    min-height: 377px;
    height: calc(100% - 43px);
  }

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

  .live-console {
    display: none;
  }

  .virtual-presenter {
    width: 175px;
    height: 280px;
  }

  .live-automation-core {
    width: 220px;
    height: 220px;
  }

  .live-automation-core i {
    width: 178px;
    height: 178px;
  }

  .live-automation-core span {
    width: 120px;
    height: 120px;
  }

  .flowcraft-product-ui > img {
    width: 155%;
  }

  .flowcraft-screen-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .live-caption {
    bottom: 16px;
  }

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

  .mini-sidebar,
  .mini-inspector {
    display: none;
  }

  .mini-workflow-head {
    height: 56px;
  }

  .mini-node {
    width: 104px;
  }

  .node-input { left: 4%; }
  .node-reason { left: 34%; }
  .node-data,
  .node-knowledge,
  .node-output { right: 3%; }

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

  .service-list,
  .service-insight {
    display: none;
  }

  .service-chat-head {
    min-height: 58px;
  }

  .product-demo-note {
    min-height: 54px;
    padding: 10px 17px;
    line-height: 1.6;
  }

  .products-proof {
    grid-template-columns: 1fr;
  }

  .products-proof > div {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .products-proof > div:last-child {
    border-bottom: 0;
  }

  .studio-frame {
    margin-top: 48px;
  }

  .studio-chrome > span {
    display: none;
  }

  .studio-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .studio-sidebar {
    display: none;
  }

  .studio-head {
    height: 66px;
    padding: 0 15px;
  }

  .studio-actions > span {
    display: none;
  }

  .studio-body {
    margin: 8px;
  }

  .flow-canvas {
    min-height: 535px;
  }

  .flow-links {
    display: none;
  }

  .flow-node {
    left: 50% !important;
    right: auto !important;
    width: min(230px, calc(100% - 34px));
    transform: translateX(-50%);
  }

  .flow-node > b {
    display: none;
  }

  .flow-start { top: 4%; }
  .flow-plan { top: 20%; }
  .flow-data { top: 36%; }
  .flow-knowledge { top: 52%; }
  .flow-review { top: 68%; }
  .flow-output { top: 84%; }

  .running-pill {
    display: none;
  }

  .platform-points {
    grid-template-columns: 1fr;
  }

  .platform-points > div,
  .platform-points > div:not(:first-child) {
    min-height: 130px;
    padding: 23px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .agent-explorer {
    margin-top: 50px;
  }

  .agent-tabs button {
    min-width: 175px;
    min-height: 68px;
  }

  .agent-showcase {
    min-height: 630px;
    padding: 20px;
  }

  .showcase-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .showcase-copy h3 {
    font-size: 27px;
  }

  .showcase-result {
    min-height: 240px;
  }

  .showcase-command {
    margin-top: 20px;
  }

  .showcase-command p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .process-list {
    margin-top: 50px;
  }

  .process-item {
    min-height: 190px;
    grid-template-columns: 35px 1fr;
    gap: 10px 14px;
    padding: 25px 0;
  }

  .process-item p {
    grid-column: 2;
  }

  .process-item > i {
    grid-column: 2;
    justify-self: start;
  }

  .contact-layout {
    gap: 55px;
  }

  .contact-form {
    padding: 22px 17px;
  }

  .form-title > span {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 45px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 118px;
  }

  .narrow-only-break {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .manifesto h2,
  .products-heading h2,
  .platform-heading h2,
  .agent-heading h2,
  .process-heading h2,
  .contact-copy h2 {
    font-size: 29px;
  }

  .product-tabs {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }

  .product-tabs button > i {
    display: none;
  }

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

  .product-feature-grid > div {
    min-height: 92px;
  }

  .hero-art {
    min-height: 430px;
  }

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

  .float-status {
    width: 163px;
  }

  .float-task {
    width: 175px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
