:root {
  --bg: #050608;
  --surface: #0a0b0f;
  --surface-2: #101218;
  --surface-3: #161923;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --dim: #646872;
  --accent: #8fb7ff;
  --accent-2: #8ee6d8;
  --violet: #8b6cff;
  --max: 1240px;
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34rem),
    radial-gradient(circle at 78% 6%, rgba(143, 183, 255, 0.095), transparent 30rem),
    radial-gradient(circle at 12% 26%, rgba(142, 230, 216, 0.055), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.ready .loader {
  opacity: 0;
  visibility: hidden;
}

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

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

button {
  color: inherit;
}

.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 18px;
  background: var(--bg);
  color: var(--dim);
  font-size: 12px;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.loader-line {
  width: 180px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.loader-line::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2));
  animation: loading 900ms ease-in-out infinite;
}

@keyframes loading {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(240%);
  }
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.primary-link {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  width: fit-content;
  font-size: 17px;
  font-weight: 680;
}

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.brand-logo {
  width: 32px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 0 12px rgba(142, 230, 216, 0.18));
}

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

.main-nav {
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-link {
  justify-self: end;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--text);
  color: #08090d;
  font-size: 13px;
  font-weight: 700;
}

.section-rail {
  position: fixed;
  z-index: 50;
  top: 35%;
  right: max(16px, calc((100vw - 1510px) / 2));
  display: grid;
  gap: 10px;
}

.rail-link {
  position: relative;
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.rail-link span {
  color: rgba(255, 255, 255, 0.46);
  font-variant-numeric: tabular-nums;
}

.rail-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 16px rgba(142, 230, 216, 0.42);
  opacity: 0;
  transform: translateY(-50%) scale(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.rail-link.active {
  color: var(--text);
  transform: translateX(-4px);
}

.rail-link.active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

main {
  overflow: hidden;
}

.section {
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100vw - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 96px 0;
  border-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.section:not(.hero-section):not(.contact-section) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section:not(.hero-section)::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 88px;
  left: 50%;
  width: min(820px, 72vw);
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(143, 183, 255, 0.08), transparent 68%),
    radial-gradient(ellipse at 70% 40%, rgba(142, 230, 216, 0.055), transparent 62%);
  opacity: 0;
  transform: translate(-50%, 18px) scale(0.96);
}

.section.section-visible:not(.hero-section)::after {
  animation: sectionAura 1200ms ease both;
}

@keyframes sectionAura {
  0% {
    opacity: 0;
    transform: translate(-50%, 28px) scale(0.92);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0.62;
    transform: translate(-50%, 0) scale(1);
  }
}

.hero-section {
  left: 50%;
  width: 100vw;
  min-height: 100vh;
  margin-left: -50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2)) 86px;
  border-top: 0;
  text-align: center;
  background: #030407;
}

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

.hero-section::before {
  opacity: 0.22;
  background:
    radial-gradient(circle at center, rgba(143, 183, 255, 0.42) 0 1px, transparent 1.6px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 120px 120px;
  mask-image: radial-gradient(ellipse at center, black 0%, rgba(0, 0, 0, 0.46) 38%, transparent 70%);
  animation: computeField 24s linear infinite;
}

.hero-section::after {
  opacity: 0.26;
  background:
    linear-gradient(116deg, transparent 18%, rgba(143, 183, 255, 0.14), rgba(142, 230, 216, 0.1), transparent 44%),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.1), transparent 32%);
  transform: translateX(-38%);
  animation: scanField 12s ease-in-out infinite;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.82;
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.02);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 33%, rgba(3, 4, 7, 0.18), rgba(3, 4, 7, 0.42) 42%, rgba(3, 4, 7, 0.78) 76%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.28), rgba(3, 4, 7, 0.1) 38%, rgba(3, 4, 7, 0.76));
}

.hero-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-field span {
  position: absolute;
  left: 50%;
  bottom: 15%;
  width: min(840px, 72vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(142, 230, 216, 0.48), rgba(143, 183, 255, 0.4), transparent);
  opacity: 0.42;
  transform-origin: center;
  animation: dataSweep 7s ease-in-out infinite;
}

