:root {
  --palette-grey-900: #2f3034;
  --palette-grey-800: #45474d;
  --palette-grey-50: #e6eaf0;
  --palette-grey-0: #ffffff;
  --palette-grey-1000: #212226;
  --palette-grey-20: #eff2f7;
  --palette-grey-1200: #121317;
  --palette-grey-1100: #18191d;
  --palette-grey-10: #f8f9fc;
  --palette-grey-100: #e1e6ec;
  --palette-grey-400: #b7bfd9;
  --palette-blue-600: #3279f9;
  --agentvn-teal: #33c6b7;
  --agentvn-coral: #f06f83;
  --agentvn-lavender: #8c8df0;
  --glass-1-surface: rgba(255, 255, 255, 0.58);
  --glass-2-surface: rgba(255, 255, 255, 0.72);
  --glass-3-surface: rgba(255, 255, 255, 0.84);
  --glass-refraction-top: rgba(255, 255, 255, 0.86);
  --glass-blur-md: 16px;
  --glass-blur-lg: 24px;
  --shadow-glass-sm: 0 10px 30px rgba(18, 19, 23, 0.08);
  --shadow-glass-md: 0 18px 54px rgba(18, 19, 23, 0.14);
  --theme-surface-surface: var(--palette-grey-0);
  --theme-surface-on-surface: var(--palette-grey-1200);
  --theme-surface-on-surface-variant: var(--palette-grey-800);
  --theme-surface-surface-container: var(--palette-grey-10);
  --theme-surface-surface-container-high: var(--palette-grey-20);
  --theme-outline-variant: rgba(33, 34, 38, 0.06);
  --theme-outline-outline-variant: rgba(33, 34, 38, 0.06);
  --theme-surface-overlay-low: rgba(255, 255, 255, 0.12);
  --grid-gutter: 64px;
  --grid-columns: 12;
  --page-margin: 72px;
  --shape-corner-sm: 8px;
  --shape-corner-md: 16px;
  --shape-corner-xl: 36px;
  --shape-corner-rounded: 9999px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 36px;
  --space-2xl: 48px;
  --space-3xl: 60px;
  --space-4xl: 80px;
  --space-5xl: 88px;
  --space-6xl: 120px;
  --space-7xl: 180px;
  --nav-height: 52px;
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-out-back: cubic-bezier(0.34, 1.85, 0.64, 1);
  --motion-spring: cubic-bezier(0.18, 0.95, 0.2, 1);
  --motion-scan: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
  font-family:
    "Segoe UI",
    "Microsoft YaHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--theme-surface-surface);
  text-size-adjust: none;
}

html {
  overflow-x: clip;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--theme-surface-surface);
  color: var(--theme-surface-on-surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::selection {
  background: rgba(50, 121, 249, 0.18);
}

body.splash-active {
  overflow: hidden;
}

body.splash-active > :not(.rose-splash):not(.skip-link) {
  filter: blur(18px);
  transform: scale(1.012);
  transition:
    filter 1.55s var(--motion-scan),
    transform 1.55s var(--motion-scan);
}

body.splash-revealing > :not(.rose-splash):not(.skip-link) {
  filter: blur(0);
  transform: scale(1);
}

.rose-splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(248, 249, 252, 0.46);
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.35s var(--motion-scan);
}

.rose-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.22) 36%, transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04));
}

.rose-splash-loader {
  position: relative;
  z-index: 1;
  width: min(48vmin, 390px);
  aspect-ratio: 1;
  color: var(--theme-surface-on-surface);
  opacity: 0.96;
  filter:
    drop-shadow(0 28px 70px rgba(50, 121, 249, 0.14))
    drop-shadow(0 16px 42px rgba(51, 198, 183, 0.14));
  transform: scale(1);
  transition:
    opacity 0.72s var(--motion-scan),
    transform 0.72s var(--motion-scan);
}

body.splash-rose-exiting .rose-splash-loader {
  opacity: 0;
  transform: scale(0.18);
}

body.splash-revealing .rose-splash {
  opacity: 0;
}

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

.motion-section {
  position: relative;
  isolation: isolate;
}

.motion-section > * {
  position: relative;
  z-index: 1;
}

.motion-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: translate3d(-18%, 0, 0);
  background:
    linear-gradient(105deg, transparent 0 42%, rgba(50, 121, 249, 0.055) 47%, rgba(51, 198, 183, 0.055) 52%, transparent 60%),
    linear-gradient(180deg, transparent, rgba(18, 19, 23, 0.025), transparent);
  pointer-events: none;
}

.motion-section.is-in-view::after {
  animation: section-evidence-scan 980ms var(--motion-scan) both;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--palette-blue-600);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1100;
  opacity: 0;
  transform: translateY(-150%);
  border-radius: var(--shape-corner-rounded);
  background: var(--theme-surface-on-surface);
  color: var(--theme-surface-surface);
  padding: 10px 14px;
  pointer-events: none;
  transition:
    opacity 160ms var(--ease-out-quart),
    transform 160ms var(--ease-out-quart);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.heading-3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  font-weight: 750;
  letter-spacing: 0;
}

