:root {
  --bg: #edf3fa;
  --bg-soft: #f2f6fb;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --ink: #101727;
  --ink-soft: #47536b;
  --blue: #2a6eff;
  --blue-deep: #183f8f;
  --mint: #4fcf86;
  --line: rgba(96, 125, 168, 0.18);
  --navy: #101724;
  --shadow: 0 24px 72px rgba(32, 51, 87, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 64px));
  /* --heading-font: "SF Pro Display", "Avenir Next", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif; */
  --heading-font:-apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    Helvetica Neue,
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  /* --body-font: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif; */
  --body-font: -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    Helvetica Neue,
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--blue-deep);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(23, 52, 110, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-140%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

[id] {
  scroll-margin-top: 104px;
}

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: background-color 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease;
}

body.is-scrolled .site-header,
body.is-menu-open .site-header {
  background: rgba(239, 245, 252, 0.76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(26, 44, 80, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 14px;
}

.brand {
  flex-shrink: 0;
}

.brand__image {
  width: clamp(132px, 10vw, 152px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.9vw, 34px);
  font-size: 0.96rem;
  color: rgba(16, 23, 39, 0.82);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, #2a6eff, #61cffc);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: #14346e;
  box-shadow: 0 10px 24px rgba(27, 47, 84, 0.08);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

body.is-menu-open .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

body.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.page-main {
  overflow: hidden;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  isolation: isolate;
  --hero-shift-x-soft: 0px;
  --hero-shift-y-soft: 0px;
  --hero-shift-x-mid: 0px;
  --hero-shift-y-mid: 0px;
  --hero-shift-x-strong: 0px;
  --hero-shift-y-strong: 0px;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero::before {
  animation: heroTintShift var(--hero-tint-duration, 9s) ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.page-hero::after {
  inset: -12% -8% -10%;
  background: var(
    --hero-aura,
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(148, 190, 255, 0.22), transparent 24%),
    radial-gradient(circle at 54% 96%, rgba(255, 255, 255, 0.16), transparent 28%)
  );
  background-repeat: no-repeat;
  background-size: 128% 128%, 122% 122%, 136% 136%;
  background-position: 0% 12%, 100% 0%, 50% 100%;
  opacity: var(--hero-aura-opacity, 0.9);
  mix-blend-mode: var(--hero-aura-blend, screen);
  filter: blur(var(--hero-aura-blur, 8px));
  transform: translate3d(0, 0, 0) scale(1.08);
  animation: heroAuraShift var(--hero-aura-duration, 10s) ease-in-out infinite alternate;
  will-change: transform, opacity, background-position;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 168px 0 112px;
}

.page-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(3.2rem, 5.3vw, 5.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.page-hero__lead {
  max-width: 840px;
  margin: 24px 0 0;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.84;
  color: var(--ink-soft);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -160%;
  width: 40%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.26),
    rgba(255, 255, 255, 0)
  );
  transition: transform 420ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(380%);
}

.button--primary {
  background: linear-gradient(90deg, #2a6eff, #61cffc);
  color: #fff;
  box-shadow: 0 18px 40px rgba(42, 110, 255, 0.24);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(42, 110, 255, 0.14);
  color: var(--blue-deep);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(42, 110, 255, 0.28);
}

.button--light {
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-deep);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.18);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(42, 110, 255, 0.24);
  outline-offset: 3px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 48px 0 0;
}

.metric-card {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(84, 117, 172, 0.12);
  background: rgba(255, 255, 255, 0.48);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(32, 51, 87, 0.08);
}

.metric-card strong {
  display: block;
  font-size: 1.56rem;
  line-height: 1;
  color: var(--blue-deep);
}

.metric-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-lines,
.hero-glow,
.hero-ribbon,
.hero-mesh,
.hero-wave {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(44px);
  will-change: transform, opacity;
}

.hero-glow--left {
  animation: glowDriftLeft 11s ease-in-out infinite alternate;
}

.hero-glow--right {
  animation: glowDriftRight 13s ease-in-out infinite alternate;
}

.hero-lines {
  z-index: 1;
  width: 100%;
  opacity: 0.5;
  transform-origin: center top;
  animation: waveDrift 9s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.84);
  stroke-width: 2.4;
}

.hero-ribbon {
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.74;
  will-change: transform, opacity;
}

.hero-ribbon--one {
  animation: ribbonSweepOne 10s ease-in-out infinite alternate;
}

.hero-ribbon--two {
  animation: ribbonSweepTwo 11s ease-in-out infinite alternate;
}

.hero-mesh {
  left: 50%;
  bottom: -36px;
  width: min(1220px, 90vw);
  height: 220px;
  transform: translateX(-50%) perspective(920px) rotateX(68deg);
  transform-origin: center top;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.84) 0 1.2px, transparent 1.9px) 0 0 / 14px
      14px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  opacity: 0.56;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 20%, #000);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 20%, #000);
  animation: meshPulse 18s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-heading__eyebrow {
  margin: 0 0 16px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  font-weight: 780;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section-heading p:last-child {
  max-width: 780px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.82;
  color: var(--ink-soft);
}

.section-heading--left p:last-child {
  margin-left: 0;
  margin-right: 0;
}

.overview-stack {
  display: grid;
  gap: 24px;
}

.overview-card {
  position: relative;
  overflow: hidden;
  padding: 34px 36px 32px;
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 88px rgba(26, 43, 84, 0.16);
}

.overview-card::before,
.overview-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.overview-card::before {
  inset: auto -14% -34% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(10px);
}

.overview-card::after {
  inset: 0 auto 0 -180%;
  width: 34%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  transition: transform 540ms ease;
}

.overview-card:hover::after {
  transform: translateX(440%);
}

.overview-card__content {
  position: relative;
  z-index: 1;
}

.overview-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.overview-card__lead {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: 1.03rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.86);
}

.overview-card__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 0;
}

.overview-card__item {
  min-height: 128px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.overview-card__item strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.45;
}

.overview-card__item span {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-weight: 700;
  color: inherit;
}

.card-link::after {
  content: "\2192";
}