.hero-field span:nth-child(1) {
  transform: translateX(-50%) rotate(0deg);
}

.hero-field span:nth-child(2) {
  bottom: 23%;
  width: min(620px, 60vw);
  animation-delay: -2.3s;
  transform: translateX(-50%) rotate(8deg);
}

.hero-field span:nth-child(3) {
  bottom: 10%;
  width: min(720px, 66vw);
  animation-delay: -4.6s;
  transform: translateX(-50%) rotate(-9deg);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow span {
  position: absolute;
  width: 44vw;
  height: 44vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.13;
  mix-blend-mode: screen;
  animation: glowPulse 9s ease-in-out infinite;
}

.hero-glow span:nth-child(1) {
  top: 12%;
  left: 9%;
  background: rgba(87, 130, 255, 0.28);
}

.hero-glow span:nth-child(2) {
  right: 8%;
  bottom: 18%;
  background: rgba(62, 214, 198, 0.24);
  animation-delay: -3s;
}

.hero-glow span:nth-child(3) {
  top: 24%;
  right: 26%;
  width: 30vw;
  height: 30vw;
  background: rgba(151, 103, 255, 0.16);
  animation-delay: -6s;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.12;
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  50% {
    opacity: 0.24;
    transform: translate3d(2%, -2%, 0) scale(1.08);
  }
}

@keyframes computeField {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 42px 42px, 96px 0, 0 96px;
  }
}

@keyframes scanField {
  0%,
  100% {
    opacity: 0.16;
    transform: translateX(-42%) translateY(2%);
  }
  50% {
    opacity: 0.38;
    transform: translateX(34%) translateY(-2%);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  display: grid;
  justify-items: center;
  margin-top: -10px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -80px -130px 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.07), transparent 42%),
    radial-gradient(circle at 50% 62%, rgba(142, 230, 216, 0.075), transparent 55%);
  filter: blur(12px);
}

.eyebrow,
.panel-kicker {
  display: block;
  margin: 0 0 18px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 1.04;
  font-weight: 740;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.1vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.9vw, 34px);
  line-height: 1.1;
  font-weight: 690;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 680;
}

h4 small {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
}

.hero-lede,
.section-lede,
.section-heading p,
.focus-panel p,
.outcome-card p,
.timeline-detail p,
.contact-copy p,
.team-panel p,
.solution-detail p {
  color: var(--muted);
  font-size: 16px;
}

.hero-lede {
  max-width: 780px;
  margin-bottom: 30px;
  color: #c4c8d3;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-showcase {
  position: relative;
  width: min(920px, 100%);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 9, 14, 0.7);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(91, 145, 255, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px);
  transform: perspective(1200px) rotateX(3deg);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(115deg, transparent 8%, rgba(143, 183, 255, 0.5), rgba(142, 230, 216, 0.42), transparent 62%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.65;
  pointer-events: none;
}

.showcase-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--dim);
  font-size: 12px;
}

.showcase-toolbar strong {
  color: #8ee6d8;
  font-size: 12px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 0.55fr 0.55fr;
  gap: 10px;
}

.showcase-command,
.showcase-metric,
.showcase-flow {
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 18%, rgba(143, 183, 255, 0.12), transparent 42%),
    rgba(5, 7, 12, 0.74);
}

.showcase-command {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  padding: 18px;
  text-align: left;
}

.command-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(142, 230, 216, 0.36);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(143, 183, 255, 0.08), transparent 58%),
    rgba(142, 230, 216, 0.04);
  box-shadow: 0 0 28px rgba(142, 230, 216, 0.16);
  display: grid;
  place-items: center;
  color: rgba(200, 232, 226, 0.9);
  transform: translateY(-2px);
}

.command-icon svg {
  width: 25px;
  height: 25px;
}

.command-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.showcase-command p,
.showcase-command strong {
  margin: 0;
}

