:root {
  --bg: #050608;
  --bg-soft: #0b0e12;
  --bg-elevated: rgba(15, 18, 24, 0.86);
  --panel: rgba(18, 22, 29, 0.9);
  --panel-strong: #10141b;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f3f5f7;
  --text-dim: #98a0ab;
  --text-soft: #c8ced6;
  --accent: #8aa9ff;
  --accent-2: #9d8cff;
  --accent-3: #67d2ff;
  --header-blue-top: rgba(46, 80, 146, 0.92);
  --header-blue-haze: rgba(75, 98, 139, 0.82);
  --chrome-top: rgba(110, 116, 126, 0.9);
  --chrome-mid: rgba(87, 93, 102, 0.92);
  --chrome-bottom: rgba(63, 68, 76, 0.95);
  --chrome-border: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 20px 56px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1320px, calc(100vw - 48px));
  --header-height: 88px;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snappy: cubic-bezier(0.34, 1.56, 0.64, 1);
  --display-compact: clamp(1.9rem, 2.8vw, 2.45rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 18%, rgba(111, 122, 146, 0.18), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(95, 105, 140, 0.18), transparent 24%),
    radial-gradient(circle at 50% 72%, rgba(55, 61, 84, 0.18), transparent 28%),
    linear-gradient(180deg, #040507 0%, #07090d 28%, #050608 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.015) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 64px,
      rgba(255, 255, 255, 0.01) 64px,
      rgba(255, 255, 255, 0.01) 65px
    );
  opacity: 0.6;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 1) 28%);
}

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

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

::selection {
  background: rgba(138, 169, 255, 0.28);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid rgba(150, 179, 255, 0.8);
  outline-offset: 3px;
}

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

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

.site-header .shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    180deg,
    var(--header-blue-top) 0%,
    var(--header-blue-haze) 20%,
    var(--chrome-top) 52%,
    var(--chrome-mid) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: background 220ms var(--ease-standard), border-color 220ms var(--ease-standard), box-shadow 220ms var(--ease-standard);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: linear-gradient(
    180deg,
    rgba(52, 87, 156, 0.94) 0%,
    rgba(79, 102, 143, 0.84) 18%,
    rgba(106, 112, 121, 0.94) 52%,
    rgba(79, 85, 93, 0.96) 100%
  );
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
  transition: min-height 220ms var(--ease-standard), gap 220ms var(--ease-standard);
}

.site-header.is-scrolled .header-bar {
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  overflow: visible;
  line-height: 0;
  padding: 4px 0 8px;
}

.brand-logo,
.footer-brand-logo {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: visible;
  line-height: 0;
  padding-bottom: 8px;
}

.brand img {
  width: min(252px, 32vw);
  height: auto;
  max-height: 54px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.28));
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: width 220ms var(--ease-standard), filter 220ms var(--ease-standard);
}

.site-header.is-scrolled .brand img {
  width: min(232px, 29vw);
}

.nav-wrap {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 26px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-item {
  position: static;
}

@keyframes navSpectrumShift {
  0% {
    background-position: 0% 50%;
  }

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

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

@keyframes navGlowDrift {
  0% {
    opacity: 0.22;
    transform: translateX(-18%) scaleX(0.92);
  }

  50% {
    opacity: 0.44;
    transform: translateX(18%) scaleX(1.04);
  }

  100% {
    opacity: 0.22;
    transform: translateX(-18%) scaleX(0.92);
  }
}

.nav-trigger,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 246, 248, 0.86);
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
  overflow: hidden;
}

.nav-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  background-image: linear-gradient(120deg, #7fd0ff 0%, #8aa9ff 28%, #b49bff 54%, #f6fbff 76%, #83d8ff 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: navSpectrumShift 7.8s ease-in-out infinite;
  text-shadow: 0 0 18px rgba(146, 178, 255, 0.12);
  will-change: background-position;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(232, 240, 255, 0.88);
  border-bottom: 2px solid rgba(232, 240, 255, 0.88);
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.78;
  transition: transform 180ms var(--ease-standard), opacity 180ms ease, border-color 180ms ease;
}

.nav-trigger::before,
.nav-link::before {
  content: "";
  position: absolute;
  inset: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(115deg, rgba(102, 203, 255, 0.15), rgba(156, 139, 255, 0.18), rgba(247, 251, 255, 0.12), rgba(99, 193, 255, 0.14));
  background-size: 220% 220%;
  filter: blur(12px);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 180ms ease, transform 220ms var(--ease-standard);
  pointer-events: none;
}