.heading-4 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 42px);
  line-height: 1.04;
  font-weight: 750;
  letter-spacing: 0;
}

.body {
  margin: 0;
  color: var(--theme-surface-on-surface-variant);
  font-size: 17.5px;
  line-height: 1.45;
}

.small {
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 700;
}

.eyebrow,
.feature-kicker {
  margin: 0 0 var(--space-md);
  color: var(--palette-blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid-container {
  width: 100%;
  max-width: calc(1600px + var(--page-margin) * 2);
  margin: 0 auto;
  padding: 0 var(--page-margin);
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  align-items: center;
}

.grid-col {
  min-width: 0;
}

.col-xs-4,
.col-sm-8,
.col-md-12 {
  grid-column: 1 / -1;
}

.col-md-4 {
  grid-column: span 4;
}

.col-md-6 {
  grid-column: span 6;
}

.col-md-8 {
  grid-column: span 8;
}

.col-md-9 {
  grid-column: span 9;
}

.col-md-offset-2 {
  grid-column-start: 7;
}

.col-md-offset-8 {
  grid-column-start: 9;
}

.reverse .col-md-4 {
  grid-column: 9 / span 4;
}

.reverse .col-md-6 {
  grid-column: 1 / span 6;
  grid-row: 1;
}

.site-header {
  --dock-x: 50%;
  --dock-y: 50%;
  position: fixed;
  right: 0;
  left: 0;
  top: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 8px;
  width: min(620px, calc(100% - 32px));
  min-height: 54px;
  margin-inline: auto;
  padding: 6px 8px 6px 10px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-top-color: var(--glass-refraction-top);
  border-radius: var(--shape-corner-rounded);
  background:
    radial-gradient(circle at var(--dock-x) var(--dock-y), rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.34) 34%, transparent 66%),
    linear-gradient(154deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 252, 0.58));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    var(--shadow-glass-md);
  backdrop-filter: saturate(180%) blur(var(--glass-blur-lg));
  -webkit-backdrop-filter: saturate(180%) blur(var(--glass-blur-lg));
  transition:
    transform 0.38s var(--motion-spring),
    border-color 0.18s var(--ease-out-quart),
    box-shadow 0.18s var(--ease-out-quart),
    background 0.18s var(--ease-out-quart);
}

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

.site-header::before {
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 44%),
    radial-gradient(circle at 12% 12%, rgba(50, 121, 249, 0.14), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(51, 198, 183, 0.16), transparent 36%);
  opacity: 0.86;
}

.site-header::after {
  inset-inline: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.96), transparent);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at var(--dock-x) var(--dock-y), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.38) 32%, transparent 66%),
    linear-gradient(154deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 252, 0.72));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 22px 62px rgba(18, 19, 23, 0.16);
}

.brand-mark,
.site-nav,
.header-intro,
.header-github,
.header-cta {
  position: relative;
  z-index: 1;
}

.brand-mark {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  font-weight: 850;
}

.hero-logo {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--theme-surface-on-surface);
  color: var(--theme-surface-surface);
  font-weight: 850;
  line-height: 1;
}

.brand-logo-image {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(18, 19, 23, 0.08);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(18, 19, 23, 0.08);
}

.site-nav {
  --dock-pill-x: 0px;
  --dock-pill-w: 0px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-top-color: rgba(255, 255, 255, 0.82);
  border-radius: var(--shape-corner-rounded);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  backdrop-filter: saturate(160%) blur(var(--glass-blur-md));
  -webkit-backdrop-filter: saturate(160%) blur(var(--glass-blur-md));
}

.dock-active-pill {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  z-index: 0;
  width: var(--dock-pill-w);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-top-color: rgba(255, 255, 255, 0.94);
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(239, 246, 252, 0.38));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 10px 24px rgba(50, 121, 249, 0.12);
  transform: translate3d(var(--dock-pill-x), 0, 0);
  transition:
    transform 0.34s var(--ease-out-quart),
    width 0.34s var(--ease-out-quart);
  pointer-events: none;
}

.site-nav a,
.header-intro,
.header-github,
.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--shape-corner-rounded);
  transition:
    transform 0.18s var(--ease-out-quart),
    background 0.18s var(--ease-out-quart),
    border-color 0.18s var(--ease-out-quart),
    color 0.18s var(--ease-out-quart);
}

.site-nav a {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  color: var(--theme-surface-on-surface-variant);
  font-size: 14.5px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--theme-surface-on-surface);
}

.header-cta,
.button.primary {
  border: 1px solid var(--theme-surface-on-surface);
  background: var(--theme-surface-on-surface);
  color: var(--theme-surface-surface);
  font-weight: 800;
}

.header-intro {
  position: relative;
  gap: 7px;
  min-height: 40px;
  border: 1px solid var(--theme-surface-on-surface);
  padding: 0 16px;
  background: var(--theme-surface-on-surface);
  color: var(--theme-surface-surface);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 26px rgba(18, 19, 23, 0.16);
}