.showcase-command p {
  color: var(--dim);
  font-size: 12px;
  transform: translateX(50px);
}

.showcase-command strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.12;
}

.showcase-metric {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  text-align: left;
}

.showcase-metric span {
  color: var(--dim);
  font-size: 12px;
}

.showcase-metric strong {
  color: var(--text);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.05;
}

.showcase-metric.highlight {
  border-color: rgba(142, 230, 216, 0.28);
  background:
    radial-gradient(circle at 50% 18%, rgba(142, 230, 216, 0.16), transparent 48%),
    rgba(5, 7, 12, 0.78);
}

.showcase-metric.highlight strong {
  color: #8ee6d8;
}

.showcase-flow {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px;
  overflow: hidden;
}

.showcase-flow span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), var(--accent), var(--accent-2));
  transform-origin: left;
  animation: flowPulse 3.8s ease-in-out infinite;
}

.showcase-flow span:nth-child(2) {
  animation-delay: -1.2s;
}

.showcase-flow span:nth-child(3) {
  animation-delay: -2.4s;
}

@keyframes dataSweep {
  0%,
  100% {
    opacity: 0.12;
    clip-path: inset(0 100% 0 0);
  }
  45%,
  56% {
    opacity: 0.42;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.42);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, 0.34), transparent 54%);
  transform: translateX(-140%);
  transition: transform 620ms ease;
}

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

.button:hover::after {
  transform: translateX(140%);
}

.button-primary {
  background: var(--text);
  color: #08090d;
  box-shadow: 0 0 28px rgba(143, 183, 255, 0.11);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.018);
}

.mini-grid span,
.more-faq span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.line-icon {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 90%, rgba(142, 230, 216, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.018);
  color: rgba(200, 212, 232, 0.9);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.line-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(143, 183, 255, 0.12);
  border-radius: 6px;
  transform: rotate(45deg) translateY(10px) scaleX(1.2);
}

.line-icon::after {
  content: "";
  position: absolute;
  inset: auto 10px 8px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(142, 230, 216, 0.16), transparent 68%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.line-icon svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  overflow: visible;
}

.line-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 96;
  stroke-dashoffset: 0;
  animation: iconTrace 5.5s ease-in-out infinite;
}

@keyframes iconTrace {
  0%,
  76%,
  100% {
    stroke-dashoffset: 0;
  }
  88% {
    stroke-dashoffset: 18;
  }
}