.nav-trigger::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118, 214, 255, 0.08), rgba(138, 169, 255, 0.92), rgba(176, 156, 255, 0.92), rgba(246, 251, 255, 0.96), rgba(118, 214, 255, 0.08));
  background-size: 220% 100%;
  opacity: 0.7;
  transform: scaleX(0.78);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms var(--ease-standard), filter 180ms ease;
  animation: navSpectrumShift 7.8s ease-in-out infinite, navGlowDrift 5.6s ease-in-out infinite;
}

.nav-trigger:hover,
.nav-link:hover,
.nav-trigger[aria-expanded="true"],
.nav-item.is-current .nav-trigger,
.nav-link[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.nav-trigger:hover::before,
.nav-link:hover::before,
.nav-trigger[aria-expanded="true"]::before,
.nav-item.is-current .nav-trigger::before,
.nav-link[aria-current="page"]::before {
  opacity: 1;
  transform: scale(1);
}

.nav-trigger:hover::after,
.nav-link:hover::after,
.nav-trigger[aria-expanded="true"]::after,
.nav-item.is-current .nav-trigger::after,
.nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
  filter: drop-shadow(0 0 10px rgba(164, 181, 255, 0.3));
}

.nav-trigger[aria-expanded="true"] .nav-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-trigger:hover .nav-caret,
.nav-link:hover .nav-caret,
.nav-trigger[aria-expanded="true"] .nav-caret,
.nav-item.is-current .nav-trigger .nav-caret,
.nav-link[aria-current="page"] .nav-caret {
  border-color: rgba(246, 251, 255, 0.98);
}

.site-nav .nav-item:nth-child(2) .nav-label,
.site-nav .nav-item:nth-child(2) .nav-trigger::after {
  animation-delay: -1.3s;
}

.site-nav .nav-item:nth-child(3) .nav-label,
.site-nav .nav-item:nth-child(3) .nav-trigger::after {
  animation-delay: -2.6s;
}

.site-nav .nav-item:nth-child(4) .nav-label,
.site-nav .nav-item:nth-child(4) .nav-trigger::after {
  animation-delay: -3.9s;
}

.site-nav .nav-item:nth-child(5) .nav-label,
.site-nav .nav-item:nth-child(5) .nav-trigger::after {
  animation-delay: -5.2s;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .nav-label {
    color: rgba(244, 246, 248, 0.92);
    background-image: none;
    text-shadow: 0 0 14px rgba(146, 178, 255, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-label,
  .nav-trigger::after,
  .nav-link::after {
    animation: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(219, 224, 231, 0.98));
  color: #06070a;
  font-weight: 700;
  transition:
    transform 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard),
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 16%, rgba(255, 255, 255, 0.7) 48%, transparent 68%);
  transform: translateX(-140%);
  opacity: 0;
  transition: transform 460ms var(--ease-standard), opacity 180ms ease;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.12);
}

.button:hover::before {
  opacity: 0.18;
  transform: translateX(140%);
}

.button:active {
  transform: translateY(0);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.button--quiet {
  min-height: 42px;
  padding: 0 16px;
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button--quiet:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.mega-slot {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  padding-top: 14px;
  pointer-events: none;
}

.mega-slot.is-active,
.mega-slot.is-closing {
  pointer-events: auto;
}

.mega-menu-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.985);
  transform-origin: top center;
  transition: opacity 220ms var(--ease-standard), transform 220ms var(--ease-standard), visibility 220ms ease;
}