.header-intro > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 9px;
  line-height: 1;
  text-indent: 1px;
}

.header-intro:hover,
.header-intro:focus-visible {
  border-color: #000;
  background: #000;
  color: var(--theme-surface-surface);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 14px 32px rgba(18, 19, 23, 0.24);
}

.header-intro.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.header-github {
  width: 40px;
  min-height: 40px;
  border: 1px solid rgba(18, 19, 23, 0.12);
  background: rgba(255, 255, 255, 0.56);
  color: var(--theme-surface-on-surface);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 8px 20px rgba(18, 19, 23, 0.08);
}

.header-github svg {
  width: 19px;
  height: 19px;
}

.header-github:hover,
.header-github:focus-visible {
  border-color: var(--theme-surface-on-surface);
  background: var(--theme-surface-on-surface);
  color: var(--theme-surface-surface);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 19, 23, 0.2);
}

@keyframes intro-button-glint {
  0%,
  55% {
    left: -38%;
    opacity: 0;
  }

  68% {
    opacity: 1;
  }

  86%,
  100% {
    left: 118%;
    opacity: 0;
  }
}

.header-cta {
  position: relative;
  min-height: 40px;
  overflow: hidden;
  border-color: rgba(23, 105, 224, 0.9);
  padding: 0 16px;
  background: linear-gradient(135deg, #1769e0, #2352c8);
  color: #fff;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 10px 26px rgba(23, 105, 224, 0.32);
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -38%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: rotate(18deg);
  animation: intro-button-glint 3.8s ease-in-out infinite;
  pointer-events: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: #0d50bf;
  background: linear-gradient(135deg, #2379ef, #1748bd);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 14px 32px rgba(23, 105, 224, 0.42);
}

.button {
  border: 1px solid var(--theme-outline-variant);
  padding: 0 22px;
  font-weight: 800;
}

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

.button.is-pressed,
.header-cta.is-pressed,
.slider-control-button.is-pressed,
.case-video-close.is-pressed {
  transform: translate3d(0, 1px, 0) scale(0.98) !important;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--theme-surface-on-surface);
}

.button.primary-inverse {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.button.secondary-inverse {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.welcome-wrapper {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.welcome-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.welcome-wrapper::before {
  background:
    linear-gradient(90deg, rgba(18, 19, 23, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 19, 23, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 84%);
}

.main-particles-component-section,
.morphing-particles-component-section {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.main-particles-container {
  position: absolute;
  inset: 0;
}

.main-particles-container canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .main-particles-container canvas {
  opacity: 0.82;
  mix-blend-mode: screen;
}

.hero-rose-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-rose-path {
  stroke: currentColor;
  stroke-width: 4.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.095;
}

.hero-rose-particle {
  fill: currentColor;
}

[data-particle-mode="reduced-motion"],
[data-particle-mode="fallback"] {
  background:
    radial-gradient(circle at 28% 34%, rgba(50, 121, 249, 0.16), transparent 28%),
    radial-gradient(circle at 68% 58%, rgba(51, 198, 183, 0.14), transparent 30%),
    radial-gradient(circle at 52% 24%, rgba(240, 111, 131, 0.12), transparent 24%);
}

.welcome-section {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1180px;
  padding: 148px var(--page-margin) var(--space-3xl);
  text-align: center;
}

.hero-showcase {
  position: absolute;
  inset: 8% 5% 7%;
  z-index: 0;
  overflow: hidden;
  border-radius: clamp(34px, 6vw, 84px);
  background: rgba(238, 242, 247, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.76) inset,
    0 40px 120px rgba(32, 48, 72, 0.08);
  pointer-events: none;
  mask-image: radial-gradient(ellipse 88% 82% at 50% 48%, #000 22%, rgba(0, 0, 0, 0.86) 54%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 50% 48%, #000 22%, rgba(0, 0, 0, 0.86) 54%, transparent 100%);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 34% 31% at 50% 50%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.6) 44%, transparent 80%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.48));
}

.hero-showcase-slide {
  position: absolute;
  inset: -3%;
  margin: 0;
  opacity: 0;
  filter: blur(2.6px) saturate(0.78) contrast(0.94) brightness(1.04);
  transform: scale(1.055);
  animation: hero-showcase-cycle 21s var(--ease-out-quart) infinite;
  will-change: opacity, transform;
}

.hero-showcase-slide:nth-child(1) {
  animation-delay: -1s;
}

.hero-showcase-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-showcase-slide:nth-child(3) {
  animation-delay: 13s;
}

.hero-showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
}

.hero-showcase-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes hero-showcase-cycle {
  0% {
    opacity: 0;
    transform: scale(1.055);
  }

  7%,
  29% {
    opacity: 1;
  }

  33%,
  100% {
    opacity: 0;
    transform: scale(1.005);
  }
}

.logo-container {
  display: inline-flex;
  align-items: center;
}

.hero-logo {
  width: 42px;
  height: 42px;
}

.hero-logo-text {
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.06;
  text-wrap: balance;
}

body.hero-copy-pending .welcome-section {
  visibility: hidden;
}

.header-container {
  margin: 38px var(--page-margin) 0;
  position: relative;
}

.landing-main-header {
  margin: 0;
  max-inline-size: 1100px;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.landing-main-header > .typed-line {
  display: block;
}

.landing-main-header .muted {
  color: var(--theme-surface-on-surface-variant);
  font-size: clamp(36px, 5.4vw, 62px);
  letter-spacing: -0.02em;
}

.typed-container {
  position: relative;
  display: inline-block;
  margin-inline: -0.08em;
  padding: 0.02em 0.08em 0.18em;
  border-radius: 0.28em;
  isolation: isolate;
}

.typed-content {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.typed-char {
  display: inline-block;
  opacity: 0;
}

.typed-mobile-break {
  display: none;
}

.typed-underline-runner {
  display: none;
}

.typed-underline-runner > span {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(50, 121, 249, 0),
      rgba(50, 121, 249, 0.46) 12%,
      var(--palette-blue-600) 27%,
      rgba(255, 255, 255, 0.98) 42%,
      var(--agentvn-teal) 55%,
      var(--agentvn-coral) 72%,
      rgba(50, 121, 249, 0.28) 86%,
      rgba(50, 121, 249, 0)
    );
  background-size: 260% 100%;
  box-shadow:
    0 0 20px rgba(50, 121, 249, 0.34),
    0 0 30px rgba(51, 198, 183, 0.18),
    0 12px 30px rgba(240, 111, 131, 0.14);
  overflow: hidden;
  animation: underline-flow-sweep 14s linear infinite;
}

.typed-underline-runner > span::before {
  content: "";
  position: absolute;
  inset: -0.42em -35%;
  background:
    linear-gradient(
      105deg,
      transparent 18%,
      rgba(255, 255, 255, 0) 34%,
      rgba(255, 255, 255, 0.98) 47%,
      rgba(255, 255, 255, 0.22) 58%,
      transparent 74%
    );
  mix-blend-mode: screen;
  transform: translateX(-65%);
  animation: underline-glint-pass 10s cubic-bezier(0.33, 0, 0.2, 1) infinite;
}

.typed-underline-runner::before,
.typed-underline-runner::after {
  content: none;
  border: 0;
}

.typed-underline-runner.is-visible {
  opacity: 1;
}

.typed-underline-runner.is-complete {
  pointer-events: none;
}

@keyframes underline-flow-sweep {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 260% 50%;
  }
}

@keyframes underline-glint-pass {
  0% {
    transform: translateX(-70%);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    transform: translateX(70%);
    opacity: 0;
  }
}

@keyframes media-scan-pass {
  0% {
    transform: translateX(-120%);
  }

  45%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes section-evidence-scan {
  0% {
    opacity: 0;
    transform: translate3d(-18%, 0, 0);
  }

  42% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(18%, 0, 0);
  }
}

.welcome-cta {
  display: flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.minimal-home {
  min-height: 100svh;
  overflow: hidden;
}

.minimal-home .welcome-wrapper,
.minimal-home .welcome-section {
  min-height: 100svh;
}

.minimal-footer {
  position: fixed;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 12;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.minimal-footer .icp-record {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(18, 19, 23, 0.55);
  font-size: 11px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
}

.minimal-footer .icp-record:hover {
  color: var(--theme-surface-on-surface);
}

.landing-video-section {
  --intrinsic-aspect-ratio: 16 / 9;
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  transform: scale(1);
}

.video-header {
  max-width: 760px;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.video-header h2 {
  margin-bottom: var(--space-md);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--shape-corner-xl);
  cursor: pointer;
  line-height: 0;
  isolation: isolate;
}

.video-wrapper::before,
.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: inherit;
  pointer-events: none;
}

.video-wrapper::before {
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 0 0 1px rgba(50, 121, 249, 0.08) inset,
    0 24px 74px rgba(18, 19, 23, 0.13);
}

.video-wrapper::after {
  opacity: 0;
  transform: translateX(-120%);
  background:
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.55) 47%, rgba(51, 198, 183, 0.18) 55%, transparent 72%);
  mix-blend-mode: screen;
  transition: opacity 220ms var(--ease-out-quart);
}

.video-wrapper.is-ready::after,
.video-wrapper:hover::after,
.video-wrapper:focus-within::after {
  opacity: 0.75;
  animation: media-scan-pass 12s var(--motion-scan) infinite;
}

.hero-video-wrapper {
  margin-inline: calc((var(--page-margin) - 6px) * -1);
}

.landing-video,
.feature-video,
.feature-media-item {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--shape-corner-xl);
  box-sizing: border-box;
  object-fit: cover;
  pointer-events: none;
}

.video-poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  pointer-events: none;
}

.video-wrapper[data-poster-fallback="persistent"] video {
  opacity: 0.01;
}

.video-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: var(--space-lg);
}

.video-brief-grid article,
.project-metrics article,
.project-story,
.evidence-timeline article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--theme-outline-variant);
  border-radius: var(--shape-corner-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    var(--theme-surface-surface-container);
  box-shadow: var(--shadow-glass-sm);
}

.kinetic-card {
  transform:
    perspective(1100px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translate3d(0, var(--lift, 0px), 0);
  transform-style: preserve-3d;
  transition:
    transform 260ms var(--motion-spring),
    border-color 220ms var(--ease-out-quart),
    box-shadow 220ms var(--ease-out-quart);
  will-change: transform;
}

.kinetic-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.58), transparent 18%),
    linear-gradient(110deg, transparent 20%, rgba(50, 121, 249, 0.1) 44%, rgba(51, 198, 183, 0.12) 52%, transparent 68%);
  pointer-events: none;
  transition: opacity 220ms var(--ease-out-quart);
}