.overview-card--orchid {
  background:
    linear-gradient(135deg, rgba(255, 193, 252, 0.16), transparent 44%),
    linear-gradient(145deg, #4f5ce6 0%, #6b78f0 40%, #9ba3f4 100%);
}

.overview-card--mauve {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(145deg, #2d7a9e 0%, #3d8fb5 38%, #6ab8d4 100%);
}

.overview-card--aurora {
  background:
    radial-gradient(circle at 52% 92%, rgba(255, 237, 143, 0.42), transparent 18%),
    linear-gradient(140deg, #a6b3db 0%, #adcadf 44%, #a6d8df 100%);
}

.overview-card--cobalt {
  background:
    radial-gradient(circle at 92% 16%, rgba(96, 63, 255, 0.4), transparent 14%),
    linear-gradient(135deg, #6a7df0 0%, #7289ef 52%, #7d90ff 100%);
}

.feature-list {
  display: grid;
  gap: 56px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: clamp(42px, 7vw, 116px);
}

.feature-row--reverse {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
}

.feature-row--reverse .feature-copy {
  order: 2;
}

.feature-row--reverse .feature-art {
  order: 1;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.76rem, 2.6vw, 2.72rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.feature-copy__lead {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.feature-bullets {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-bullets li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.98rem;
  line-height: 1.82;
  color: var(--ink-soft);
}

.feature-bullets li::before {
  content: "";
  position: relative;
  top: 0.46em;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(42, 110, 255, 0.1);
}

.feature-bullets li::after {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 4px;
  width: 5px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.feature-bullets--mint li::before {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(79, 207, 134, 0.12);
}

.feature-art {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.signal-graphic {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--signal-width, clamp(300px, 33vw, 408px)));
  aspect-ratio: var(--signal-ratio, 1.04);
  border-radius: var(--signal-radius, 32px);
  overflow: hidden;
  border: 1px solid var(--signal-border, rgba(86, 117, 168, 0.12));
  background: var(--signal-base, linear-gradient(145deg, #e8eef8 0%, #d5deef 100%));
  box-shadow: var(--signal-shadow, var(--shadow));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.signal-graphic:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 34px 92px rgba(26, 43, 84, 0.18);
}

.signal-graphic::before,
.signal-graphic::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.signal-graphic::before {
  inset: var(--signal-before-inset, 14px);
  border-radius: var(--signal-before-radius, calc(var(--signal-radius, 32px) - 10px));
  background: var(--signal-before, none);
  opacity: var(--signal-before-opacity, 1);
  transform: var(--signal-before-transform, none);
}

.signal-graphic::after {
  inset: var(--signal-after-inset, auto);
  width: var(--signal-after-width, 60%);
  height: var(--signal-after-height, 60%);
  right: var(--signal-after-right, -8%);
  bottom: var(--signal-after-bottom, -10%);
  border-radius: var(--signal-after-radius, 50%);
  filter: var(--signal-after-filter, blur(18px));
  background: var(--signal-after, none);
  opacity: var(--signal-after-opacity, 0.9);
  transform: var(--signal-after-transform, none);
}

.page--agenticwork .feature-row:not(.feature-row--reverse) .feature-art,
.page--products .feature-row:not(.feature-row--reverse) .feature-art,
.page--support .feature-row:not(.feature-row--reverse) .feature-art {
  justify-content: flex-end;
  padding-right: 14px;
}

.page--agenticwork .feature-row--reverse .feature-art,
.page--products .feature-row--reverse .feature-art,
.page--support .feature-row--reverse .feature-art {
  justify-content: flex-start;
  padding-left: 14px;
}

.page--agenticwork .signal-graphic {
  --signal-width: clamp(300px, 33vw, 412px);
  --signal-ratio: 1.08;
  --signal-radius: 36px;
  --signal-border: rgba(112, 127, 205, 0.18);
}

.signal-graphic--coordination {
  --signal-base:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(145deg, #123d9f 0%, #3366dd 42%, #889af5 100%);
  --signal-before:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 4px, transparent 5px) 14% 26% / 10px 10px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 4px, transparent 5px) 40% 44% / 10px 10px no-repeat,
    radial-gradient(circle, rgba(171, 255, 241, 0.94) 0 5px, transparent 6px) 72% 28% / 12px 12px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 4px, transparent 5px) 68% 72% / 10px 10px no-repeat,
    linear-gradient(138deg, transparent 0 44%, rgba(255, 255, 255, 0.42) 44.4% 45.4%, transparent 46%) 16% 30% / 50% 22% no-repeat,
    linear-gradient(30deg, transparent 0 47%, rgba(176, 255, 241, 0.46) 47.4% 48.4%, transparent 49%) 44% 28% / 32% 28% no-repeat,
    linear-gradient(180deg, transparent 0 49%, rgba(255, 255, 255, 0.18) 49.2% 50.8%, transparent 51%) 14% 72% / 62% 26% no-repeat,
    radial-gradient(circle at 24% 82%, rgba(255, 255, 255, 0.14), transparent 24%);
  --signal-after: radial-gradient(circle, rgba(136, 255, 240, 0.9) 0%, rgba(136, 255, 240, 0) 70%);
  --signal-after-width: 58%;
  --signal-after-height: 58%;
}

.signal-graphic--emergence {
  --signal-ratio: 1;
  --signal-base:
    radial-gradient(circle at 84% 18%, rgba(255, 230, 224, 0.36), transparent 16%),
    linear-gradient(145deg, #d7dfff 0%, #93b7ff 36%, #4f77ef 100%);
  --signal-before:
    radial-gradient(circle at 34% 66%, transparent 0 28px, rgba(255, 255, 255, 0.42) 29px 31px, transparent 32px),
    radial-gradient(circle at 56% 48%, transparent 0 40px, rgba(255, 255, 255, 0.34) 41px 43px, transparent 44px),
    radial-gradient(circle at 74% 30%, transparent 0 24px, rgba(255, 210, 188, 0.48) 25px 27px, transparent 28px),
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 4px, transparent 5px) 34% 66% / 10px 10px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 4px, transparent 5px) 56% 48% / 10px 10px no-repeat,
    radial-gradient(circle, rgba(255, 212, 192, 0.9) 0 4px, transparent 5px) 74% 30% / 10px 10px no-repeat;
  --signal-after: radial-gradient(circle, rgba(255, 204, 182, 0.84) 0%, rgba(255, 204, 182, 0) 72%);
  --signal-after-width: 54%;
  --signal-after-height: 54%;
}

.signal-graphic--checkpoint {
  --signal-ratio: 1.12;
  --signal-base:
    radial-gradient(circle at 18% 18%, rgba(245, 255, 255, 0.28), transparent 20%),
    linear-gradient(145deg, #c4f0df 0%, #8be2da 40%, #34c8c2 100%);
  --signal-before:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.28) 8% 92%, transparent 92%) 10% 24% / 80% 2px no-repeat,
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.24) 8% 92%, transparent 92%) 10% 50% / 80% 2px no-repeat,
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.2) 8% 92%, transparent 92%) 10% 76% / 80% 2px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 5px, transparent 6px) 20% 24% / 12px 12px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 5px, transparent 6px) 52% 50% / 12px 12px no-repeat,
    radial-gradient(circle, rgba(110, 255, 198, 0.94) 0 5px, transparent 6px) 78% 76% / 12px 12px no-repeat,
    linear-gradient(145deg, rgba(20, 84, 151, 0.12), rgba(255, 255, 255, 0.06)) 58% 18% / 22% 18% no-repeat;
  --signal-after: radial-gradient(circle, rgba(107, 255, 198, 0.88) 0%, rgba(107, 255, 198, 0) 72%);
  --signal-after-width: 52%;
  --signal-after-height: 52%;
}