.mega-slot.is-active .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mega-slot.is-closing .mega-menu-panel {
  visibility: visible;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.82fr);
  gap: 20px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--chrome-border);
  background:
    radial-gradient(circle at 18% 18%, rgba(165, 176, 193, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(89, 95, 104, 0.98), rgba(60, 65, 73, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

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

.mega-col {
  padding: 8px 4px;
}

.mega-title {
  margin: 0 0 12px;
  color: rgba(248, 250, 252, 0.96);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mega-links {
  display: grid;
  gap: 8px;
}

.mega-links a {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(244, 246, 248, 0.88);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 220ms var(--ease-standard),
    transform 220ms var(--ease-standard),
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  transition-delay: var(--stagger-delay, 0ms);
}

.mega-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mega-slot.is-active .mega-links a,
.mega-slot.is-active .mega-feature {
  opacity: 1;
  transform: translateY(0);
}

.mega-links strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.mega-links span {
  color: rgba(230, 234, 240, 0.66);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mega-feature {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 22% 28%, rgba(184, 196, 214, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(57, 62, 69, 0.95), rgba(43, 47, 53, 0.98));
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 260ms var(--ease-standard),
    transform 260ms var(--ease-standard),
    border-color 180ms ease,
    box-shadow 220ms var(--ease-standard);
  transition-delay: var(--stagger-delay, 0ms);
}

.mega-feature h3 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.mega-feature p {
  margin: 0;
  color: rgba(232, 236, 241, 0.72);
  line-height: 1.7;
}

.mega-feature .eyebrow {
  color: rgba(242, 244, 247, 0.82);
}

.mobile-nav {
  display: none;
}

.mobile-group {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
}

.mobile-group summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group[open] summary {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-group-links {
  display: grid;
  gap: 8px;
  padding: 10px 6px 4px 6px;
}

.mobile-group-title {
  padding: 8px 8px 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-group-links a {
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.mobile-group-links a:hover,
.mobile-group-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

@keyframes ambientPulse {
  0% {
    opacity: 0.5;
    transform: scale(1) translate3d(0, 0, 0);
  }

  100% {
    opacity: 0.9;
    transform: scale(1.06) translate3d(0, -10px, 0);
  }
}

@keyframes floatWave {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(1.2deg);
  }
}

@keyframes badgeBreath {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  }

  50% {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
  }
}

@keyframes heroLiftIn {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFrameIn {
  0% {
    opacity: 0;
    filter: blur(12px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes storyCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes storyItemIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-main {
  position: relative;
}

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

.section--tight {
  padding: 64px 0;
}

.section--flush-top {
  padding-top: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-standard), border-color 180ms ease, background 180ms ease;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin-bottom: 40px;
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-size: var(--display-compact);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero {
  padding: 44px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.86fr);
  gap: 36px;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  padding: 42px 0 0;
}

.hero-copy h1 {
  margin: 12px 0 0;
  max-width: 620px;
  font-size: var(--display-compact);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--text-dim);
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

body:not(.is-ready) .hero-copy .section-tag,
body:not(.is-ready) .hero-copy h1,
body:not(.is-ready) .hero-copy p,
body:not(.is-ready) .hero-copy .hero-actions,
body:not(.is-ready) .hero-copy .hero-meta {
  opacity: 0;
  transform: translateY(18px);
}

body:not(.is-ready) .hero-visual,
body:not(.is-ready) .hero-support-shell,
body:not(.is-ready) .hero-badge,
body:not(.is-ready) .floating-grid,
body:not(.is-ready) .metric-grid {
  opacity: 0;
  filter: blur(12px);
}

body.is-ready .hero-copy .section-tag {
  animation: heroLiftIn 620ms var(--ease-standard) 60ms both;
}

body.is-ready .hero-copy h1 {
  animation: heroLiftIn 700ms var(--ease-standard) 140ms both;
}

body.is-ready .hero-copy p {
  animation: heroLiftIn 720ms var(--ease-standard) 220ms both;
}

body.is-ready .hero-copy .hero-actions {
  animation: heroLiftIn 720ms var(--ease-standard) 300ms both;
}

body.is-ready .hero-copy .hero-meta {
  animation: heroLiftIn 760ms var(--ease-standard) 380ms both;
}

body.is-ready .hero-visual {
  animation: heroFrameIn 880ms var(--ease-standard) 220ms both;
}

body.is-ready .hero-support-shell {
  animation: heroLiftIn 820ms var(--ease-standard) 360ms both;
}

body.is-ready .hero-badge {
  animation: heroLiftIn 720ms var(--ease-standard) 360ms both;
}

body.is-ready .floating-grid {
  animation: heroLiftIn 760ms var(--ease-standard) 430ms both;
}

body.is-ready .metric-grid {
  animation: heroLiftIn 780ms var(--ease-standard) 520ms both;
}

.hero-visual {
  position: relative;
  display: grid;
  align-content: start;
  overflow: visible;
  min-height: 680px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform 320ms var(--ease-standard), box-shadow 240ms var(--ease-standard);
  will-change: transform;
}

.hero-visual::after {
  display: none;
}

.visual-grid {
  display: none;
}

.hero-molecule {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.98;
}

.hero-molecule::before {
  content: "";
  position: absolute;
  inset: 12% 18% 10% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 149, 255, 0.18), transparent 64%);
  filter: blur(22px);
}

.hero-molecule::after {
  content: "";
  position: absolute;
  inset: 18% 24% 16% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 50%, rgba(103, 210, 255, 0.14), transparent 34%),
    radial-gradient(circle at 62% 42%, rgba(157, 140, 255, 0.12), transparent 26%);
  filter: blur(18px);
}

.hero-molecule-canvas {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-mask-image: radial-gradient(circle at 52% 48%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2) 84%);
  mask-image: radial-gradient(circle at 52% 48%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2) 84%);
}

.hero-support-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.hero-badge,
.floating-card,
.metric-card,
.logo-chip,
.journey-card,
.solution-card,
.case-card,
.insight-card,
.value-card,
.industry-card,
.service-card,
.timeline-card,
.contact-card,
.form-card,
.quote-card,
.detail-card {
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(18, 22, 29, 0.9), rgba(11, 14, 18, 0.94));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform 240ms var(--ease-standard),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 240ms var(--ease-standard);
  will-change: transform;
}

.floating-card:hover,
.metric-card:hover,
.journey-card:hover,
.solution-card:hover,
.case-card:hover,
.insight-card:hover,
.value-card:hover,
.industry-card:hover,
.service-card:hover,
.timeline-card:hover,
.contact-card:hover,
.form-card:hover,
.quote-card:hover,
.detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-grid;
  gap: 6px;
  max-width: 280px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(24, 28, 37, 0.95), rgba(12, 15, 20, 0.95));
}

.hero-support-lead {
  max-width: none;
  min-height: 100%;
  align-content: start;
  gap: 10px;
  padding: 24px 24px 26px;
}

.hero-support-lead strong {
  font-size: 1.16rem;
  line-height: 1.3;
}

.hero-badge strong {
  font-size: 1.1rem;
}

.hero-badge span {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

.visual-stack {
  position: relative;
  inset: auto;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  margin-top: 10px;
  z-index: 2;
}

.hero-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.floating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.floating-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% 25%;
  height: 180px;
  background: radial-gradient(circle, rgba(164, 174, 199, 0.18), transparent 70%);
  filter: blur(4px);
  animation: ambientPulse 12s ease-in-out infinite alternate;
}

.floating-card h3,
.metric-card h3,
.journey-card h3,
.solution-card h3,
.case-card h3,
.insight-card h3,
.value-card h3,
.industry-card h3,
.service-card h3,
.timeline-card h3,
.contact-card h3,
.form-card h3,
.quote-card h3,
.detail-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.floating-card p,
.metric-card p,
.journey-card p,
.solution-card p,
.case-card p,
.insight-card p,
.value-card p,
.industry-card p,
.service-card p,
.timeline-card p,
.contact-card p,
.form-card p,
.quote-card p,
.detail-card p {
  margin: 14px 0 0;
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 0.98rem;
}

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

.metric-card {
  min-width: 0;
  padding: 18px 16px;
}

.metric-card strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-visual .floating-card h3,
.hero-visual .metric-card strong {
  overflow-wrap: anywhere;
}

.hero-visual .floating-card h3 {
  font-size: 1.06rem;
  line-height: 1.22;
}

.hero-visual .floating-card p,
.hero-visual .metric-card span {
  overflow-wrap: anywhere;
}

.hero-visual .floating-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.hero-support-grid .floating-card,
.hero-support-grid .metric-card {
  min-height: 100%;
  padding: 22px;
}

.hero-support-grid .metric-card strong {
  font-size: 1.08rem;
}

.hero-support-grid .metric-card span {
  font-size: 0.88rem;
  line-height: 1.55;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.logo-chip {
  padding: 18px 24px;
  min-width: 160px;
  text-align: center;
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
  background: linear-gradient(180deg, rgba(13, 17, 22, 0.85), rgba(8, 10, 14, 0.95));
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.journey-grid,
.solutions-grid,
.case-grid,
.insights-grid,
.values-grid,
.industry-grid,
.service-grid,
.timeline-grid,
.detail-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

.journey-shell {
  display: grid;
  gap: 22px;
}

.journey-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.journey-tab {
  min-height: 78px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 22, 29, 0.66), rgba(12, 15, 20, 0.88));
  color: var(--text-soft);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms var(--ease-standard), border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.journey-tab span {
  display: block;
  margin-top: 6px;
  color: rgba(232, 236, 241, 0.56);
  font-size: 0.84rem;
  font-weight: 500;
}

.journey-tab:hover,
.journey-tab.is-active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(24, 28, 37, 0.94), rgba(13, 16, 21, 0.98));
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.journey-panels {
  position: relative;
}

.journey-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 18%, rgba(124, 134, 162, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(17, 21, 28, 0.96), rgba(8, 10, 14, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.journey-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.journey-panel-copy {
  min-width: 0;
}

.journey-panel-copy h3 {
  margin: 14px 0 0;
  max-width: 22ch;
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.journey-panel-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.8;
}

.journey-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.journey-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex: 0 0 10px;
}

.journey-stats {
  display: grid;
  gap: 14px;
}

.journey-stat {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(24, 28, 36, 0.9), rgba(11, 14, 18, 0.96));
}

.journey-stat strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.journey-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  line-height: 1.6;
}