.kinetic-card:hover,
.kinetic-card:focus-within {
  border-color: rgba(50, 121, 249, 0.22);
  box-shadow:
    var(--shadow-glass-sm),
    0 18px 50px rgba(50, 121, 249, 0.1);
}

.kinetic-card:hover::after,
.kinetic-card:focus-within::after,
.kinetic-card.is-pressed::after {
  opacity: 0.86;
}

.kinetic-card.is-pressed {
  transform:
    perspective(1100px)
    rotateX(calc(var(--tilt-y, 0deg) * 0.65))
    rotateY(calc(var(--tilt-x, 0deg) * 0.65))
    translate3d(0, 1px, 0)
    scale(0.995);
}

.video-brief-grid article {
  min-height: 132px;
  padding: var(--space-lg);
}

.video-brief-grid span,
.project-metrics span,
.evidence-timeline span {
  display: inline-flex;
  margin-bottom: var(--space-sm);
  color: var(--palette-blue-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-brief-grid strong {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 21px;
  line-height: 1.12;
}

.video-brief-grid p {
  margin: 0;
  color: var(--theme-surface-on-surface-variant);
  font-size: 15.5px;
  line-height: 1.42;
}

.feature-video {
  aspect-ratio: 16 / 9;
}

.custom-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--cursor-x, 0), var(--cursor-y, 0), 0) translate(-50%, -50%);
  transition: opacity 0.18s var(--ease-out-quart);
  will-change: transform, opacity;
}