.signal-graphic--governance {
  --signal-ratio: 1.18;
  --signal-base:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(145deg, #dcecb7 0%, #b6e3a6 40%, #7fd79a 100%);
  --signal-before:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.12)) 14% 18% / 22% 64% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)) 40% 18% / 18% 64% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)) 64% 18% / 16% 64% no-repeat,
    linear-gradient(90deg, rgba(109, 144, 71, 0.18), rgba(255, 255, 255, 0)) 14% 74% / 66% 2px no-repeat,
    radial-gradient(circle, rgba(255, 240, 176, 0.9) 0 6px, transparent 7px) 74% 28% / 14px 14px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 5px, transparent 6px) 52% 58% / 12px 12px no-repeat;
  --signal-after: radial-gradient(circle, rgba(255, 235, 146, 0.84) 0%, rgba(255, 235, 146, 0) 72%);
  --signal-after-width: 48%;
  --signal-after-height: 48%;
}

.page--products .signal-graphic {
  --signal-width: clamp(324px, 35vw, 442px);
  --signal-ratio: 1.22;
  --signal-radius: 30px;
  --signal-border: rgba(120, 130, 176, 0.18);
}

.signal-graphic--appliance {
  --signal-ratio: 1.32;
  --signal-base:
    radial-gradient(circle at 14% 16%, rgba(143, 160, 255, 0.26), transparent 16%),
    linear-gradient(145deg, #ececf6 0%, #d3daef 42%, #adb8e6 100%);
  --signal-before:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(215, 223, 255, 0.28)) 12% 18% / 68% 15% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(198, 209, 245, 0.22)) 18% 40% / 60% 15% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(174, 186, 229, 0.18)) 24% 62% / 52% 15% no-repeat,
    linear-gradient(90deg, rgba(108, 127, 215, 0.3), rgba(108, 127, 215, 0)) 12% 84% / 76% 3px no-repeat,
    radial-gradient(circle, rgba(106, 122, 255, 0.64) 0 8px, transparent 9px) 82% 26% / 18px 18px no-repeat;
  --signal-after: radial-gradient(circle, rgba(113, 124, 255, 0.74) 0%, rgba(113, 124, 255, 0) 72%);
  --signal-after-width: 44%;
  --signal-after-height: 64%;
}

.signal-graphic--innovation {
  --signal-ratio: 1.06;
  --signal-base:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.3), transparent 15%),
    linear-gradient(145deg, #eadbf6 0%, #d4c4f2 38%, #a88be2 100%);
  --signal-before:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)) 18% 20% / 26% 24% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.14)) 50% 36% / 24% 20% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.1)) 28% 58% / 30% 18% no-repeat,
    linear-gradient(150deg, transparent 0 46%, rgba(255, 255, 255, 0.34) 46.4% 47.4%, transparent 48%) 24% 30% / 44% 32% no-repeat,
    linear-gradient(30deg, transparent 0 48%, rgba(255, 255, 255, 0.3) 48.4% 49.4%, transparent 50%) 48% 38% / 30% 30% no-repeat;
  --signal-after: radial-gradient(circle, rgba(240, 176, 255, 0.74) 0%, rgba(240, 176, 255, 0) 72%);
  --signal-after-width: 50%;
  --signal-after-height: 50%;
}

.signal-graphic--engine {
  --signal-ratio: 1.18;
  --signal-base:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.24), transparent 14%),
    linear-gradient(145deg, #c9bbf3 0%, #ad9ae9 40%, #7381dd 100%);
  --signal-before:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)) 14% 16% / 72% 68% no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)) 34% 30% / 22% 32% no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)) 18% 48% / 54% 2px no-repeat,
    linear-gradient(0deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)) 54% 22% / 2px 42% no-repeat,
    radial-gradient(circle, rgba(96, 118, 255, 0.88) 0 10px, transparent 11px) 72% 28% / 22px 22px no-repeat;
  --signal-after: radial-gradient(circle, rgba(105, 118, 255, 0.82) 0%, rgba(105, 118, 255, 0) 72%);
  --signal-after-width: 42%;
  --signal-after-height: 60%;
}

.signal-graphic--gravity {
  --signal-ratio: 1.26;
  --signal-base:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.26), transparent 14%),
    linear-gradient(145deg, #e2e3ef 0%, #c9cdf0 44%, #9090eb 100%);
  --signal-before:
    radial-gradient(circle at 56% 54%, transparent 0 40px, rgba(255, 255, 255, 0.58) 41px 43px, transparent 44px),
    radial-gradient(circle at 56% 54%, transparent 0 74px, rgba(255, 255, 255, 0.26) 75px 77px, transparent 78px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)) 14% 20% / 30% 12% no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04)) 18% 70% / 24% 10% no-repeat;
  --signal-after: radial-gradient(circle, rgba(255, 232, 164, 0.8) 0%, rgba(255, 232, 164, 0) 72%);
  --signal-after-width: 40%;
  --signal-after-height: 56%;
}

.page--support .signal-graphic {
  --signal-width: clamp(304px, 33vw, 408px);
  --signal-ratio: 1.04;
  --signal-radius: 40px;
  --signal-border: rgba(111, 147, 167, 0.18);
}

.signal-graphic--retrieval {
  --signal-ratio: 1.08;
  --signal-base:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.28), transparent 16%),
    linear-gradient(145deg, #d7ebf3 0%, #c6e2f2 40%, #addce1 100%);
  --signal-before-inset: 0;
  --signal-before:
    radial-gradient(circle at 52% 54%, transparent 0 34px, rgba(255, 255, 255, 0.88) 35px 37px, transparent 38px),
    radial-gradient(circle at 52% 54%, transparent 0 68px, rgba(255, 255, 255, 0.42) 69px 71px, transparent 72px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18)) 14% 24% / 22% 38% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.16)) 66% 56% / 18% 24% no-repeat,
    radial-gradient(circle, rgba(93, 166, 255, 0.76) 0 7px, transparent 8px) 72% 24% / 16px 16px no-repeat;
  --signal-after: radial-gradient(circle, rgba(104, 172, 255, 0.78) 0%, rgba(104, 172, 255, 0) 72%);
  --signal-after-width: 42%;
  --signal-after-height: 54%;
}