.journey-card {
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% 18%;
  height: 120px;
  background: radial-gradient(circle, rgba(144, 152, 185, 0.16), transparent 72%);
}

.card-index {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

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

.solution-card,
.case-card,
.insight-card,
.value-card,
.industry-card,
.service-card,
.timeline-card,
.contact-card,
.form-card,
.quote-card,
.detail-card {
  padding: 28px;
}

.solution-card ul,
.industry-card ul,
.service-card ul,
.footer-links,
.footer-mini {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.solution-card li,
.industry-card li,
.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.solution-card li::before,
.industry-card li::before,
.service-card li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.story-carousel {
  display: grid;
  gap: 20px;
}

.story-carousel-frame,
.spotlight-shell,
.testimonial-carousel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 20%, rgba(120, 129, 164, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(18, 22, 29, 0.95), rgba(8, 10, 14, 0.98));
  box-shadow: var(--shadow);
}

.story-carousel-frame {
  padding: 30px;
  overflow: hidden;
}

.story-slide {
  display: none;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: 28px;
  align-items: stretch;
}

.story-slide.is-active {
  display: grid;
}

.story-slide.is-active .story-visual-inner,
.story-slide.is-active .story-screen,
.story-slide.is-active .story-phone,
.story-slide.is-active .story-badge,
.story-slide.is-active .story-stack,
.story-slide.is-active .story-gridlines,
.story-slide.is-active .story-tags,
.story-slide.is-active .story-copy h3,
.story-slide.is-active .story-copy p,
.story-slide.is-active .story-metrics,
.story-slide.is-active .story-copy .button,
.testimonial-slide.is-active blockquote,
.testimonial-slide.is-active cite {
  opacity: 0;
}

.story-slide.is-active .story-visual-inner {
  animation: storyCardIn 700ms var(--ease-standard) 60ms both;
}

.story-slide.is-active .story-screen {
  animation: storyCardIn 760ms var(--ease-standard) 120ms both;
}

.story-slide.is-active .story-phone {
  animation: storyCardIn 760ms var(--ease-standard) 220ms both, floatWave 10s ease-in-out 1s infinite;
}

.story-slide.is-active .story-badge {
  animation: storyCardIn 760ms var(--ease-standard) 280ms both, badgeBreath 8s ease-in-out 1.1s infinite;
}

.story-slide.is-active .story-stack {
  animation: storyCardIn 760ms var(--ease-standard) 180ms both, floatWave 12s ease-in-out 1s infinite reverse;
}

.story-slide.is-active .story-gridlines {
  animation: storyCardIn 760ms var(--ease-standard) 320ms both;
}

.story-slide.is-active .story-tags {
  animation: storyItemIn 560ms var(--ease-standard) 120ms both;
}

.story-slide.is-active .story-copy h3 {
  animation: storyItemIn 620ms var(--ease-standard) 190ms both;
}

.story-slide.is-active .story-copy p {
  animation: storyItemIn 620ms var(--ease-standard) 260ms both;
}

.story-slide.is-active .story-metrics {
  animation: storyItemIn 620ms var(--ease-standard) 330ms both;
}

.story-slide.is-active .story-copy .button {
  animation: storyItemIn 620ms var(--ease-standard) 410ms both;
}

.story-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(26, 31, 41, 1), rgba(11, 14, 18, 1));
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform 320ms var(--ease-standard), box-shadow 240ms var(--ease-standard), border-color 180ms ease;
  will-change: transform;
}