.mini-icon {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.65;
  transform: rotate(45deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.focus-panel,
.detail-drawer,
.data-panel,
.solution-detail,
.product-shell,
.team-panel,
.timeline-detail,
.modal-card,
.contact-form {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%),
    var(--surface);
}

.focus-panel::before,
.data-panel::before,
.solution-detail::before,
.product-shell::before,
.pricing-table-wrap::before,
.pricing-card::before,
.product-card::before,
.team-panel::before,
.timeline-detail::before,
.modal-card::before,
.contact-form::before,
.solution-card::before,
.timeline-step::before,
.moat-grid article::before,
.bar-visual::before,
.solution-detail-grid > div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(143, 183, 255, 0.16), rgba(142, 230, 216, 0.055) 26%, transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.focus-panel:hover::before,
.data-panel:hover::before,
.solution-detail:hover::before,
.product-shell:hover::before,
.pricing-table-wrap:hover::before,
.pricing-card:hover::before,
.product-card:hover::before,
.team-panel:hover::before,
.timeline-detail:hover::before,
.modal-card:hover::before,
.contact-form:hover::before,
.solution-card:hover::before,
.timeline-step:hover::before,
.moat-grid article:hover::before,
.bar-visual:hover::before,
.solution-detail-grid > div:hover::before {
  opacity: 1;
}

.focus-panel > *,
.data-panel > *,
.solution-detail > *,
.product-shell > *,
.pricing-table-wrap > *,
.pricing-card > *,
.product-card > *,
.team-panel > *,
.timeline-detail > *,
.modal-card > *,
.contact-form > *,
.solution-card > *,
.timeline-step > *,
.moat-grid article > *,
.bar-visual > *,
.solution-detail-grid > div > * {
  position: relative;
  z-index: 1;
}

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

.centered-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.centered-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.section-note {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-subhead {
  margin-top: 112px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.split-panel,
.faq-layout,
.partner-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
}

.vertical-tabs,
.faq-list,
.partner-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.switch,
.faq-item,
.partner-item {
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.switch:hover,
.switch.active,
.faq-item:hover,
.faq-item.active,
.partner-item:hover,
.partner-item.active {
  color: var(--text);
  border-top-color: rgba(143, 183, 255, 0.55);
  transform: translateX(4px);
}

.focus-panel {
  min-height: 360px;
  padding: 34px;
}

.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.outcome-grid,
.solution-grid,
.moat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.outcome-card,
.solution-card,
.moat-grid article {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  min-height: 250px;
  padding: 26px;
  text-align: left;
}

.solution-card {
  min-height: 188px;
  padding: 24px;
}

.solution-card::after,
.timeline-step::after,
.moat-grid article::after,
.solution-detail-grid > div::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 10%, rgba(143, 183, 255, 0.5), rgba(142, 230, 216, 0.38), transparent 58%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 220ms ease;
}

.solution-card:hover::after,
.solution-card.active::after,
.timeline-step:hover::after,
.moat-grid article:hover::after,
.solution-detail-grid > div:hover::after {
  opacity: 1;
}

.outcome-card span,
.solution-card span,
.moat-grid span,
.timeline-step span,
.contact-form span {
  display: block;
  color: var(--dim);
  font-size: 12px;
}

.solution-card .line-icon,
.timeline-step .line-icon {
  display: inline-grid;
  color: rgba(200, 212, 232, 0.9);
  font-size: inherit;
}

.outcome-card strong,
.solution-card strong,
.moat-grid strong,
.timeline-step strong {
  display: block;
  margin: 18px 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.solution-card strong {
  max-width: 92%;
}

.outcome-card p,
.moat-grid p {
  margin-bottom: 24px;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 700;
}

.detail-drawer {
  min-height: 190px;
  margin-top: 18px;
  padding: 26px;
  transition: opacity 240ms ease, transform 240ms ease;
}

.detail-drawer.active {
  border-color: rgba(143, 183, 255, 0.38);
}

.tabs,
.metric-switches {
  display: inline-flex;
  max-width: 100%;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  overflow-x: auto;
  scrollbar-width: none;
}

#outcomes .tabs {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.tabs::-webkit-scrollbar,
.metric-switches::-webkit-scrollbar {
  display: none;
}

.tab,
.chip {
  position: relative;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tab:hover,
.chip:hover {
  color: var(--text);
}

.tab.active,
.chip.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), 0 0 20px rgba(143, 183, 255, 0.08);
}

.data-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 40px;
  min-height: 460px;
  margin-top: 22px;
  padding: 34px;
}

.data-panel.is-switching .chart-copy,
.data-panel.is-switching .bar-visual {
  animation: panelSwap 260ms ease both;
}

@keyframes panelSwap {
  from {
    opacity: 0.72;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chart-copy {
  align-self: center;
}

.metric-switches {
  margin-top: 26px;
}

.bar-visual {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c0e13;
}

.bar-row {
  display: grid;
  grid-template-columns: 105px 1fr 70px;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.bar-row span em {
  display: block;
  margin-top: 5px;
  color: #7fb1ff;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bar-track i {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.36), var(--accent), var(--accent-2));
  transform-origin: left;
  transform: scaleX(0.08);
}

.section-visible .bar-track i,
.data-panel.is-switching .bar-track i {
  animation: barIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes barIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.data-panel.compare-mode {
  grid-template-columns: 1fr;
}

.data-panel.compare-mode .chart-copy {
  max-width: 760px;
}

.data-panel.compare-mode .bar-visual {
  min-height: 520px;
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #7fb1ff;
  font-size: 14px;
}

.compare-legend {
  display: inline-flex;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}

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

.compare-legend span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(169, 185, 206, 0.78);
}

.compare-legend span:nth-child(2)::before {
  background: #4d85df;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 390px;
  margin-top: 22px;
}

.compare-metric {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
  transition: opacity 200ms ease, transform 200ms ease;
}

.compare-metric:first-child {
  border-left: 0;
}

.compare-metric h4 {
  margin: 0;
  text-align: center;
  font-size: 18px;
}

.compare-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.compare-pair {
  display: grid;
  gap: 10px;
  align-self: end;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.compare-pair strong {
  color: #7fb1ff;
  font-size: 13px;
}

.compare-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  height: 245px;
  padding-top: 24px;
  border-bottom: 1px solid var(--line);
}

.compare-bar {
  position: relative;
  width: 44px;
  height: var(--h);
  min-height: 18px;
  border-radius: 6px 6px 3px 3px;
  transform-origin: bottom;
  transform: scaleY(0.16);
}

.section-visible .compare-bar,
.data-panel.is-switching .compare-bar {
  animation: compareGrow 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.compare-bar.before {
  background: linear-gradient(180deg, #c8d5e8, #8fa3bd);
}

.compare-bar.after {
  background: linear-gradient(180deg, #5795ee, #2265b8);
  box-shadow: 0 0 22px rgba(87, 149, 238, 0.18);
}

.compare-bar b {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  transform: translateX(-50%);
  color: #8fb7ff;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

@keyframes compareGrow {
  from {
    transform: scaleY(0.18);
  }
  to {
    transform: scaleY(1);
  }
}

.compare-grid:has(.compare-metric:hover) .compare-metric:not(:hover) {
  opacity: 0.42;
}

.compare-metric:hover {
  transform: translateY(-4px);
}

.compare-metric:hover .compare-bar.after {
  box-shadow: 0 0 30px rgba(87, 149, 238, 0.34), 0 0 12px rgba(142, 230, 216, 0.16);
}

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

.solution-card {
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.solution-card:hover,
.solution-card.active {
  transform: translateY(-5px);
  border-color: rgba(143, 183, 255, 0.42);
  background: rgba(143, 183, 255, 0.07);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32), 0 0 38px rgba(143, 183, 255, 0.08);
}

.solution-card.active {
  background:
    radial-gradient(circle at 84% 76%, rgba(142, 230, 216, 0.105), transparent 34%),
    rgba(143, 183, 255, 0.075);
  box-shadow:
    inset 0 0 0 1px rgba(143, 183, 255, 0.18),
    0 18px 60px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(143, 183, 255, 0.11);
}

.solution-card.active::before {
  opacity: 1;
}

.solution-card.active::marker {
  color: transparent;
}

.solution-card:focus-visible,
.tab:focus-visible,
.button:focus-visible,
.rail-link:focus-visible {
  outline: 2px solid rgba(142, 230, 216, 0.7);
  outline-offset: 4px;
}

.solution-card:hover .line-icon,
.solution-card.active .line-icon,
.timeline-step:hover .line-icon,
.timeline-step.active .line-icon {
  color: #8ee6d8;
  border-color: rgba(142, 230, 216, 0.32);
  transform: translateY(-2px);
}

.solution-card:hover .line-icon::after,
.solution-card.active .line-icon::after,
.timeline-step:hover .line-icon::after,
.timeline-step.active .line-icon::after,
.panel-icon:hover::after,
.contact-icon:hover::after {
  opacity: 1;
}

.solution-detail {
  margin-top: 18px;
  padding: 30px;
}

.solution-detail.is-switching .solution-detail-grid > div,
.solution-detail.is-switching .detail-bg-icon svg {
  animation: panelSwap 280ms ease both;
}

.solution-detail > .button {
  margin-top: 28px;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  margin-top: 26px;
}

.solution-detail-grid > div {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  min-height: 220px;
  padding: 24px min(190px, 34%) 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.solution-detail-grid > div > .detail-bg-icon {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 0;
  width: clamp(112px, 15vw, 178px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: rgba(142, 230, 216, 0.32);
  opacity: 0.82;
  filter: drop-shadow(0 0 28px rgba(142, 230, 216, 0.1));
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.solution-detail-grid > div > .detail-bg-icon::before,
.solution-detail-grid > div > .detail-bg-icon::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 30%;
  pointer-events: none;
}

.solution-detail-grid > div > .detail-bg-icon::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(142, 230, 216, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(143, 183, 255, 0.12), transparent 55%);
  filter: blur(2px);
  opacity: 0.7;
}

.solution-detail-grid > div > .detail-bg-icon::after {
  border: 1px solid rgba(143, 183, 255, 0.09);
  transform: rotate(45deg) scale(0.72);
}

.solution-detail-grid > div > .detail-bg-icon svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: iconFloat 6.8s ease-in-out infinite;
}

.solution-detail-grid > div > .detail-bg-icon path {
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.detail-bg-icon .icon-shell {
  stroke: currentColor;
  stroke-dasharray: 180;
  stroke-dashoffset: 0;
  animation: iconTraceSoft 7.2s ease-in-out infinite;
}

.detail-bg-icon .icon-grid {
  stroke: rgba(143, 183, 255, 0.2);
  stroke-dasharray: 3 7;
  animation: iconGridPulse 4.6s ease-in-out infinite;
}

.detail-bg-icon .icon-accent {
  stroke: #8ee6d8;
  stroke-width: 1.55;
  stroke-dasharray: 70 18;
  animation: iconAccentRun 5.6s linear infinite;
}

.solution-detail[data-solution-detail="enterprise"] .detail-bg-icon {
  color: rgba(143, 183, 255, 0.34);
  filter: drop-shadow(0 0 28px rgba(143, 183, 255, 0.1));
}

.solution-detail[data-solution-detail="enterprise"] .detail-bg-icon .icon-accent {
  stroke: #9d8cff;
}

.solution-detail[data-solution-detail="developer"] .detail-bg-icon {
  color: rgba(142, 230, 216, 0.3);
}

.solution-detail[data-solution-detail="developer"] .detail-bg-icon .icon-grid {
  stroke: rgba(142, 230, 216, 0.2);
}

.solution-detail-grid > div:hover .detail-bg-icon {
  opacity: 1;
  color: rgba(143, 183, 255, 0.34);
  transform: translateY(calc(-50% - 3px));
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
}

@keyframes iconTraceSoft {
  0%,
  72%,
  100% {
    stroke-dashoffset: 0;
  }
  86% {
    stroke-dashoffset: 18;
  }
}

@keyframes iconGridPulse {
  0%,
  100% {
    opacity: 0.46;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes iconAccentRun {
  to {
    stroke-dashoffset: -88;
  }
}

.product-shell {
  padding: 30px;
}

#products {
  padding-top: 60px;
}

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

.product-tabs {
  display: flex;
  width: fit-content;
  margin: 0 auto 28px;
}

.product-panel {
  display: none;
  animation: panelSwap 260ms ease both;
}

.product-panel.active {
  display: block;
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(143, 183, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 48%),
    rgba(255, 255, 255, 0.025);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(142, 230, 216, 0.38);
  background:
    linear-gradient(145deg, rgba(142, 230, 216, 0.1), transparent 42%),
    rgba(142, 230, 216, 0.04);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3), 0 0 34px rgba(142, 230, 216, 0.08);
}

.pricing-specs dt {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
}

.pricing-card-head h3 {
  margin: 0 0 10px;
  font-size: clamp(23px, 2vw, 30px);
}

.pricing-card-head p {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-specs {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 22px 0 18px;
}

.pricing-specs div {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.pricing-specs dd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.pricing-specs div:nth-last-child(-n + 2) dd {
  color: #9ff1e7;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 7px;
  border: 1px solid rgba(142, 230, 216, 0.36);
  border-radius: 999px;
  background: rgba(142, 230, 216, 0.08);
  color: #9ff1e7;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

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

.pricing-actions .button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.pricing-table-wrap {
  position: relative;
  overflow-x: auto;
  --mx: 50%;
  --my: 50%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%),
    #0c0e13;
}

.pricing-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table th {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-table td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:first-child,
.pricing-table td:last-child {
  color: var(--text);
  font-weight: 800;
}

.pricing-table td:last-child {
  color: #9ff1e7;
  white-space: nowrap;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  min-height: 206px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 48%),
    rgba(255, 255, 255, 0.025);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(142, 230, 216, 0.36);
  background: rgba(142, 230, 216, 0.045);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28), 0 0 34px rgba(142, 230, 216, 0.07);
}

.product-card span {
  display: block;
  margin-bottom: 16px;
  color: #7fb1ff;
  font-size: 12px;
  font-weight: 800;
}

.product-card p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.product-copy-panel {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  display: grid;
  gap: 0;
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(143, 183, 255, 0.11), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 50%),
    rgba(255, 255, 255, 0.025);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-copy-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 230, 216, 0.34);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), 0 0 34px rgba(142, 230, 216, 0.06);
}

.product-copy-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.product-copy-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-copy-row:last-child {
  padding-bottom: 0;
}

.product-copy-row span {
  color: #7fb1ff;
  font-size: 14px;
  font-weight: 800;
}

.product-copy-row p {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.68;
}

.product-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.faq-more {
  justify-self: start;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 700;
}

.more-faq {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.more-faq.open {
  display: flex;
}

.moat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.team-panel {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 34px;
  padding: 28px;
}

.compact {
  align-self: start;
}

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

.timeline-step {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  min-height: 220px;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.timeline-step:hover,
.timeline-step.active {
  transform: translateY(-5px);
  border-color: rgba(142, 230, 216, 0.42);
  background: rgba(142, 230, 216, 0.055);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32), 0 0 38px rgba(142, 230, 216, 0.07);
}

.timeline-step small {
  color: var(--muted);
  font-size: 13px;
}

.timeline-detail {
  margin-top: 18px;
  padding: 30px;
}

.partner-layout {
  grid-template-columns: 360px minmax(0, 1fr);
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-item:hover .mini-icon,
.partner-item.active .mini-icon {
  opacity: 1;
  transform: rotate(45deg) scale(1.12);
  box-shadow: 0 0 20px rgba(143, 183, 255, 0.18);
}

.panel-icon {
  margin-bottom: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.85fr);
  gap: 60px;
  align-items: start;
  padding-bottom: 110px;
}

.contact-icon {
  margin-bottom: 26px;
}

.contact-copy p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.9;
}

.contact-copy h2 {
  margin-bottom: 24px;
  line-height: 1.12;
}

.contact-copy .eyebrow {
  margin-bottom: 24px;
}

.contact-email {
  display: grid;
  gap: 8px;
  width: min(100%, 520px);
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-email span {
  color: #7fb1ff;
  font-size: 13px;
  font-weight: 800;
}

.contact-email a {
  width: fit-content;
  color: var(--text);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 760;
  letter-spacing: 0;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.contact-email a:hover {
  color: #9ff1e7;
  text-shadow: 0 0 18px rgba(142, 230, 216, 0.18);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 12px 13px;
}

.contact-form select option {
  background: #ffffff;
  color: #111827;
}

.contact-form textarea {
  resize: vertical;
}

.modal {
  width: min(560px, calc(100vw - 32px));
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  padding: 30px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
}

.site-footer {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) 0.6fr 0.7fr minmax(260px, 1fr);
  gap: 34px;
  padding: 42px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-brand p {
  max-width: 360px;
  margin: 14px 0 0;
}

.footer-links,
.footer-note {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-note {
  justify-items: end;
  text-align: right;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.ready) .reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(26px) scale(0.985);
}

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

.section-visible:not(.hero-section) > .reveal.visible {
  animation: sceneRise 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-visible:not(.hero-section) > .reveal.visible:nth-child(2) {
  animation-delay: 90ms;
}

.section-visible:not(.hero-section) > .reveal.visible:nth-child(3) {
  animation-delay: 170ms;
}

.section-visible:not(.hero-section) > .reveal.visible:nth-child(4) {
  animation-delay: 240ms;
}

.section-visible .solution-card,
.section-visible .pricing-card,
.section-visible .product-card,
.section-visible .product-copy-panel,
.section-visible .compare-metric,
.section-visible .bar-row,
.section-visible .solution-detail-grid > div,
.section-visible .contact-form label {
  animation: itemRise 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-visible .solution-card:nth-child(2),
.section-visible .pricing-card:nth-child(2),
.section-visible .product-card:nth-child(2),
.section-visible .product-copy-panel:nth-child(2),
.section-visible .compare-metric:nth-child(2),
.section-visible .bar-row:nth-child(2),
.section-visible .solution-detail-grid > div:nth-child(2),
.section-visible .contact-form label:nth-child(2) {
  animation-delay: 80ms;
}

.section-visible .solution-card:nth-child(3),
.section-visible .pricing-card:nth-child(3),
.section-visible .product-card:nth-child(3),
.section-visible .compare-metric:nth-child(3),
.section-visible .bar-row:nth-child(3),
.section-visible .contact-form label:nth-child(3) {
  animation-delay: 150ms;
}

.section-visible .pricing-card:nth-child(4),
.section-visible .compare-metric:nth-child(4) {
  animation-delay: 220ms;
}

@keyframes sceneRise {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes itemRise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .section-rail {
    display: none;
  }

  .split-heading,
  .split-panel,
  .faq-layout,
  .partner-layout,
  .data-panel,
  .solution-detail-grid,
  .pricing-card-grid,
  .product-card-grid,
  .team-panel,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-note {
    justify-items: start;
    text-align: left;
  }

  .hero-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1520px) {
  .section-rail {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    min-height: auto;
    padding: 100px 0;
    scroll-snap-align: none;
  }

  .hero-section {
    padding-top: 112px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 16px;
  }

  .centered-heading h2 {
    white-space: normal;
  }

  .hero-actions {
    margin-bottom: 28px;
  }

  .hero-showcase {
    padding: 8px;
    transform: none;
  }

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

  .showcase-command,
  .showcase-metric {
    min-height: 92px;
  }

  .showcase-command p {
    transform: none;
  }

  .showcase-flow {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 96px;
  }

  .hero-backdrop img {
    object-position: center bottom;
    opacity: 0.74;
  }

  .hero-section::before {
    opacity: 0.15;
  }

  .hero-section::after,
  .hero-field {
    opacity: 0.55;
  }

  .outcome-grid,
  .solution-grid,
  .moat-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 156px;
  }

  .data-panel,
  .focus-panel,
  .solution-detail,
  .product-shell,
  .team-panel,
  .contact-form {
    padding: 22px;
  }

  .product-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .product-tabs .tab {
    flex: 0 0 auto;
  }

  .pricing-card-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .solution-detail-grid > div {
    padding: 22px;
  }

  .solution-detail-grid > div > .detail-bg-icon {
    right: 10px;
    width: 108px;
    opacity: 0.28;
  }

  .product-card {
    min-height: 168px;
  }

  .product-card p {
    font-size: 16px;
  }

  .product-copy-panel {
    padding: 22px;
  }

  .product-copy-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .product-copy-row p {
    font-size: 16px;
    line-height: 1.68;
  }

  .product-copy-row span {
    font-size: 14px;
  }

  .bar-row {
    grid-template-columns: 78px 1fr 54px;
    gap: 10px;
  }

  .hero-glow span {
    filter: blur(52px);
    opacity: 0.14;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .compare-metric {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .compare-metric:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .compare-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .compare-bars {
    height: 220px;
  }

  .compare-bar {
    width: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }

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