.signal-graphic--correction {
  --signal-ratio: 1;
  --signal-base:
    radial-gradient(circle at 22% 18%, rgba(255, 251, 236, 0.34), transparent 18%),
    linear-gradient(145deg, #f4ead8 0%, #e6e0f2 34%, #abc2ff 100%);
  --signal-before-inset: 8px;
  --signal-before:
    radial-gradient(circle at 48% 52%, transparent 0 44px, rgba(255, 255, 255, 0.56) 45px 47px, transparent 48px),
    radial-gradient(circle at 48% 52%, transparent 0 78px, rgba(255, 214, 186, 0.44) 79px 81px, transparent 82px),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.44) 48.4% 49.4%, transparent 50%) 26% 26% / 42% 42% no-repeat,
    linear-gradient(315deg, transparent 0 48%, rgba(255, 219, 191, 0.54) 48.4% 49.4%, transparent 50%) 40% 42% / 36% 36% no-repeat;
  --signal-after: radial-gradient(circle, rgba(255, 195, 132, 0.78) 0%, rgba(255, 195, 132, 0) 72%);
  --signal-after-width: 48%;
  --signal-after-height: 48%;
}

.signal-graphic--reasoning {
  --signal-ratio: 1.12;
  --signal-base:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.24), transparent 16%),
    linear-gradient(145deg, #d2eff2 0%, #d7ebf7 36%, #ddd3f2 100%);
  --signal-before-inset: 6px;
  --signal-before:
    radial-gradient(circle at 42% 50%, transparent 0 28px, rgba(255, 255, 255, 0.84) 29px 31px, transparent 32px),
    radial-gradient(circle at 42% 50%, transparent 0 54px, rgba(255, 255, 255, 0.38) 55px 57px, transparent 58px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.16)) 62% 26% / 18% 14% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12)) 66% 48% / 22% 18% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)) 58% 70% / 16% 12% no-repeat,
    radial-gradient(circle, rgba(118, 233, 226, 0.84) 0 6px, transparent 7px) 72% 54% / 16px 16px no-repeat;
  --signal-after: radial-gradient(circle, rgba(116, 234, 226, 0.82) 0%, rgba(116, 234, 226, 0) 72%);
  --signal-after-width: 44%;
  --signal-after-height: 54%;
}

.signal-graphic--operations {
  --signal-ratio: 1.22;
  --signal-base:
    radial-gradient(circle at 16% 18%, rgba(79, 179, 255, 0.22), transparent 16%),
    linear-gradient(145deg, #d1ebf3 0%, #bdd8ef 42%, #a7e5d1 100%);
  --signal-before:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08)) 14% 20% / 56% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)) 28% 42% / 44% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06)) 22% 64% / 52% 2px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 5px, transparent 6px) 14% 20% / 12px 12px no-repeat,
    radial-gradient(circle, rgba(128, 255, 201, 0.88) 0 6px, transparent 7px) 72% 42% / 14px 14px no-repeat,
    radial-gradient(circle at 74% 58%, transparent 0 24px, rgba(255, 255, 255, 0.36) 25px 27px, transparent 28px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12)) 78% 22% / 12% 52% no-repeat;
  --signal-after: radial-gradient(circle, rgba(137, 255, 197, 0.84) 0%, rgba(137, 255, 197, 0) 72%);
  --signal-after-width: 40%;
  --signal-after-height: 60%;
}

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

.workflow-fit-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(87, 118, 170, 0.12);
  box-shadow: var(--shadow);
}

.workflow-fit-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -22% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(18px);
}

.workflow-fit-card__visual {
  position: relative;
  height: 118px;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.workflow-fit-card__visual::before,
.workflow-fit-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.workflow-fit-card__visual::before {
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.55) 28% 30%, transparent 30% 58%, rgba(255, 255, 255, 0.4) 58% 60%, transparent 60%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 24px);
  opacity: 0.9;
}

.workflow-fit-card__visual::after {
  inset: 18px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.workflow-fit-card__eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.workflow-fit-card h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.32;
  letter-spacing: -0.018em;
}