.story-visual::before,
.story-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.story-visual::before {
  inset: 16% auto auto 10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(149, 163, 208, 0.42), transparent 70%);
  animation: ambientPulse 11s ease-in-out infinite alternate;
}

.story-visual::after {
  inset: auto 6% 10% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(118, 131, 188, 0.18), transparent 70%);
  animation: ambientPulse 16s ease-in-out infinite alternate-reverse;
}

.story-visual-inner {
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.story-visual--ai .story-visual-inner {
  background:
    radial-gradient(circle at 70% 24%, rgba(104, 121, 255, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.story-visual--mobile .story-visual-inner {
  background:
    radial-gradient(circle at 26% 30%, rgba(155, 170, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.story-visual--trust .story-visual-inner {
  background:
    radial-gradient(circle at 58% 24%, rgba(181, 193, 224, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.story-screen,
.story-phone,
.story-badge,
.story-stack,
.story-gridlines {
  position: absolute;
}

.story-screen {
  inset: 12% 10% auto 12%;
  height: 48%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(71, 85, 120, 0.28), rgba(19, 23, 32, 0.85));
}

.story-screen::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-phone {
  right: 10%;
  bottom: 12%;
  width: 180px;
  height: 240px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(89, 104, 142, 0.32), rgba(12, 15, 20, 0.94));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
  animation: floatWave 10s ease-in-out infinite;
}

.story-phone::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.story-badge {
  left: 10%;
  bottom: 12%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 19, 25, 0.88);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
  animation: badgeBreath 8s ease-in-out infinite;
}

.story-stack {
  inset: 20% 16% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(166, 179, 221, 0.32), rgba(56, 65, 88, 0.16));
  animation: floatWave 12s ease-in-out infinite reverse;
}

.story-gridlines {
  inset: auto 12% 16% 12%;
  height: 80px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
}

.story-copy h3 {
  margin: 0;
  font-size: var(--display-compact);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.story-copy p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 1.03rem;
}

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

.story-metric {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.story-slide.is-active .story-metric {
  opacity: 0;
  animation: storyItemIn 560ms var(--ease-standard) both;
}

.story-slide.is-active .story-metric:nth-child(1) {
  animation-delay: 380ms;
}

.story-slide.is-active .story-metric:nth-child(2) {
  animation-delay: 450ms;
}

.story-slide.is-active .story-metric:nth-child(3) {
  animation-delay: 520ms;
}

.story-metric strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.story-metric span {
  display: block;
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.5;
}

.carousel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.carousel-meta {
  display: grid;
  gap: 10px;
  min-width: 180px;
}

.carousel-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.carousel-progress {
  width: min(280px, 42vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.carousel-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 220ms ease;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 180ms var(--ease-standard), transform 180ms var(--ease-standard), background 180ms ease, opacity 180ms ease;
}

.carousel-dot.is-active {
  width: 32px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.carousel-dot:hover {
  transform: scale(1.14);
  opacity: 1;
}

.carousel-actions {
  display: flex;
  gap: 10px;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.testimonial-carousel {
  padding: 28px;
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-slide blockquote {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.testimonial-slide cite {
  display: block;
  margin-top: 22px;
  color: var(--text-dim);
  font-style: normal;
  line-height: 1.7;
}

.testimonial-slide.is-active blockquote {
  animation: storyItemIn 560ms var(--ease-standard) both;
}

.testimonial-slide.is-active cite {
  animation: storyItemIn 560ms var(--ease-standard) 90ms both;
}

.spotlight-shell {
  padding: 28px;
  display: grid;
  gap: 20px;
}

.spotlight-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.spotlight-tab {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
}

.spotlight-tab.is-active,
.spotlight-tab:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
}

.spotlight-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

.spotlight-panel {
  display: none;
}

.spotlight-panel.is-active {
  display: block;
}

.spotlight-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 20, 26, 0.94), rgba(8, 10, 14, 0.98));
}

.spotlight-art {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(24, 29, 38, 1), rgba(12, 14, 19, 1));
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform 320ms var(--ease-standard), box-shadow 240ms var(--ease-standard), border-color 180ms ease;
  will-change: transform;
}

.spotlight-art::before,
.spotlight-art::after {
  content: "";
  position: absolute;
  animation: ambientPulse 14s ease-in-out infinite alternate;
}

.spotlight-art::before {
  inset: 12% 12% auto 12%;
  height: 46%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(101, 115, 158, 0.22), rgba(19, 22, 28, 0.88));
}

.spotlight-art::after {
  right: 12%;
  bottom: 12%;
  width: 42%;
  height: 24%;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 50%, rgba(156, 171, 214, 0.44), transparent 55%);
}

.spotlight-art--ai-first::before {
  inset: 10% 11% auto 12%;
  height: 50%;
  background:
    linear-gradient(180deg, rgba(110, 124, 173, 0.26), rgba(18, 22, 29, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 36px 36px;
}

.spotlight-art--ai-first::after {
  right: 10%;
  bottom: 10%;
  width: 48%;
  height: 28%;
  background:
    radial-gradient(circle at 28% 50%, rgba(161, 174, 220, 0.48), transparent 52%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 30px 30px;
}

.spotlight-art--explore::before {
  inset: 14% auto 18% 10%;
  width: 58%;
  height: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 28%, rgba(135, 149, 191, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(39, 46, 60, 0.98), rgba(13, 17, 23, 0.98));
}

.spotlight-art--explore::after {
  right: 8%;
  bottom: 14%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 187, 217, 0.34), transparent 62%);
}

.spotlight-art--governance::before {
  inset: 12% 12% auto 12%;
  height: 44%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(88, 101, 136, 0.2), rgba(16, 20, 26, 0.88)),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 32px 32px;
}

.spotlight-art--governance::after {
  right: 12%;
  bottom: 12%;
  width: 44%;
  height: 26%;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(146, 160, 208, 0.28), rgba(56, 66, 88, 0.14)),
    radial-gradient(circle at 22% 50%, rgba(226, 231, 242, 0.32), transparent 44%);
}

.spotlight-art--masterclass::before {
  inset: 14% 14% auto 14%;
  height: 42%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(96, 110, 152, 0.18), rgba(15, 19, 25, 0.88)),
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.16), transparent 18%);
}

.spotlight-art--masterclass::after {
  right: 10%;
  bottom: 12%;
  width: 50%;
  height: 20%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(124, 138, 182, 0.44), rgba(40, 47, 61, 0.06)),
    radial-gradient(circle at 18% 50%, rgba(219, 223, 232, 0.28), transparent 28%);
}