.cursor-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg) var(--space-md) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top-color: var(--glass-refraction-top);
  border-radius: var(--shape-corner-rounded);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.95), transparent 40%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(247, 250, 252, 0.46));
  color: var(--theme-surface-on-surface);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 16px 42px rgba(18, 19, 23, 0.16);
  backdrop-filter: saturate(180%) blur(var(--glass-blur-lg));
  -webkit-backdrop-filter: saturate(180%) blur(var(--glass-blur-lg));
  white-space: nowrap;
  transform: scale(0.88);
  transition: transform 0.24s var(--ease-out-back);
}

.symbol,
.control-icon,
.cursor-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cursor-symbol::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.is-playing .cursor-symbol::before {
  width: 4px;
  height: 16px;
  border: 0;
  border-right: 4px solid currentColor;
  border-left: 4px solid currentColor;
}

.video-control-button {
  position: absolute;
  right: calc(var(--space-md) + 6px);
  bottom: calc(var(--space-md) + 6px);
  z-index: 10;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-top-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--shape-corner-rounded);
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.58), transparent 44%),
    rgba(18, 19, 23, 0.2);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 30px rgba(18, 19, 23, 0.18);
  backdrop-filter: saturate(160%) blur(var(--glass-blur-md));
  -webkit-backdrop-filter: saturate(160%) blur(var(--glass-blur-md));
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.2s ease;
  cursor: pointer;
}

.control-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.is-playing .control-icon::before {
  width: 4px;
  height: 18px;
  border: 0;
  border-right: 5px solid currentColor;
  border-left: 5px solid currentColor;
}

.video-control-button:hover,
.video-control-button:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.06);
}

@media (hover: hover) and (pointer: fine) {
  .video-wrapper.is-cursor-visible .custom-cursor,
  [data-slide-card].is-cursor-visible .custom-cursor {
    opacity: 1;
  }

  .video-wrapper.is-cursor-visible .cursor-content,
  [data-slide-card].is-cursor-visible .cursor-content {
    transform: scale(1);
  }
}

.agent-first-section {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding: var(--space-6xl) 0 var(--space-5xl);
}

.icon-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: var(--space-xl) 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
  will-change: transform;
}

.bouncer {
  position: relative;
  display: flex;
  width: 98px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-outline-variant);
  border-radius: 50%;
  background: rgba(183, 191, 217, 0.09);
  backface-visibility: hidden;
  color: var(--theme-surface-on-surface);
  font-family: "Segoe UI", monospace;
  font-size: 15px;
  font-weight: 780;
  will-change: transform;
}

.text-container {
  position: relative;
  z-index: 5;
  margin: var(--space-7xl) auto var(--space-xl);
}