.workflow-fit-card p {
  margin: 12px 0 0;
  font-size: 0.96rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.workflow-fit-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.workflow-fit-list li::before {
  content: "";
  position: relative;
  top: 0.44em;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
}

.workflow-fit-card--finance .workflow-fit-card__visual {
  background: linear-gradient(145deg, #bcdcf8 0%, #95c1f8 44%, #7c89f2 100%);
}

.workflow-fit-card--finance::before {
  background: radial-gradient(circle, rgba(118, 163, 255, 0.68) 0%, rgba(118, 163, 255, 0) 68%);
}

.workflow-fit-card--knowledge .workflow-fit-card__visual {
  background: linear-gradient(145deg, #d7d3f8 0%, #cabaf3 40%, #b0e0ef 100%);
}

.workflow-fit-card--knowledge::before {
  background: radial-gradient(circle, rgba(203, 160, 255, 0.58) 0%, rgba(203, 160, 255, 0) 68%);
}

.workflow-fit-card--engineering .workflow-fit-card__visual {
  background: linear-gradient(145deg, #c7e6de 0%, #b4e0d7 40%, #95cfe7 100%);
}

.workflow-fit-card--engineering::before {
  background: radial-gradient(circle, rgba(108, 233, 191, 0.62) 0%, rgba(108, 233, 191, 0) 68%);
}

.page-hero__actions--center {
  justify-content: center;
}

.tab-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(88, 116, 158, 0.14);
  box-shadow: 0 18px 34px rgba(31, 49, 88, 0.08);
}

.tab-button {
  min-width: 124px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tab-button.is-active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(37, 81, 160, 0.12);
}

.scene-panel {
  width: 100%;
}

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

.scene-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 196px;
  gap: 18px;
  min-height: 292px;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.scene-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 88px rgba(26, 43, 84, 0.15);
}

.scene-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.82rem;
  font-weight: 700;
}

.scene-card__title {
  margin: 0;
  font-size: clamp(1.48rem, 2vw, 1.96rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.scene-card__summary {
  margin: 12px 0 0;
  font-size: 0.98rem;
  line-height: 1.76;
}

.scene-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.scene-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  line-height: 1.72;
}

.scene-list li::before {
  content: "";
  position: relative;
  top: 0.42em;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.72;
}

.scene-card--sky {
  background: linear-gradient(135deg, #a9daf6 0%, #98cdfb 100%);
  color: #18436f;
}

.scene-card--violet {
  background: linear-gradient(135deg, #cbbcf4 0%, #c0b3f5 100%);
  color: #4f4181;
}

.scene-card--amber {
  background: linear-gradient(135deg, #f6bf7d 0%, #f0b169 100%);
  color: #7a4d1c;
}

.scene-card--indigo {
  background: linear-gradient(135deg, #8fbaf4 0%, #6e7dff 100%);
  color: #173b87;
}

.scene-card--cloud {
  background: linear-gradient(135deg, #b6dff8 0%, #9fd2f9 100%);
  color: #18436f;
}

.scene-card--lilac {
  background: linear-gradient(135deg, #d7c6f6 0%, #cab9f7 100%);
  color: #513f84;
}

.scene-card--sand {
  background: linear-gradient(135deg, #f7c98e 0%, #efb774 100%);
  color: #785021;
}

.scene-card--ocean {
  background: linear-gradient(135deg, #9ec6f6 0%, #6d8cff 100%);
  color: #163a87;
}

.scene-visual {
  position: relative;
  align-self: end;
  width: 184px;
  height: 184px;
  margin-left: auto;
}

.scene-visual span {
  position: absolute;
  display: block;
}

.scene-visual--chart::before,
.scene-visual--report::before,
.scene-visual--trade::before,
.scene-visual--industry::before,
.scene-visual--policy::before,
.scene-visual--contract::before,
.scene-visual--knowledge::before,
.scene-visual--code::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
}

.scene-visual--chart span:nth-child(1),
.scene-visual--policy span:nth-child(1) {
  left: 22px;
  right: 48px;
  bottom: 34px;
  height: 88px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(196, 224, 255, 0.74));
  box-shadow: 0 18px 30px rgba(56, 109, 183, 0.18);
}

.scene-visual--chart span:nth-child(2),
.scene-visual--policy span:nth-child(2) {
  right: 8px;
  top: 20px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(145deg, #478cff, #234bde);
  box-shadow: inset 10px 0 0 rgba(255, 255, 255, 0.28);
}

.scene-visual--chart span:nth-child(3),
.scene-visual--policy span:nth-child(3) {
  left: 44px;
  bottom: 56px;
  width: 66px;
  height: 4px;
  border-radius: 999px;
  background: rgba(68, 120, 255, 0.34);
  box-shadow: 0 18px 0 rgba(68, 120, 255, 0.34), 0 36px 0 rgba(68, 120, 255, 0.34);
}

.scene-visual--report span:nth-child(1),
.scene-visual--contract span:nth-child(1) {
  inset: 24px 44px 22px 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 238, 255, 0.88));
  box-shadow: 0 22px 30px rgba(112, 84, 198, 0.16);
}

.scene-visual--report span:nth-child(2),
.scene-visual--contract span:nth-child(2) {
  right: 16px;
  top: 64px;
  width: 58px;
  height: 58px;
  border: 8px solid #8a60f1;
  border-radius: 50%;
}

.scene-visual--report span:nth-child(3),
.scene-visual--contract span:nth-child(3) {
  right: 3px;
  top: 112px;
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: #8a60f1;
  transform: rotate(44deg);
}

.scene-visual--trade span:nth-child(1),
.scene-visual--knowledge span:nth-child(1) {
  left: 48px;
  right: 48px;
  top: 20px;
  bottom: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(173, 202, 255, 0.88));
  transform: rotate(-3deg);
  box-shadow: 0 18px 30px rgba(136, 92, 33, 0.16);
}

.scene-visual--trade span:nth-child(2),
.scene-visual--knowledge span:nth-child(2) {
  left: 24px;
  right: 26px;
  bottom: 34px;
  height: 78px;
  border: 4px solid rgba(255, 206, 113, 0.94);
  border-radius: 50%;
}

.scene-visual--trade span:nth-child(3),
.scene-visual--knowledge span:nth-child(3) {
  left: 72px;
  bottom: 58px;
  width: 16px;
  height: 58px;
  border-radius: 12px;
  background: #5b87ff;
  box-shadow: 28px -14px 0 #7ea2ff, 56px -30px 0 #ffd56d;
}

.scene-visual--industry span:nth-child(1),
.scene-visual--code span:nth-child(1) {
  left: 58px;
  top: 54px;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(145deg, #59c6ff, #4f69ff);
  box-shadow: 0 18px 30px rgba(40, 63, 152, 0.2);
}

.scene-visual--industry span:nth-child(2),
.scene-visual--code span:nth-child(2) {
  inset: 16px;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.scene-visual--industry span:nth-child(3),
.scene-visual--code span:nth-child(3) {
  inset: 0;
  border: 4px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  transform: rotate(55deg);
}

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

.mini-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(84, 117, 172, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(26, 43, 84, 0.14);
}

.mini-card__eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.mini-card h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 750;
  line-height: 1.34;
  letter-spacing: -0.015em;
}

.mini-card p {
  margin: 12px 0 0;
  font-size: 0.96rem;
  line-height: 1.76;
  color: var(--ink-soft);
}

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

.step-card {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(84, 117, 172, 0.1);
  box-shadow: var(--shadow);
}

.step-card__index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a6eff, #61cffc);
  color: #fff;
  font-weight: 800;
}

.step-card h3 {
  margin: 16px 0 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.step-card p {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.74;
  color: var(--ink-soft);
}

.partner-band {
  position: relative;
  overflow: hidden;
}

.partner-band::before {
  content: "";
  position: absolute;
  inset: auto -8% 0;
  height: 220px;
  background:
    radial-gradient(circle at 12% 32%, rgba(158, 221, 255, 0.62), transparent 26%),
    radial-gradient(circle at 46% 76%, rgba(104, 174, 255, 0.4), transparent 28%),
    radial-gradient(circle at 84% 48%, rgba(89, 155, 255, 0.28), transparent 26%),
    linear-gradient(180deg, transparent, rgba(98, 175, 255, 0.16));
}

.partner-band::after {
  content: "";
  position: absolute;
  inset: auto -14% 28px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.44), rgba(83, 168, 255, 0.18));
  transform: scaleX(1.16);
}

.partner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 108px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(26, 43, 84, 0.14);
}

.partner-card--image {
  padding: 18px 24px;
}

.partner-card__logo {
  width: 100%;
  height: 80px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.partner-card__logo--hanvon {
  height: 68px;
}

.partner-card__mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.56);
}

.partner-card__mark--red {
  background: #e61e25;
}

.partner-card__mark--coral {
  background: #ff4c32;
}

.partner-card__mark--crimson {
  background: #d8182d;
}

.partner-card__name {
  font-size: clamp(1.44rem, 2vw, 1.92rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.company-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(84, 117, 172, 0.1);
  box-shadow: var(--shadow);
}

.company-card h3 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 750;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.company-card p {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.76;
  color: var(--ink-soft);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #245fe8 0%, #5fb3ff 52%, #7fe3de 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.cta-panel p {
  margin: 10px 0 0;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.page-footer {
  margin-top: 28px;
  background: linear-gradient(90deg, #101724 0%, #121c2d 100%);
  color: rgba(255, 255, 255, 0.9);
}

.footer-shell {
  padding: 0 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  padding-right: 24px;
}

.footer-brand p {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.62);
}

.footer-logo {
  width: min(168px, 48vw);
  filter: brightness(0) invert(1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  margin: 0 0 6px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.footer-col a {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer-col p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.42);
}

.hero--home {
  background: linear-gradient(180deg, #e4edf8 0%, #e2ecf6 40%, #dde9ed 100%);
}

.hero--home h1 {
  max-width: 11.2ch;
  font-size: clamp(3.45rem, 5.5vw, 6rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.hero--home .page-hero__lead {
  max-width: 860px;
}

.hero--home::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(79, 140, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(141, 255, 226, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02));
}

.hero--home {
  --hero-aura:
    radial-gradient(circle at 12% 18%, rgba(157, 220, 255, 0.42), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(circle at 74% 92%, rgba(96, 123, 255, 0.3), transparent 28%);
  --hero-aura-opacity: 0.94;
  --hero-aura-duration: 12s;
}

.hero--home .hero-lines {
  inset: 66px 0 auto;
  height: 320px;
}

.hero--home .hero-glow--left {
  left: -110px;
  top: 42px;
  width: 340px;
  height: 340px;
  background: rgba(82, 162, 255, 0.3);
}

.hero--home .hero-glow--right {
  right: -92px;
  bottom: 74px;
  width: 340px;
  height: 340px;
  background: rgba(75, 96, 255, 0.24);
}

.hero--home .hero-ribbon--one {
  left: -120px;
  bottom: 82px;
  width: 860px;
  height: 220px;
  background: linear-gradient(90deg, rgba(91, 177, 255, 0.34), rgba(255, 255, 255, 0.08));
  --hero-ribbon-rotate: 12deg;
}

.hero--home .hero-ribbon--two {
  right: -140px;
  bottom: -20px;
  width: 760px;
  height: 190px;
  background: linear-gradient(90deg, rgba(75, 114, 255, 0.22), rgba(166, 255, 235, 0.18));
  --hero-ribbon-rotate: -10deg;
}

.hero--agentic {
  --hero-aura:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(255, 215, 222, 0.32), transparent 18%),
    radial-gradient(circle at 58% 92%, rgba(117, 144, 255, 0.34), transparent 26%);
  --hero-aura-opacity: 0.82;
  --hero-aura-duration: 10s;
  --hero-aura-blur: 12px;
  background:
    radial-gradient(circle at 16% 12%, rgba(11, 49, 172, 0.66), transparent 30%),
    linear-gradient(130deg, #183aa0 0%, #3f61d8 40%, #9a8fd7 62%, #dfc2cb 100%);
  color: #fff;
}

.hero--agentic h1 {
  max-width: 11.8ch;
  font-size: clamp(3.05rem, 4.95vw, 5.15rem);
  line-height: 1.16;
  letter-spacing: -0.024em;
}

.hero--agentic .page-hero__lead {
  max-width: 760px;
  line-height: 1.78;
}

.hero--agentic::before {
  background:
    linear-gradient(180deg, rgba(7, 16, 44, 0.16), rgba(7, 16, 44, 0)),
    radial-gradient(circle at 88% 16%, rgba(172, 0, 38, 0.44), transparent 22%);
}

.hero--agentic .page-hero__eyebrow,
.hero--agentic .page-hero__lead,
.hero--agentic .metric-card span {
  color: rgba(255, 255, 255, 0.86);
}

.hero--agentic .metric-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero--agentic .metric-card strong {
  color: #fff;
}

.hero-wave {
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(153, 0, 31, 0.76), transparent 14%),
    linear-gradient(145deg, transparent 0 48%, rgba(255, 223, 225, 0.54) 48% 54%, transparent 54%),
    linear-gradient(145deg, transparent 0 62%, rgba(86, 101, 238, 0.74) 62% 80%, transparent 80%),
    linear-gradient(145deg, transparent 0 76%, rgba(255, 219, 216, 0.64) 76% 90%, transparent 90%);
  mix-blend-mode: screen;
  opacity: 0.76;
  transform-origin: center center;
  will-change: transform, opacity;
  animation: heroWaveShift 10s ease-in-out infinite alternate;
}

.hero--scenarios {
  --hero-aura:
    radial-gradient(circle at 14% 22%, rgba(178, 227, 255, 0.34), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.3), transparent 18%),
    radial-gradient(circle at 70% 96%, rgba(102, 122, 255, 0.26), transparent 26%);
  --hero-aura-opacity: 0.88;
  --hero-aura-duration: 13s;
  background: linear-gradient(180deg, #dfe9f8 0%, #d7e7f4 100%);
}

.hero--scenarios h1 {
  max-width: 9.6ch;
  font-size: clamp(3.08rem, 4.9vw, 5rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.hero--scenarios .page-hero__lead {
  max-width: 760px;
}

.hero--scenarios::before {
  background:
    radial-gradient(circle at 16% 22%, rgba(86, 172, 255, 0.16), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(105, 120, 255, 0.16), transparent 20%);
}

.hero--scenarios .hero-glow--left {
  left: -110px;
  top: 48px;
  width: 320px;
  height: 320px;
  background: rgba(85, 168, 255, 0.18);
}

.hero--scenarios .hero-glow--right {
  right: -92px;
  bottom: 70px;
  width: 320px;
  height: 320px;
  background: rgba(88, 114, 255, 0.18);
}

.hero--products {
  --hero-aura:
    radial-gradient(circle at 12% 18%, rgba(125, 151, 255, 0.3), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(255, 247, 225, 0.24), transparent 16%),
    radial-gradient(circle at 66% 96%, rgba(132, 160, 255, 0.26), transparent 24%);
  --hero-aura-opacity: 0.86;
  --hero-aura-duration: 13s;
  background: linear-gradient(180deg, #dddced 0%, #d3d9eb 48%, #d7d9f0 100%);
}

.hero--products h1 {
  max-width: 13.4ch;
  font-size: clamp(3.12rem, 5.15vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero--products .page-hero__lead {
  max-width: 920px;
  line-height: 1.8;
}

.hero--products::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(59, 90, 255, 0.34), transparent 20%),
    radial-gradient(circle at 84% 78%, rgba(48, 83, 255, 0.3), transparent 20%),
    radial-gradient(circle at 92% 58%, rgba(255, 229, 193, 0.24), transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04));
}

.hero--products .hero-glow--left {
  left: -120px;
  top: 24px;
  width: 340px;
  height: 340px;
  background: rgba(72, 92, 255, 0.3);
}

.hero--products .hero-glow--right {
  right: -84px;
  bottom: 46px;
  width: 320px;
  height: 320px;
  background: rgba(72, 101, 255, 0.26);
}

.hero--products .hero-ribbon--one {
  left: -80px;
  top: 44px;
  width: 480px;
  height: 180px;
  background: linear-gradient(90deg, rgba(146, 240, 255, 0.24), rgba(255, 255, 255, 0));
  --hero-ribbon-rotate: 0deg;
}

.hero--products .hero-ribbon--two {
  right: -40px;
  bottom: 40px;
  width: 440px;
  height: 180px;
  background: linear-gradient(90deg, rgba(123, 146, 255, 0.18), rgba(255, 255, 255, 0));
  --hero-ribbon-rotate: 0deg;
}

.hero--support {
  --hero-aura:
    radial-gradient(circle at 14% 18%, rgba(163, 255, 214, 0.3), transparent 22%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.3), transparent 18%),
    radial-gradient(circle at 72% 98%, rgba(124, 174, 255, 0.24), transparent 26%);
  --hero-aura-opacity: 0.88;
  --hero-aura-duration: 12s;
  background: linear-gradient(135deg, #c9e4e3 0%, #cbe8f2 40%, #cfead8 100%);
}

.hero--support h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 4.75vw, 4.85rem);
  line-height: 1.15;
  letter-spacing: -0.026em;
}

.hero--support .page-hero__lead {
  max-width: 760px;
}

.hero--support::before {
  background:
    radial-gradient(circle at 14% 88%, rgba(62, 118, 255, 0.26), transparent 28%),
    radial-gradient(circle at 70% 100%, rgba(255, 225, 122, 0.12), transparent 20%);
}

.hero--support .hero-lines {
  inset: 38px 0 auto;
  height: 320px;
}

.hero--support .hero-ribbon--one {
  left: -90px;
  bottom: 20px;
  width: 520px;
  height: 320px;
  background: linear-gradient(140deg, rgba(117, 255, 168, 0.2), rgba(68, 108, 255, 0.28));
  --hero-ribbon-rotate: 0deg;
}

.hero--support .hero-ribbon--two {
  right: -140px;
  bottom: -52px;
  width: 640px;
  height: 240px;
  background: linear-gradient(140deg, rgba(255, 235, 162, 0.16), rgba(77, 194, 255, 0.28));
  --hero-ribbon-rotate: 0deg;
}

.hero--about {
  --hero-aura:
    radial-gradient(circle at 16% 18%, rgba(140, 171, 255, 0.3), transparent 22%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.24), transparent 18%),
    radial-gradient(circle at 72% 96%, rgba(93, 224, 207, 0.24), transparent 24%);
  --hero-aura-opacity: 0.88;
  --hero-aura-duration: 13s;
  background: linear-gradient(180deg, #dde9f6 0%, #d5e5f2 100%);
}

.hero--about h1 {
  max-width: 12ch;
  font-size: clamp(3.02rem, 4.9vw, 5.05rem);
  line-height: 1.14;
  letter-spacing: -0.028em;
}

.hero--about .page-hero__lead {
  max-width: 820px;
}

.hero--about::before {
  background:
    radial-gradient(circle at 20% 26%, rgba(72, 111, 255, 0.16), transparent 24%),
    radial-gradient(circle at 86% 76%, rgba(87, 214, 198, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04));
}

.hero--about .hero-lines {
  inset: 64px 0 auto;
  height: 280px;
}

body.page--agenticwork:not(.is-scrolled):not(.is-menu-open) .brand__image {
  filter: brightness(0) invert(1);
}

body.page--agenticwork:not(.is-scrolled):not(.is-menu-open) .site-nav {
  color: rgba(255, 255, 255, 0.86);
}

body.page--agenticwork:not(.is-scrolled):not(.is-menu-open) .site-nav a:hover,
body.page--agenticwork:not(.is-scrolled):not(.is-menu-open) .site-nav a:focus-visible,
body.page--agenticwork:not(.is-scrolled):not(.is-menu-open) .site-nav a.is-active {
  color: #fff;
}

body.page--agenticwork:not(.is-scrolled):not(.is-menu-open) .site-nav a::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(176, 228, 255, 0.92));
}

body.page--agenticwork:not(.is-scrolled):not(.is-menu-open) .nav-toggle {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.hero--agentic .button--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.surface-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(84, 117, 172, 0.1);
  box-shadow: var(--shadow);
}

.link-inline {
  color: var(--blue);
  font-weight: 700;
}

.reveal-item {
  will-change: transform, opacity;
}

.reveal-item.is-visible {
  animation: revealUp 560ms ease both;
}

@keyframes heroAuraShift {
  0% {
    transform: translate3d(calc(-4% + var(--hero-shift-x-soft, 0px)), var(--hero-shift-y-soft, 0px), 0)
      scale(1.08);
    background-position: 0% 12%, 100% 0%, 50% 100%;
    opacity: var(--hero-aura-opacity, 0.82);
  }

  55% {
    transform: translate3d(
        calc(7% + var(--hero-shift-x-soft, 0px)),
        calc(-5% + var(--hero-shift-y-soft, 0px)),
        0
      )
      scale(1.18);
    background-position: 28% 0%, 76% 20%, 62% 88%;
    opacity: calc(var(--hero-aura-opacity, 0.88) + 0.06);
  }

  100% {
    transform: translate3d(
        calc(-3% + var(--hero-shift-x-soft, 0px)),
        calc(5% + var(--hero-shift-y-soft, 0px)),
        0
      )
      scale(1.13);
    background-position: 14% -4%, 94% 28%, 34% 100%;
    opacity: calc(var(--hero-aura-opacity, 0.88) - 0.1);
  }
}

@keyframes heroTintShift {
  0% {
    transform: translate3d(
        calc(-12px + var(--hero-shift-x-soft, 0px)),
        calc(-8px + var(--hero-shift-y-soft, 0px)),
        0
      )
      scale(1);
    opacity: 0.76;
  }

  100% {
    transform: translate3d(
        calc(18px + var(--hero-shift-x-soft, 0px)),
        calc(14px + var(--hero-shift-y-soft, 0px)),
        0
      )
      scale(1.06);
    opacity: 0.98;
  }
}

@keyframes floatDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes glowDriftLeft {
  0% {
    transform: translate3d(var(--hero-shift-x-mid, 0px), var(--hero-shift-y-mid, 0px), 0) scale(1);
    opacity: 0.52;
  }

  100% {
    transform: translate3d(
        calc(44px + var(--hero-shift-x-mid, 0px)),
        calc(-30px + var(--hero-shift-y-mid, 0px)),
        0
      )
      scale(1.18);
    opacity: 0.96;
  }
}

@keyframes glowDriftRight {
  0% {
    transform: translate3d(var(--hero-shift-x-mid, 0px), var(--hero-shift-y-mid, 0px), 0);
    opacity: 0.48;
  }

  100% {
    transform: translate3d(
        calc(-38px + var(--hero-shift-x-mid, 0px)),
        calc(28px + var(--hero-shift-y-mid, 0px)),
        0
      )
      scale(1.2);
    opacity: 0.9;
  }
}

@keyframes ribbonSweepOne {
  0% {
    transform: translate3d(var(--hero-shift-x-strong, 0px), var(--hero-shift-y-mid, 0px), 0)
      rotate(var(--hero-ribbon-rotate, 0deg)) scale(1);
    opacity: 0.52;
  }

  100% {
    transform: translate3d(
        calc(36px + var(--hero-shift-x-strong, 0px)),
        calc(-20px + var(--hero-shift-y-mid, 0px)),
        0
      )
      rotate(calc(var(--hero-ribbon-rotate, 0deg) + 5deg)) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes ribbonSweepTwo {
  0% {
    transform: translate3d(var(--hero-shift-x-mid, 0px), var(--hero-shift-y-strong, 0px), 0)
      rotate(var(--hero-ribbon-rotate, 0deg)) scale(1.02);
    opacity: 0.5;
  }

  100% {
    transform: translate3d(
        calc(-34px + var(--hero-shift-x-mid, 0px)),
        calc(28px + var(--hero-shift-y-strong, 0px)),
        0
      )
      rotate(calc(var(--hero-ribbon-rotate, 0deg) - 6deg)) scale(1.12);
    opacity: 0.86;
  }
}

@keyframes waveDrift {
  0% {
    transform: translate3d(var(--hero-shift-x-soft, 0px), var(--hero-shift-y-soft, 0px), 0) scale(1);
    opacity: 0.22;
  }

  100% {
    transform: translate3d(
        calc(10px + var(--hero-shift-x-soft, 0px)),
        calc(-24px + var(--hero-shift-y-soft, 0px)),
        0
      )
      scale(1.06);
    opacity: 0.64;
  }
}

@keyframes heroWaveShift {
  0% {
    transform: translate3d(var(--hero-shift-x-mid, 0px), var(--hero-shift-y-soft, 0px), 0) scale(1);
    opacity: 0.62;
  }

  100% {
    transform: translate3d(
        calc(48px + var(--hero-shift-x-mid, 0px)),
        calc(-30px + var(--hero-shift-y-soft, 0px)),
        0
      )
      scale(1.14);
    opacity: 0.94;
  }
}

@keyframes meshPulse {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.62;
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(100vw - 40px, 860px);
  }

  .metric-grid,
  .mini-grid,
  .company-grid,
  .step-grid,
  .partner-grid,
  .workflow-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .overview-card__grid {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row--reverse,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse .feature-copy,
  .feature-row--reverse .feature-art {
    order: initial;
  }

  .feature-art {
    justify-content: flex-start;
  }

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

@media (max-width: 860px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(245, 249, 253, 0.94);
    border: 1px solid rgba(91, 117, 160, 0.14);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(31, 49, 88, 0.12);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  body.is-menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    background: rgba(42, 110, 255, 0.08);
  }

  .page-hero__content {
    padding: 136px 0 92px;
  }

  .page-hero h1 {
    font-size: clamp(2.9rem, 6.4vw, 4.75rem);
    line-height: 1.14;
  }

  .section-heading h2 {
    font-size: clamp(2.1rem, 5vw, 3.25rem);
    line-height: 1.18;
  }

  .hero--home h1,
  .hero--agentic h1,
  .hero--scenarios h1,
  .hero--products h1,
  .hero--support h1,
  .hero--about h1 {
    max-width: 12ch;
  }

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

  .scene-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .scene-visual {
    margin: 8px auto 0;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .nav-shell {
    padding: 14px 0 12px;
  }

  .brand__image {
    width: 126px;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .page-hero__lead {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .section-heading h2 {
    font-size: clamp(1.86rem, 7vw, 2.5rem);
    line-height: 1.2;
  }

  .mini-card h3,
  .company-card h3 {
    font-size: 1.22rem;
    line-height: 1.4;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .metric-grid,
  .mini-grid,
  .company-grid,
  .step-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .overview-card {
    padding: 28px 22px 24px;
  }

  .overview-card h3 {
    font-size: 1.5rem;
  }

  .overview-card__lead {
    font-size: 0.96rem;
  }

  .feature-list {
    gap: 42px;
  }

  .feature-copy h3 {
    font-size: 1.58rem;
  }

  .feature-bullets li {
    gap: 14px;
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .feature-bullets li::before {
    width: 12px;
    height: 12px;
  }

  .feature-bullets li::after {
    left: 3px;
  }

  .signal-graphic {
    width: min(100%, 320px);
  }

  .workflow-fit-grid {
    grid-template-columns: 1fr;
  }

  .workflow-fit-card {
    padding: 22px;
  }

  .tab-switch {
    width: 100%;
    justify-content: center;
  }

  .tab-button {
    flex: 1 1 0;
    min-width: 0;
  }

  .scene-card {
    padding: 22px;
  }

  .scene-card__title {
    font-size: 1.36rem;
  }

  .scene-list li {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .scene-visual {
    width: 156px;
    height: 156px;
  }

  .cta-panel {
    padding: 24px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 28px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