.spotlight-content h3 {
  margin: 10px 0 0;
  font-size: var(--display-compact);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.spotlight-content p {
  margin: 16px 0 0;
  color: var(--text-dim);
  line-height: 1.8;
}

.resource-stack {
  display: grid;
  gap: 16px;
}

.resource-card {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.92), rgba(8, 10, 14, 0.98));
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease-standard), border-color 180ms ease, box-shadow 220ms var(--ease-standard);
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.32);
}

.resource-card h3 {
  margin: 10px 0 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.resource-card p {
  margin: 12px 0 0;
  color: var(--text-dim);
  line-height: 1.7;
}

.resource-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
}

.resource-card a::after {
  content: ">";
  color: var(--accent-3);
}

.case-card .meta,
.insight-card .meta,
.timeline-card .meta,
.detail-card .meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.case-card .result,
.insight-card .result {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
}

.case-card a,
.insight-card a,
.timeline-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--text);
  font-weight: 700;
}

.case-card a::after,
.insight-card a::after,
.timeline-card a::after {
  content: ">";
  color: var(--accent-3);
}

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

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

.value-card {
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 142, 170, 0.18), transparent 72%);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.quote-card cite {
  display: block;
  margin-top: 24px;
  color: var(--text-dim);
  font-style: normal;
  line-height: 1.7;
}