.agent-first-text {
  position: relative;
  margin-block-end: var(--space-7xl);
  z-index: 1;
}

.project-depth-section {
  padding: var(--space-6xl) 0 var(--space-5xl);
  border-top: 1px solid var(--theme-outline-variant);
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: var(--space-5xl);
}

.project-metrics article {
  min-height: 230px;
  padding: var(--space-xl);
}

.project-metrics strong {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
}

.project-metrics p {
  margin: var(--space-md) 0 0;
  color: var(--theme-surface-on-surface-variant);
  font-size: 15.5px;
  line-height: 1.42;
}

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

.project-story {
  min-height: 420px;
  padding: var(--space-xl);
}

.project-story .heading-4 {
  margin-bottom: var(--space-lg);
  font-size: clamp(26px, 3vw, 36px);
}

.feature-explorer-section {
  padding: var(--space-6xl) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: var(--space-5xl);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5xl);
}

.feature-item .grid-row {
  min-height: 560px;
}

@media (min-width: 1025px) {
  .feature-item .grid-row {
    min-height: 680px;
  }

  .feature-item .col-md-4 {
    grid-column: 1 / span 3;
  }

  .feature-item .col-md-offset-2.col-md-6 {
    grid-column: 5 / span 8;
  }

  .feature-item .reverse .col-md-4 {
    grid-column: 10 / span 3;
  }

  .feature-item .reverse .col-md-offset-2.col-md-6 {
    grid-column: 1 / span 8;
    grid-row: 1;
  }
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-title {
  margin: 0;
}

.feature-description {
  color: var(--theme-surface-on-surface-variant);
  margin: 0;
}

.split-char {
  opacity: 0;
}

.feature-media {
  position: relative;
  width: 100%;
  min-height: clamp(460px, 40vw, 660px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: var(--shape-corner-xl);
  line-height: 0;
}

.feature-video-wrapper {
  width: 100%;
  min-height: clamp(460px, 40vw, 660px);
  aspect-ratio: 16 / 9;
}

.feature-media img,
.feature-video-wrapper .feature-video,
.feature-video-wrapper .video-poster-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  will-change: transform;
}

.landing-use-case-section {
  width: 100%;
  overflow-x: clip;
  border-top: 1px solid var(--theme-outline-variant);
  padding-block: 72px var(--space-6xl);
}

.evidence-section {
  padding: var(--space-6xl) 0;
  border-top: 1px solid var(--theme-outline-variant);
}

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

.evidence-timeline article {
  min-height: 300px;
  padding: var(--space-xl);
}

.evidence-timeline h3 {
  margin: 0 0 var(--space-md);
  font-size: 26px;
  line-height: 1.08;
}

.evidence-timeline p {
  margin: 0;
  color: var(--theme-surface-on-surface-variant);
  font-size: 16px;
  line-height: 1.46;
}

.landing-use-case-header {
  margin-bottom: var(--space-4xl);
}

.landing-use-case-header .grid-row {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: var(--space-3xl);
  align-items: end;
}

.landing-use-case-header .grid-col {
  grid-column: auto;
}

.landing-use-case-header .body {
  max-width: 520px;
  justify-self: end;
  text-wrap: pretty;
}

.use-case-header-main h2 span {
  display: block;
}

.use-case-header-main h2 span:nth-child(2) {
  color: var(--theme-surface-on-surface-variant);
}

.slider {
  position: relative;
  width: min(1180px, 100%);
}

.slider-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--shape-corner-xl);
}

.slider-track {
  display: flex;
  gap: var(--grid-gutter);
  will-change: transform;
}

.slide-image {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  border-radius: var(--shape-corner-xl);
  cursor: pointer;
}

.slide-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--shape-corner-xl);
  aspect-ratio: 16 / 10;
}

.slide-image .list-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.slide-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68));
}

.slide-title {
  position: absolute;
  left: var(--space-xl);
  right: calc(var(--space-xl) + 88px);
  bottom: var(--space-xl);
  z-index: 3;
  color: #fff;
  max-width: min(76%, 720px);
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.slide-play-button {
  right: var(--space-xl);
  bottom: var(--space-xl);
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), transparent 42%),
    rgba(255, 255, 255, 0.18);
}

.slide-play-button:hover,
.slide-play-button:focus-visible {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.94), transparent 42%),
    rgba(255, 255, 255, 0.28);
}

.case-video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: var(--space-xl);
  background: transparent;
}

.case-video-modal[hidden] {
  display: none;
}

.case-video-dialog {
  position: relative;
  width: min(1180px, calc(100vw - var(--page-margin) * 2));
  max-height: min(820px, calc(100svh - var(--space-xl) * 2));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-top-color: rgba(255, 255, 255, 0.92);
  border-radius: var(--shape-corner-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 253, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 30px 90px rgba(18, 19, 23, 0.22);
  backdrop-filter: saturate(170%) blur(var(--glass-blur-lg));
  -webkit-backdrop-filter: saturate(170%) blur(var(--glass-blur-lg));
}

.case-video-header {
  padding: var(--space-lg) calc(var(--space-xl) + 48px) var(--space-md) var(--space-xl);
}

.case-video-header .heading-4 {
  font-size: clamp(24px, 3vw, 36px);
}

.case-video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 19, 23, 0.08);
  border-radius: var(--shape-corner-rounded);
  background: rgba(255, 255, 255, 0.72);
  color: var(--theme-surface-on-surface);
  cursor: pointer;
}

.case-video-close span {
  font-size: 26px;
  line-height: 1;
}

.case-video-shell {
  position: relative;
  background: #111;
}

.case-video-player {
  display: block;
  width: 100%;
  max-height: min(640px, calc(100svh - 210px));
  aspect-ratio: 16 / 9;
  background: #111;
}

.case-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  min-width: 150px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-top-color: rgba(255, 255, 255, 0.88);
  border-radius: var(--shape-corner-rounded);
  background: rgba(255, 255, 255, 0.86);
  color: var(--theme-surface-on-surface);
  font: inherit;
  font-weight: 850;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 18px 46px rgba(18, 19, 23, 0.24);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.case-video-play[hidden] {
  display: none;
}

body.case-video-open {
  overflow: hidden;
}

.slider-copy-wrapper {
  position: relative;
  min-height: 120px;
  margin-top: var(--space-xl);
}

.slider-copy {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 620px;
  opacity: 0;
  transform: translateY(30px);
  color: var(--theme-surface-on-surface-variant);
}

.slider-copy strong {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--theme-surface-on-surface);
  font-size: 22px;
}

.slider-copy p {
  margin: 0;
}

.slider-copy.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-lg);
  padding: 4px;
  border-radius: 99em;
  background: var(--theme-surface-surface-container);
}

.slider-control-button {
  display: flex;
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 99em;
  background: transparent;
  color: var(--theme-surface-on-surface);
  cursor: pointer;
}

.slider-control-button:hover:not(:disabled) {
  background: #fff;
}

.try-solutions-section {
  position: relative;
  display: flex;
  overflow-x: clip;
  border-top: 1px solid var(--theme-outline-variant);
  padding-block: 55px;
}

.section-wrapper {
  display: flex;
}

.solution-section {
  position: relative;
  display: flex;
  width: 50%;
  min-height: 620px;
  flex-basis: 50%;
  align-items: center;
  justify-content: center;
}

.try-solution-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.try-solutions-content {
  position: relative;
  z-index: 5;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 250px var(--page-margin);
  text-align: center;
}