.page-hero {
  padding: 56px 0 42px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero-copy,
.page-hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 20, 27, 0.92), rgba(8, 11, 15, 0.96));
  box-shadow: var(--shadow);
}

.page-hero-copy {
  padding: 36px;
}

.page-hero-copy h1 {
  margin: 18px 0 0;
  font-size: var(--display-compact);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-hero-copy p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--text-dim);
  line-height: 1.85;
}

.page-hero-card {
  padding: 28px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.eyebrow {
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

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

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

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

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

.contact-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.contact-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.02rem;
}

.form-card form {
  position: relative;
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(138, 169, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(138, 169, 255, 0.12);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.field-note {
  margin: 2px 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-status {
  margin-bottom: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(138, 169, 255, 0.22);
  background: linear-gradient(180deg, rgba(61, 91, 153, 0.16), rgba(20, 25, 37, 0.72));
  color: rgba(238, 243, 255, 0.94);
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-status.is-error {
  border-color: rgba(255, 166, 120, 0.28);
  background: linear-gradient(180deg, rgba(121, 67, 46, 0.18), rgba(23, 16, 15, 0.74));
  color: rgba(255, 232, 224, 0.94);
}

.form-status.is-success {
  border-color: rgba(142, 194, 255, 0.22);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 30%, rgba(117, 128, 170, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(16, 20, 27, 0.94), rgba(7, 9, 13, 0.98));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  font-size: var(--display-compact);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.cta-band p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--text-dim);
  line-height: 1.8;
}

.cta-band .hero-actions {
  margin-top: 24px;
}

.site-footer {
  padding: 44px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(190, 198, 214, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(102, 108, 117, 0.88), rgba(70, 75, 83, 0.96));
}

.footer-shell {
  display: grid;
  gap: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.78fr));
  gap: 0;
  align-items: start;
}

.footer-brand {
  max-width: 440px;
  padding-right: 36px;
  overflow: visible;
}

.footer-brand img {
  width: 214px;
  height: auto;
  max-height: 54px;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.footer-brand-logo {
  padding-bottom: 12px;
}

.footer-column {
  min-width: 0;
  padding: 4px 0 4px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand p,
.footer-links a,
.footer-note,
.footer-inline a,
.footer-site-link {
  color: rgba(236, 239, 243, 0.72);
}

.footer-title {
  margin: 0 0 14px;
  color: rgba(252, 253, 255, 0.96);
  font-size: 1rem;
  font-weight: 800;
}

.footer-links li {
  padding: 8px 0;
}

.footer-links a,
.footer-inline a,
.footer-site-link {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-inline a:hover,
.footer-site-link:hover {
  color: rgba(252, 253, 255, 0.96);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto auto;
  gap: 24px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-note {
  margin: 0;
}

.footer-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
  white-space: nowrap;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.34);
}

.footer-site-link {
  justify-self: end;
  font-weight: 700;
  letter-spacing: 0.02em;
}

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 700ms var(--ease-standard),
    transform 700ms var(--ease-standard),
    filter 700ms var(--ease-standard);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.muted {
  color: var(--text-dim);
}

.small {
  font-size: 0.94rem;
}

@media (max-width: 1180px) {
  .hero-grid,
  .hero-support-shell,
  .page-hero-shell,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .case-grid,
  .service-grid,
  .industry-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .journey-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-panel-grid,
  .story-slide,
  .testimonial-shell,
  .spotlight-stage,
  .spotlight-main {
    grid-template-columns: 1fr;
  }

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

  .mega-menu-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    padding-right: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-column {
    padding: 0 0 0 22px;
  }
}

@media (max-width: 920px) {
  .site-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle,
  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav {
    padding-bottom: 18px;
  }

  .mobile-nav .mobile-panel {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(99, 105, 115, 0.96), rgba(72, 77, 86, 0.98));
    box-shadow: var(--shadow);
  }

  .journey-grid,
  .solutions-grid,
  .case-grid,
  .insights-grid,
  .values-grid,
  .service-grid,
  .industry-grid,
  .detail-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-grid,
  .hero-support-grid {
    grid-template-columns: 1fr;
  }

  .journey-nav,
  .story-metrics {
    grid-template-columns: 1fr;
  }

  .carousel-progress {
    width: 100%;
  }

  .visual-stack {
    margin-top: 14px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-bottom: 18px;
  }

  .footer-column {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-inline,
  .footer-site-link {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(1320px, calc(100vw - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 28px 0 56px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    line-height: 0.94;
  }

  .hero-visual {
    min-height: 540px;
    padding: 20px;
  }

  .hero-support-shell {
    margin-top: 18px;
  }

  .page-hero-copy,
  .page-hero-card,
  .solution-card,
  .case-card,
  .insight-card,
  .value-card,
  .industry-card,
  .service-card,
  .timeline-card,
  .contact-card,
  .form-card,
  .quote-card,
  .detail-card,
  .cta-band {
    padding: 22px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