.try-solution-label {
  margin-block-end: var(--space-md);
  padding: 4px 8px;
  border: 1px solid var(--theme-outline-variant);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.try-solutions-content .subhead {
  margin: 0 0 var(--space-xl);
  color: var(--theme-surface-on-surface-variant);
}

.download-section-container {
  display: flex;
  justify-content: center;
}

.download-section {
  position: relative;
  width: 100%;
  padding-block: 328px;
}

.download-section.kinetic-card {
  transform: none !important;
}

.download-section.kinetic-card::after {
  content: none !important;
  display: none !important;
}

.download-section-backdrop {
  position: absolute;
  inset: 0 calc((var(--page-margin) - 6px) * -1);
  z-index: 0;
  overflow: hidden;
  border-radius: var(--shape-corner-xl);
  background: var(--theme-surface-on-surface);
}

.download-section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.download-section-content .header {
  max-width: 640px;
  color: var(--theme-surface-surface);
}

.download-section-cta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  align-items: center;
  margin: var(--space-xl) 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  padding: 26px var(--page-margin);
  border-top: 1px solid var(--theme-outline-variant);
  color: var(--theme-surface-on-surface-variant);
  font-size: 14px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-right {
  flex-shrink: 0;
}

.icp-record {
  color: var(--theme-surface-on-surface-variant);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.icp-record:hover {
  color: var(--theme-surface-on-surface);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.reveal-in {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 1024px) {
  :root {
    --grid-columns: 8;
    --grid-gutter: 40px;
    --page-margin: 40px;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto auto;
  }

  .grid-row,
  .reverse {
    display: block;
  }

  .feature-item .grid-row {
    min-height: auto;
  }

  .feature-copy {
    margin-bottom: var(--space-xl);
    text-align: center;
  }

  .project-metrics,
  .project-story-grid,
  .evidence-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-wrapper {
    flex-direction: column;
  }

  .solution-section {
    width: 100%;
    min-height: 480px;
    flex-basis: 100%;
  }

  .try-solutions-content {
    padding: var(--space-5xl) var(--page-margin);
  }

  .download-section {
    margin: var(--page-margin) 0;
    padding-block: 180px;
  }
}

@media (max-width: 767px) {
  :root {
    --grid-columns: 4;
    --grid-gutter: 16px;
    --page-margin: 16px;
    --shape-corner-xl: 24px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 52px;
    gap: 8px;
    padding: 5px 6px 5px 8px;
  }

  .brand-logo-image {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-intro {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .header-github {
    width: 38px;
    min-height: 38px;
  }

  .header-github svg {
    width: 18px;
    height: 18px;
  }

  .welcome-section {
    min-height: 92svh;
    padding: 126px 18px 70px;
  }

  .header-container {
    margin: 28px 0 0;
  }

  .hero-logo-text {
    font-size: clamp(30px, 8.2vw, 32px);
    line-height: 1.08;
  }

  .hero-logo-text .typed-container {
    width: min(100%, 340px);
  }

  .hero-logo-text .typed-content {
    white-space: nowrap;
  }

  .hero-logo-text .typed-mobile-break {
    display: block;
  }

  .minimal-footer {
    bottom: max(8px, env(safe-area-inset-bottom));
  }

  .hero-showcase {
    inset: 10% -15% 8%;
    border-radius: 42px;
    mask-image: radial-gradient(ellipse 88% 76% at 50% 48%, #000 16%, rgba(0, 0, 0, 0.78) 52%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 88% 76% at 50% 48%, #000 16%, rgba(0, 0, 0, 0.78) 52%, transparent 100%);
  }

  .hero-showcase::before {
    background:
      radial-gradient(ellipse 52% 27% at 50% 50%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65) 46%, transparent 82%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.5));
  }

  .hero-showcase-slide {
    filter: blur(3px) saturate(0.72) contrast(0.92) brightness(1.06);
  }

  .hero-showcase-slide img {
    opacity: 0.42;
  }

  .landing-main-header {
    font-size: clamp(38px, 11vw, 44px);
    line-height: 1.04;
  }

  .landing-main-header .muted {
    margin-top: 6px;
    font-size: clamp(30px, 8.6vw, 34px);
    line-height: 1.08;
  }

  .welcome-cta,
  .download-section-cta {
    width: 100%;
    flex-direction: column;
    max-width: 320px;
    gap: 14px;
    margin-inline: auto;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
  }

  .hero-video-wrapper {
    margin-inline: 0;
  }

  .landing-video-section {
    padding: 0 0 var(--space-4xl);
  }

  .main-particles-container canvas {
    opacity: 1;
    filter: saturate(1.55) contrast(1.18) brightness(1.04);
  }

  .custom-cursor {
    display: none !important;
  }

  .video-control-button {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .video-brief-grid,
  .project-metrics,
  .project-story-grid,
  .evidence-timeline {
    grid-template-columns: 1fr;
  }

  .video-brief-grid article,
  .project-metrics article,
  .project-story,
  .evidence-timeline article {
    min-height: auto;
  }

  .agent-first-section {
    padding: 40px 0 var(--space-4xl);
  }

  .icon-list {
    gap: 6px;
    justify-content: flex-start;
  }

  .bouncer {
    width: 70px;
    font-size: 12px;
  }

  .text-container {
    margin: var(--space-5xl) auto var(--space-xl);
  }

  .agent-first-text {
    text-align: center;
    margin-block-end: var(--space-5xl);
  }

  .feature-explorer-section {
    padding: var(--space-5xl) 0;
  }

  .project-depth-section,
  .evidence-section {
    padding: var(--space-5xl) 0;
  }

  .feature-list {
    gap: var(--space-4xl);
  }

  .feature-media,
  .feature-video-wrapper {
    min-height: min(64vw, 420px);
  }

  .slider-track {
    gap: var(--space-md);
  }

  .slide-title {
    left: var(--space-lg);
    right: calc(var(--space-lg) + 72px);
    bottom: var(--space-lg);
    max-width: calc(100% - 112px);
  }

  .slide-play-button {
    right: var(--space-lg);
    bottom: var(--space-lg);
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .case-video-modal {
    padding: 14px;
  }

  .case-video-dialog {
    width: calc(100vw - 28px);
    max-height: calc(100svh - 28px);
  }

  .case-video-header {
    padding: 18px 64px 14px 18px;
  }

  .case-video-player {
    max-height: calc(100svh - 150px);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding: 24px var(--page-margin);
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-section .button {
    min-height: 52px;
  }

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

@media (max-width: 380px) {
  .site-header {
    gap: 5px;
  }

  .site-header .brand-text {
    display: none;
  }

  .header-intro,
  .header-cta {
    padding-inline: 9px;
    font-size: 11.5px;
  }
}

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

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

  .custom-cursor {
    display: none !important;
  }

  .reveal-in,
  .typed-char,
  .split-char {
    opacity: 1 !important;
    transform: none !important;
  }

  .typed-underline-runner {
    animation: none !important;
  }

  body.splash-active > :not(.rose-splash):not(.skip-link) {
    filter: none;
    transform: none;
  }

  .rose-splash {
    display: none;
  }

  .motion-section::after,
  .video-wrapper::after,
  .kinetic-card::after {
    display: none !important;
  }

  .kinetic-card {
    transform: none !important;
  }

  .hero-showcase-slide {
    display: none;
  }

  .hero-showcase-slide:first-child {
    display: block;
    opacity: 1;
    transform: none;
  }
}
/* Original motion and layout styles restored from the live release. */
