:root {
  --text-primary: #12131a;
  --text-secondary: #52535f;
  --eyebrow: #6d6ea7;
  --button-bg: #11131a;
  --button-bg-hover: #1d2029;
  --surface: #ffffff;
  --dark-sections-gradient: linear-gradient(180deg, #04070f 0%, #0a1224 52%, #15274a 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--surface);
  color: var(--text-primary);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scrollbar-gutter: stable;
}

body.modal-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(18, 19, 26, 0.06);
}

.site-header__inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo {
  height: 34px;
  width: auto;
  display: block;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.site-header__link {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: #5f616d;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.96rem;
  line-height: 1;
  letter-spacing: 0;
  transition: color 150ms ease;
}

.site-header__link:hover {
  color: #171923;
}

.site-header__button {
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

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

.site-header__button--light {
  color: #171923;
  background: #f2f3f6;
}

.site-header__button--light:hover {
  background: #e8eaf0;
}

.site-header__button--dark {
  color: #ffffff;
  background: #12131a;
}

.site-header__button--dark:hover {
  background: #1c1f2a;
}

.hero {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 44%);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  margin: 0 0 16px;
  font-size: 0.83rem;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 500;
  letter-spacing: 0.19em;
  color: var(--eyebrow);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.1rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 12ch;
}

.hero__description {
  margin: 26px 0 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  line-height: 1.55;
  color: var(--text-secondary);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 16px 28px;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  background: var(--button-bg);
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 150ms ease, transform 150ms ease;
}

.hero__cta:hover {
  background: var(--button-bg-hover);
  transform: translateY(-1px);
}

.hero__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform 150ms ease;
}

.hero__cta-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__cta:hover .hero__cta-icon {
  transform: translateX(2px);
}

.hero__secondary-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: #4d5570;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 20px;
  transition: color 150ms ease;
}

.hero__secondary-cta:hover {
  color: #171b29;
}

.hero__visual {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 62vh, 700px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__figure {
  width: min(620px, 108%);
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, 0) 100%);
}

.agents-slider {
  width: min(1240px, calc(100% - 72px));
  margin: 10px auto 80px;
}

.agents-slider__header {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 20px 40px;
  align-items: start;
  margin-bottom: 40px;
}

.agents-slider__eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.17em;
  color: #8a8e9d;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.agents-slider__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.agents-slider__intro p {
  margin: 14px 0 0;
  color: #505363;
  line-height: 1.55;
  max-width: 38ch;
}

.agents-slider__controls {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.agents-slider__arrow {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #f2f4f8;
  color: #1a1d27;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, opacity 150ms ease;
}

.agents-slider__arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agents-slider__arrow:hover {
  transform: translateY(-1px);
  background: #e8ebf3;
}

.agents-slider__arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.agents-slider__viewport {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  touch-action: pan-y;
  cursor: grab;
}

.agents-slider__viewport.is-dragging {
  cursor: grabbing;
}

.agents-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 340ms cubic-bezier(0.2, 0.68, 0.2, 1);
  will-change: transform;
}

.agent-card {
  --agent-card-content-space: clamp(126px, 30%, 164px);
  position: relative;
  flex: 0 0 clamp(240px, 27vw, 320px);
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  padding: 18px;
  opacity: 0;
  transform: translateY(30px);
  cursor: pointer;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.68, 0.2, 1), filter 280ms ease;
  transition-delay: var(--card-reveal-delay, 0ms);
}

.agents-slider.is-revealed .agent-card {
  opacity: 1;
  transform: translateY(0);
}

.agent-card__label {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  min-height: 2.3em;
  max-width: 12ch;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.agent-card__description {
  margin: 10px 0 0;
  max-width: 24ch;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(17, 19, 26, 0.82);
  position: relative;
  z-index: 1;
}

.agent-card img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: calc(100% - var(--agent-card-content-space));
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to bottom, #000 38%, rgba(0, 0, 0, 0.88) 60%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.16) 92%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 38%, rgba(0, 0, 0, 0.88) 60%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.16) 92%, rgba(0, 0, 0, 0) 100%);
  transform-origin: center top;
  transition: transform 620ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.agent-card__action {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #11131a;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 280ms ease, background-color 280ms ease;
}

.agent-card:hover,
.agent-card:focus-within {
  transform: translateY(-6px);
  filter: saturate(1.04);
}

.agent-card:focus-visible {
  outline: 2px solid rgba(17, 19, 26, 0.42);
  outline-offset: 2px;
}

.agent-card:hover .agent-card__action,
.agent-card:focus-within .agent-card__action {
  transform: rotate(360deg);
  background: #000000;
}

.agent-card:hover img,
.agent-card:focus-within img {
  transform: scale(1.03);
}

.agent-card--procurement {
  background: linear-gradient(180deg, #fdeee7 0%, #fbe4d9 100%);
}

.agent-card--inventory {
  background: linear-gradient(180deg, #eaf5ff 0%, #ddedff 100%);
  margin-top: 44px;
}

.agent-card--planning {
  background: linear-gradient(180deg, #eafbe8 0%, #d8f5d6 100%);
}

.agent-card--finance {
  background: linear-gradient(180deg, #f0edff 0%, #e6e0ff 100%);
  margin-top: 54px;
}

.agent-card--rentals {
  background: linear-gradient(180deg, #fff4df 0%, #fde8c4 100%);
}

.agent-card--reports {
  background: linear-gradient(180deg, #e9f7f4 0%, #d8eee8 100%);
  margin-top: 44px;
}

.pain-points {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto 90px;
}

.pain-points__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.17em;
  color: #8a8e9d;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.pain-points__title {
  margin: 14px 0 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.pain-points__highlight {
  margin: 24px 0 0;
  padding: 16px 22px;
  border-radius: 16px;
  border: 1px solid #e5e8f1;
  background: #f8f9fc;
  font-size: clamp(1.05rem, 1.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 740px;
}

.pain-points__highlight strong {
  color: #6d6ea7;
}

.pain-points__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  background: #f8f9fc;
  border: 1px solid #e5e8f1;
  border-radius: 24px;
  padding: 22px;
}

.pain-points__column-label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #e16262;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.pain-points__column-label--success {
  color: #32557d;
}

.pain-points__list {
  display: grid;
  gap: 12px;
}

.pain-points__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border: 1px solid #e6e9f1;
  border-radius: 12px;
  background: transparent;
  color: #4b5161;
  padding: 15px 16px;
  font: inherit;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  transition: transform 150ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.pain-points__item:hover {
  transform: translateY(-1px);
  border-color: #d8deea;
}

.pain-points__item.is-active {
  background: #ffffff;
  color: #232634;
  border-color: #d3daea;
  box-shadow: 0 10px 22px rgba(17, 19, 26, 0.08);
}

.pain-points__item-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff4d5b;
}

.pain-points__item-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-points__panel {
  border-radius: 18px;
  border: 1px solid #dfe6f2;
  background: transparent;
  padding: 20px;
}

.pain-points__panel.is-revealing {
  animation: painPointPanelReveal 320ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.pain-points__panel-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.pain-points__panel-description {
  margin: 14px 0 0;
  color: #4f5669;
  line-height: 1.6;
}

.pain-points__panel-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.pain-points__panel-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
  color: #232634;
}

.pain-points__panel-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #32557d;
  font-weight: 700;
}

.diagnostic-spotlight {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto 100px;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: minmax(380px, 54%) 1fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
}

.diagnostic-spotlight__visual {
  border: 1px solid #e7ebf2;
  border-radius: 24px;
  background: #fcfdff;
  min-height: 620px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagnostic-spotlight__video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fcfdff;
}

.diagnostic-map {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1 / 1;
}

.diagnostic-map::before,
.diagnostic-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #dfe4ef;
  transform: translate(-50%, -50%);
}

.diagnostic-map::before {
  width: 78%;
  height: 1px;
}

.diagnostic-map::after {
  width: 1px;
  height: 78%;
}

.diagnostic-map__node {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 1px solid #dbe1ee;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2f3342;
  padding: 8px 12px;
  box-shadow: 0 8px 18px rgba(17, 19, 26, 0.06);
  white-space: nowrap;
  opacity: 0;
}

.diagnostic-map__node--center {
  left: 50%;
  top: 50%;
  background: #eef2ff;
  border-color: #cfd8ff;
  --node-delay: 0ms;
}

.diagnostic-map__node--one {
  left: 50%;
  top: 14%;
  --node-delay: 120ms;
}

.diagnostic-map__node--two {
  left: 14%;
  top: 50%;
  --node-delay: 220ms;
}

.diagnostic-map__node--three {
  left: 86%;
  top: 50%;
  --node-delay: 320ms;
}

.diagnostic-map__node--four {
  left: 50%;
  top: 86%;
  --node-delay: 420ms;
}

.diagnostic-spotlight.is-revealed .diagnostic-map__node {
  animation-name: diagnosticNodeReveal, diagnosticNodeGlow;
  animation-duration: 480ms, 2800ms;
  animation-timing-function: cubic-bezier(0.2, 0.68, 0.2, 1), ease-in-out;
  animation-fill-mode: forwards, both;
  animation-iteration-count: 1, infinite;
  animation-delay: var(--node-delay, 0ms), calc(var(--node-delay, 0ms) + 560ms);
}

.diagnostic-spotlight__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #8a8e9d;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.diagnostic-spotlight__title {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.diagnostic-spotlight__title span {
  color: #6d6ea7;
}

.diagnostic-spotlight__subtitle {
  margin: 14px 0 0;
  color: #5e6474;
  font-size: 1.08rem;
  line-height: 1.5;
}

.diagnostic-spotlight__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  text-decoration: none;
  background: #11131a;
  color: #ffffff;
  font-weight: 600;
  transition: transform 150ms ease, background-color 150ms ease;
}

.diagnostic-spotlight__cta:hover {
  background: #1c1f2a;
  transform: translateY(-1px);
}

.diagnostic-issues {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.diagnostic-issues__item {
  border: 1px solid #e3e8f2;
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
}

.diagnostic-issues__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff4d5b;
}

.diagnostic-issues__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diagnostic-issues__index {
  margin: 8px 0 0;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #d0d5e2;
}

.diagnostic-issues__item h3 {
  margin: 8px 0 0;
  font-size: 1.1rem;
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.diagnostic-issues__item p {
  margin: 8px 0 0;
  color: #5f6575;
  line-height: 1.45;
}

.super-professional {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: sticky;
  top: 74px;
  z-index: 1;
}

.super-professional-stack {
  position: relative;
  z-index: 1;
}

.super-professional__inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.super-professional__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #8a8e9d;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.super-professional__title {
  margin: 12px auto 0;
  max-width: 25ch;
  font-size: clamp(1.7rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.super-professional__subtitle {
  margin: 14px auto 0;
  max-width: 64ch;
  color: #606577;
  line-height: 1.6;
}

.super-professional__stage {
  margin-top: 0;
  margin-bottom: 50px;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 680px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdff 52%, #ffffff 100%);
}

.super-professional__marquee {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 28px 0;
}

.super-professional__row {
  overflow: hidden;
  margin-bottom: 5px;
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.super-professional__track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  padding-right: 22px;
  animation: superProfessionalMarquee 86s linear infinite;
}

.super-professional__track--slow {
  animation-duration: 102s;
}

.super-professional__track--fast {
  animation-duration: 72s;
}

.super-professional__track--reverse {
  animation-direction: reverse;
}

.super-professional__badge {
  flex: 0 0 auto;
  border: 1px solid #e8ecf4;
  border-radius: 999px;
  background: #ffffff;
  color: #7a808f;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  white-space: nowrap;
}

.super-professional__figure {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(520px, 86%);
  height: 88%;
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 2%, #000 24%, #000 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 2%, #000 24%, #000 100%);
  pointer-events: none;
}

.intelligence-section {
  width: 100%;
  margin: 0 auto;
  padding: 72px 0 44px;
  background: transparent;
  color: #f7f9ff;
}

.intelligence-section__inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  border: 1px solid rgba(143, 159, 214, 0.2);
  border-radius: 26px;
  background: rgba(9, 12, 21, 0.8);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(270px, 1.05fr) minmax(260px, 1fr) minmax(300px, 1.02fr);
}

.intelligence-section__tabs-wrap {
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(143, 159, 214, 0.14);
}

.intelligence-section__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #8ea0e4;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.intelligence-section__title {
  margin: 12px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.intelligence-section__subtitle {
  margin: 14px 0 0;
  color: #aeb7d4;
  line-height: 1.55;
  max-width: 32ch;
}

.intelligence-section__tabs {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.intelligence-tab {
  width: 100%;
  border: 1px solid rgba(143, 159, 214, 0.2);
  border-radius: 14px;
  background: rgba(8, 11, 20, 0.52);
  color: #c7cfea;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 13px 14px;
  transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.intelligence-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(168, 185, 242, 0.55);
}

.intelligence-tab.is-active {
  border-color: rgba(171, 188, 246, 0.8);
  background: rgba(82, 107, 194, 0.16);
  color: #f2f6ff;
}

.intelligence-tab__index {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(171, 188, 246, 0.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.intelligence-tab__label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.intelligence-section__visual {
  position: relative;
  min-height: 560px;
  padding: 22px;
  border-right: 1px solid rgba(143, 159, 214, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity, transform, filter;
}

.intelligence-section__visual-glow {
  position: absolute;
  inset: 15% 15% 15% 15%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(110, 140, 255, 0.34) 0%, rgba(110, 140, 255, 0) 72%);
  filter: blur(8px);
}

.intelligence-section__visual img {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 1%, #000 30%, #000 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 1%, #000 30%, #000 100%);
  will-change: opacity, transform, filter;
}

.intelligence-panel {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: opacity, transform, filter;
}

.intelligence-panel__step {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #cfd8ff;
}

.intelligence-panel__title {
  margin: 20px 0 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.intelligence-panel__description {
  margin: 12px 0 0;
  color: #b2bbd7;
  line-height: 1.6;
}

.intelligence-panel__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.intelligence-panel__list li {
  position: relative;
  padding-left: 22px;
  color: #d6def7;
  line-height: 1.45;
}

.intelligence-panel__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #95aaf4;
  font-weight: 700;
}

.intelligence-panel__cta {
  margin-top: 24px;
  min-height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 20px;
  text-decoration: none;
  background: #f4f7ff;
  color: #11172e;
  font-weight: 700;
  transition: transform 150ms ease, background-color 150ms ease;
}

.intelligence-panel__cta:hover {
  transform: translateY(-1px);
  background: #dfe8ff;
}

.origin-proof {
  width: 100%;
  margin: 0 auto;
  padding: 44px 0 96px;
  color: #eff4ff;
  background: transparent;
}

.origin-proof__inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.origin-proof__header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.origin-proof__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #f49a4a;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.origin-proof__title {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.origin-proof__intro {
  margin: 14px auto 0;
  max-width: 58ch;
  color: #b5c1e2;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}

.origin-proof__quote-card {
  margin: 34px auto 0;
  max-width: 920px;
  border: 1px solid rgba(147, 164, 218, 0.24);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(18, 25, 46, 0.55), rgba(11, 17, 33, 0.55));
  box-shadow: 0 20px 48px rgba(1, 3, 8, 0.36);
}

.origin-proof__quote-mark {
  margin: 0;
  color: #f49a4a;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 0.6;
}

.origin-proof__quote-card blockquote {
  margin: 8px 0 0;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.origin-proof__quote-source {
  margin: 14px 0 0;
  color: #8e9ac1;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.origin-proof__pain-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.origin-proof__pain-card {
  border: 1px solid rgba(147, 164, 218, 0.24);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(17, 25, 47, 0.62), rgba(11, 17, 33, 0.62));
  padding: 18px 16px;
}

.origin-proof__pain-eyebrow {
  margin: 0;
  color: #f49a4a;
  font-size: 0.76rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.origin-proof__pain-card h3 {
  margin: 10px 0 0;
  font-size: clamp(1.1rem, 1.9vw, 1.42rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.origin-proof__pain-card p {
  margin: 10px 0 0;
  color: #b2bedf;
  line-height: 1.52;
}

.origin-proof__footer {
  margin: 28px auto 0;
  text-align: center;
  max-width: 68ch;
  color: #9faed4;
  line-height: 1.56;
}

.origin-proof__cta {
  margin: 20px auto 0;
  min-height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 24px;
  text-decoration: none;
  background: #f4f7ff;
  color: #11172e;
  font-weight: 700;
  transition: transform 150ms ease, background-color 150ms ease;
}

.origin-proof__cta:hover {
  transform: translateY(-1px);
  background: #dfe8ff;
}

.dark-sections-flow {
  width: 100%;
  background: var(--dark-sections-gradient);
  position: relative;
  z-index: 4;
  margin-top: -118px;
  padding-top: 118px;
}

.roi-calculator {
  width: 100%;
  margin: 0 auto;
  padding: 36px 0 110px;
  color: #eef4ff;
  background: transparent;
}

.roi-calculator__inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.roi-calculator__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.roi-calculator__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #f49a4a;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.roi-calculator__title {
  margin: 12px 0 0;
  font-size: clamp(1.95rem, 4.3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.roi-calculator__subtitle {
  margin: 14px auto 0;
  max-width: 58ch;
  color: #aab8da;
  line-height: 1.56;
}

.roi-calculator__panel {
  margin-top: 30px;
  border: 1px solid rgba(143, 159, 214, 0.24);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 23, 42, 0.92), rgba(11, 17, 33, 0.92));
  padding: clamp(18px, 2.6vw, 28px);
}

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

.roi-input {
  border: 1px solid rgba(143, 159, 214, 0.2);
  border-radius: 14px;
  background: rgba(7, 11, 21, 0.62);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.roi-input__label {
  font-size: 0.79rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fadd3;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.roi-input input[type="range"] {
  width: 100%;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.roi-input input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(104, 128, 206, 0.88), rgba(71, 95, 170, 0.38));
}

.roi-input input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #f7f9ff;
  border: 2px solid #5f79d4;
  margin-top: -6px;
}

.roi-input input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(104, 128, 206, 0.88), rgba(71, 95, 170, 0.38));
}

.roi-input input[type="range"]::-moz-range-thumb {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #f7f9ff;
  border: 2px solid #5f79d4;
}

.roi-input__value {
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.roi-input__hint {
  margin-top: -3px;
  color: #8595bf;
  font-size: 0.9rem;
  line-height: 1.45;
}

.roi-calculator__results {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.roi-result-card {
  border: 1px solid rgba(143, 159, 214, 0.22);
  border-radius: 16px;
  padding: 16px;
  background: rgba(247, 250, 255, 0.03);
}

.roi-result-card--dark {
  background: linear-gradient(180deg, #091426 0%, #071121 100%);
}

.roi-result-card__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fadd3;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.roi-result-card__value {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f49a4a;
}

.roi-result-card__description {
  margin: 10px 0 0;
  color: #aab8da;
  line-height: 1.5;
}

.roi-result-card__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.roi-result-card__list li {
  position: relative;
  padding-left: 18px;
  color: #c2cdec;
  line-height: 1.45;
}

.roi-result-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: #f49a4a;
}

.roi-result-card__detail {
  margin: 12px 0 0;
  color: #d1dbf8;
  font-weight: 600;
}

.roi-calculator__footnote {
  margin: 16px auto 0;
  max-width: 72ch;
  text-align: center;
  color: #8f9fc7;
  font-size: 0.9rem;
  line-height: 1.5;
}

.final-offer {
  width: 100%;
  margin: 0 auto;
  padding: 92px 0 118px;
  background: #ffffff;
}

.final-offer__inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.final-offer__card {
  border-radius: 24px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid #e5e8f1;
  background: #f8f9fc;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-offer__eyebrow {
  margin: 0;
  color: #f49a4a;
  font-size: 0.79rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.final-offer__title {
  margin: 12px 0 0;
  max-width: 24ch;
  color: #151a28;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.final-offer__subtitle {
  margin: 24px 0 0;
  color: #8a8e9d;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.final-offer__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 760px;
  justify-items: center;
}

.final-offer__list li {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: #283042;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.final-offer__list li::before {
  content: "→";
  position: static;
  color: #6d6ea7;
  font-weight: 700;
}

.final-offer__cta {
  margin-top: 28px;
  min-height: 50px;
  width: fit-content;
  padding: 0 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #11131a;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: none;
  transition: transform 150ms ease, background-color 150ms ease;
  align-self: center;
}

.final-offer__cta:hover {
  transform: translateY(-1px);
  background: #1d2029;
}

.site-footer {
  border-top: 1px solid #e6e9f2;
  background: #ffffff;
}

.site-footer__inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 24px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__logo {
  height: 30px;
  width: auto;
  display: block;
}

.site-footer__copy {
  margin: 0;
  color: #73788a;
  font-size: 0.92rem;
}

.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-footer__links a {
  color: #4b5161;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 150ms ease;
}

.site-footer__links a:hover {
  color: #141824;
}

.case-page {
  background: #ffffff;
}

.case-hero {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.case-hero__eyebrow {
  margin: 0;
  color: #6d6ea7;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.case-hero__company-logo {
  display: block;
  margin: 18px 0 0;
  width: clamp(145px, 18vw, 220px);
  height: auto;
  background: #000000;
  border-radius: 10px;
  padding: 10px 14px;
}

.case-hero__title {
  margin: 14px 0 0;
  max-width: 16ch;
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.case-hero__description {
  margin: 18px 0 0;
  max-width: 62ch;
  color: #565d70;
  line-height: 1.58;
  font-size: 1.06rem;
}

.case-hero__meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-hero__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e1e6f2;
  background: #f8f9fc;
  color: #32384b;
  font-size: 0.88rem;
  font-weight: 600;
}

.case-content {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto 98px;
  display: grid;
  gap: 16px;
}

.case-content__card {
  border-radius: 20px;
  border: 1px solid #e3e8f2;
  background: #fbfcff;
  padding: clamp(18px, 3vw, 30px);
}

.case-content__card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.case-content__card p {
  margin: 12px 0 0;
  color: #4d5468;
  line-height: 1.6;
}

.case-content__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.case-content__list li {
  position: relative;
  padding-left: 22px;
  color: #283042;
  line-height: 1.46;
}

.case-content__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #6d6ea7;
  font-weight: 700;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.case-results__item {
  border: 1px solid #e3e8f2;
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
}

.case-results__item strong {
  display: block;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #11131a;
}

.case-results__item span {
  display: block;
  margin-top: 8px;
  color: #5b6174;
  line-height: 1.4;
  font-size: 0.93rem;
}

.case-cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #f3f6fc;
  border: 1px solid #e1e6f2;
}

.case-cta p {
  margin: 0;
  color: #3e4559;
}

.case-cta a {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background: #11131a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.mini-erp-page {
  background: #ffffff;
}

.mini-erp-hero {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: 78px 0 54px;
}

.mini-erp-hero__inner {
  border: 1px solid #e3e8f2;
  border-radius: 24px;
  background: linear-gradient(145deg, #f8f9fc 0%, #eef3fb 100%);
  padding: clamp(22px, 4vw, 46px);
}

.mini-erp-hero__eyebrow {
  margin: 0;
  color: #6d6ea7;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.mini-erp-hero__title {
  margin: 14px 0 0;
  max-width: 22ch;
  color: #141927;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.mini-erp-hero__description {
  margin: 18px 0 0;
  max-width: 62ch;
  color: #525b70;
  line-height: 1.58;
  font-size: 1.05rem;
}

.mini-erp-hero__actions {
  margin-top: 26px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-erp-hero__primary,
.mini-erp-hero__secondary {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-erp-hero__primary {
  background: #11131a;
  color: #ffffff;
}

.mini-erp-hero__primary:hover {
  background: #1d2029;
}

.mini-erp-hero__secondary {
  border: 1px solid #d8dfed;
  color: #2f3649;
  background: #ffffff;
}

.mini-erp-hero__secondary:hover {
  border-color: #c8d1e4;
}

.mini-erp-benefits {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto 96px;
}

.mini-erp-benefits__inner h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mini-erp-benefits__grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-erp-benefits__grid article {
  border: 1px solid #e2e7f2;
  border-radius: 14px;
  background: #fbfcff;
  padding: 16px;
}

.mini-erp-benefits__grid h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.mini-erp-benefits__grid p {
  margin: 9px 0 0;
  color: #586075;
  line-height: 1.5;
}

.case-testimonial {
  background: linear-gradient(145deg, #f8f9fc 0%, #eef2fa 100%);
}

.case-testimonial__eyebrow {
  margin: 0;
  color: #6d6ea7;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.case-testimonial blockquote {
  margin: 12px 0 0;
  max-width: 58ch;
  color: #1f2638;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.case-testimonial__author {
  margin: 14px 0 0;
  display: grid;
  gap: 3px;
}

.case-testimonial__author strong {
  font-size: 1rem;
  color: #11131a;
}

.case-testimonial__author span {
  font-size: 0.92rem;
  color: #5d6376;
}

.intelligence-panel.is-fading-out,
.intelligence-section__visual.is-fading-out img {
  animation: intelligenceFadeOut 180ms cubic-bezier(0.55, 0.04, 0.73, 0.19) both;
}

.intelligence-panel.is-fading-in,
.intelligence-section__visual.is-fading-in img {
  animation: intelligenceFadeIn 330ms cubic-bezier(0.2, 0.68, 0.2, 1) both;
}

@keyframes painPointPanelReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes diagnosticNodeReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes diagnosticNodeGlow {
  0%,
  72%,
  100% {
    border-color: #dbe1ee;
    box-shadow: 0 8px 18px rgba(17, 19, 26, 0.06);
  }
  18% {
    border-color: #bfcaff;
    box-shadow: 0 10px 24px rgba(109, 110, 167, 0.3);
  }
}

@keyframes superProfessionalMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes intelligenceFadeOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
    filter: blur(9px);
  }
}

@keyframes intelligenceFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.992);
    filter: blur(11px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(8, 13, 24, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  will-change: opacity;
  transition: opacity 180ms ease;
}

.modal[aria-hidden="false"] .modal__backdrop {
  opacity: 1;
}

.modal__panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(92vh, 860px);
  background: #ffffff;
  border-radius: 20px;
  overflow: auto;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  will-change: opacity, transform;
  transition: opacity 220ms cubic-bezier(0.2, 0.68, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.modal[aria-hidden="false"] .modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  color: #2e3039;
  background: #f3f4f8;
  cursor: pointer;
}

.demo-modal {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(24px, 4vw, 70px);
  padding: clamp(22px, 3vw, 34px);
}

.demo-modal__form-wrap {
  background: #fbfcff;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  padding: 18px;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form__field {
  display: grid;
  gap: 7px;
  font-size: 0.96rem;
  color: #22242f;
}

.demo-form__field input,
.demo-form__field select {
  width: 100%;
  border: 1px solid #d8ddea;
  border-radius: 11px;
  padding: 12px 13px;
  min-height: 48px;
  font: inherit;
  background: #ffffff;
  outline: none;
}

.demo-form__field input:focus,
.demo-form__field select:focus {
  border-color: #9ea7c2;
  box-shadow: 0 0 0 3px rgba(158, 167, 194, 0.2);
}

.demo-form__submit {
  margin-top: 6px;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: #10131d;
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.demo-form__submit:hover {
  background: #1a1e29;
}

.demo-form__note {
  margin: 4px 2px 0;
  color: #6b6f7c;
  font-size: 0.88rem;
  line-height: 1.5;
}

.demo-modal__content {
  align-self: center;
}

.demo-modal__eyebrow {
  margin: 0 0 10px;
  font-size: 0.79rem;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.16em;
  color: #6f7182;
}

.demo-modal__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.demo-modal__description {
  margin: 18px 0 0;
  max-width: 44ch;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #484b59;
}

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

.demo-modal__list li {
  position: relative;
  padding-left: 26px;
  color: #232634;
  line-height: 1.45;
  font-size: 1.02rem;
}

.demo-modal__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #232634;
  font-weight: 700;
}

.agent-modal {
  width: min(760px, 100%);
  padding: clamp(24px, 3vw, 34px);
}

.agent-modal__content {
  padding-right: min(18px, 3vw);
}

.agent-modal__eyebrow {
  margin: 0 0 10px;
  font-size: 0.79rem;
  font-family: "Sometype Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.16em;
  color: #6f7182;
}

.agent-modal__title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.agent-modal__description {
  margin: 14px 0 0;
  color: #474b5b;
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.agent-modal__list li {
  position: relative;
  padding-left: 24px;
  color: #232634;
  line-height: 1.45;
}

.agent-modal__list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #232634;
}

@media (max-width: 980px) {
  .site-header__inner {
    width: min(1200px, calc(100% - 42px));
  }

  .site-header__logo {
    height: 30px;
  }

  .site-header__actions {
    gap: 15px;
  }

  .site-header__link {
    font-size: 0.9rem;
  }

  .site-header__button {
    padding: 9px 13px;
    font-size: 0.87rem;
  }

  .hero {
    width: min(1200px, calc(100% - 42px));
    min-height: auto;
    padding: 42px 0 24px;
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 400px;
  }

  .agents-slider {
    width: min(1200px, calc(100% - 42px));
    margin-top: 0;
  }

  .case-hero,
  .case-content {
    width: min(1200px, calc(100% - 42px));
  }

  .mini-erp-hero,
  .mini-erp-benefits {
    width: min(1200px, calc(100% - 42px));
  }

  .case-results {
    grid-template-columns: 1fr;
  }

  .case-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-erp-benefits__grid {
    grid-template-columns: 1fr;
  }

  .pain-points {
    width: min(1200px, calc(100% - 42px));
  }

  .diagnostic-spotlight {
    width: min(1200px, calc(100% - 42px));
    grid-template-columns: 1fr;
  }

  .super-professional {
    width: 100%;
    position: relative;
    top: auto;
  }

  .dark-sections-flow {
    margin-top: -58px;
    padding-top: 58px;
  }

  .super-professional__inner {
    width: min(1200px, calc(100% - 42px));
  }

  .intelligence-section {
    padding: 56px 0 34px;
  }

  .origin-proof {
    padding: 34px 0 76px;
  }

  .roi-calculator {
    padding: 28px 0 88px;
  }

  .final-offer {
    padding: 72px 0 92px;
  }

  .roi-calculator__inner {
    width: min(1200px, calc(100% - 42px));
  }

  .final-offer__inner {
    width: min(1200px, calc(100% - 42px));
  }

  .origin-proof__inner {
    width: min(1200px, calc(100% - 42px));
  }

  .origin-proof__pain-grid {
    grid-template-columns: 1fr;
  }

  .roi-calculator__inputs,
  .roi-calculator__results {
    grid-template-columns: 1fr;
  }

  .intelligence-section__inner {
    width: min(1200px, calc(100% - 42px));
    grid-template-columns: 1fr;
  }

  .intelligence-section__tabs-wrap,
  .intelligence-section__visual {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 159, 214, 0.14);
  }

  .intelligence-section__visual {
    min-height: 420px;
  }

  .intelligence-panel {
    padding-top: 22px;
  }

  .diagnostic-spotlight__visual {
    min-height: 500px;
  }

  .super-professional__stage {
    min-height: 600px;
  }

  .agents-slider__header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .agents-slider__intro p {
    max-width: 60ch;
    margin-top: 0;
  }

  .agent-card {
    height: 400px;
  }

  .agent-card--inventory,
.agent-card--finance,
.agent-card--reports {
    margin-top: 0;
  }

  .modal {
    padding: 16px;
  }

  .demo-modal {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .demo-modal__content {
    align-self: start;
  }

  .site-footer__inner {
    width: min(1200px, calc(100% - 42px));
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px 0;
    min-height: 0;
  }

  .pain-points__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    width: calc(100% - 30px);
    min-height: 66px;
  }

  .site-header__logo {
    height: 27px;
  }

  .site-header__link {
    display: none;
  }

  .site-header__button {
    border-radius: 11px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero {
    width: calc(100% - 30px);
    padding-top: 26px;
    gap: 20px;
  }

  .hero__description {
    margin-top: 18px;
    line-height: 1.48;
  }

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

  .hero__visual {
    min-height: 320px;
  }

  .agents-slider {
    width: calc(100% - 30px);
    margin-bottom: 60px;
  }

  .hero__secondary-cta {
    width: 100%;
    justify-content: center;
  }

  .mini-erp-hero,
  .mini-erp-benefits {
    width: calc(100% - 30px);
  }

  .mini-erp-hero {
    padding: 38px 0 28px;
  }

  .mini-erp-hero__inner {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .mini-erp-hero__actions {
    width: 100%;
  }

  .mini-erp-hero__primary,
  .mini-erp-hero__secondary {
    width: 100%;
  }

  .mini-erp-benefits {
    margin-bottom: 64px;
  }

  .case-hero,
  .case-content {
    width: calc(100% - 30px);
  }

  .case-hero {
    padding: 36px 0 30px;
  }

  .case-hero__company-logo {
    margin-top: 14px;
    width: clamp(130px, 40vw, 190px);
  }

  .case-content {
    margin-bottom: 62px;
  }

  .case-content__card {
    border-radius: 14px;
    padding: 14px;
  }

  .case-cta {
    border-radius: 12px;
    padding: 12px;
  }

  .case-cta a {
    width: 100%;
    justify-content: center;
  }

  .pain-points {
    width: calc(100% - 30px);
    margin-bottom: 64px;
  }

  .diagnostic-spotlight {
    width: calc(100% - 30px);
    margin-bottom: 72px;
    gap: 16px;
  }

  .super-professional {
    width: 100%;
    margin-bottom: 0;
    position: relative;
    top: auto;
  }

  .dark-sections-flow {
    margin-top: -24px;
    padding-top: 24px;
  }

  .intelligence-section {
    padding: 44px 0 26px;
  }

  .origin-proof {
    padding: 26px 0 58px;
  }

  .roi-calculator {
    padding: 24px 0 62px;
  }

  .final-offer {
    padding: 56px 0 66px;
  }

  .roi-calculator__inner {
    width: calc(100% - 30px);
  }

  .final-offer__inner {
    width: calc(100% - 30px);
  }

  .final-offer__card {
    border-radius: 18px;
    padding: 18px 14px;
  }

  .final-offer__subtitle {
    margin-top: 16px;
    font-size: 0.76rem;
  }

  .final-offer__list {
    gap: 10px;
  }

  .final-offer__list li {
    font-size: 0.99rem;
  }

  .final-offer__cta {
    margin-top: 18px;
    width: fit-content;
    min-height: 52px;
    font-size: 1.06rem;
  }

  .roi-calculator__panel {
    margin-top: 22px;
    border-radius: 16px;
    padding: 12px;
  }

  .roi-input {
    border-radius: 12px;
    padding: 12px;
  }

  .roi-input__hint {
    font-size: 0.84rem;
  }

  .roi-result-card {
    border-radius: 12px;
    padding: 12px;
  }

  .roi-result-card__description,
  .roi-result-card__list li,
  .roi-result-card__detail {
    font-size: 0.92rem;
  }

  .roi-calculator__footnote {
    margin-top: 12px;
    font-size: 0.82rem;
  }

  .origin-proof__inner {
    width: calc(100% - 30px);
  }

  .origin-proof__quote-card {
    margin-top: 24px;
    border-radius: 16px;
  }

  .origin-proof__pain-grid {
    margin-top: 22px;
    gap: 12px;
  }

  .origin-proof__pain-card {
    border-radius: 12px;
    padding: 14px 12px;
  }

  .origin-proof__footer {
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .origin-proof__cta {
    margin-top: 16px;
    width: 100%;
  }

  .super-professional__inner {
    width: calc(100% - 30px);
  }

  .intelligence-section__inner {
    width: calc(100% - 30px);
    border-radius: 18px;
  }

  .intelligence-section__tabs-wrap,
  .intelligence-panel {
    padding: 18px 14px;
  }

  .intelligence-section__visual {
    min-height: 300px;
    padding: 14px;
  }

  .intelligence-tab {
    padding: 11px 10px;
    gap: 9px;
  }

  .intelligence-tab__index {
    width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }

  .intelligence-tab__label {
    font-size: 0.9rem;
  }

  .intelligence-panel__cta {
    width: 100%;
  }

  .super-professional__subtitle {
    font-size: 0.95rem;
  }

  .super-professional__stage {
    margin-top: 18px;
    min-height: 520px;
  }

  .super-professional__badge {
    font-size: 0.9rem;
    padding: 12px 18px;
  }

  .super-professional__figure {
    width: min(400px, 94%);
    height: 84%;
  }

  .diagnostic-spotlight__visual {
    min-height: 400px;
    border-radius: 16px;
    padding: 0;
  }

  .diagnostic-map__node {
    font-size: 0.72rem;
    padding: 6px 9px;
  }

  .diagnostic-spotlight__subtitle {
    font-size: 0.96rem;
  }

  .diagnostic-issues {
    margin-top: 16px;
    grid-template-columns: 1fr;
  }

  .diagnostic-issues__item {
    border-radius: 12px;
    padding: 12px;
  }

  .diagnostic-issues__index {
    font-size: 1.3rem;
  }

  .diagnostic-issues__item h3 {
    font-size: 1rem;
  }

  .diagnostic-issues__item p {
    font-size: 0.92rem;
  }

  .pain-points__highlight {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .pain-points__grid {
    margin-top: 18px;
    gap: 16px;
  }

  .pain-points__item {
    padding: 12px 12px;
    font-size: 0.92rem;
  }

  .pain-points__panel {
    border-radius: 14px;
    padding: 14px;
  }

  .agents-slider__title {
    font-size: clamp(1.8rem, 12vw, 2.5rem);
  }

  .agents-slider__controls {
    margin-top: 14px;
  }

  .agents-slider__track {
    gap: 14px;
  }

  .agent-card {
    --agent-card-content-space: 112px;
    flex-basis: min(84vw, 290px);
    height: 360px;
    border-radius: 16px;
    padding: 14px;
  }

  .agent-card__label {
    font-size: 1.2rem;
  }

  .agent-card__description {
    margin-top: 8px;
    font-size: 0.88rem;
  }

  .modal {
    padding: 10px;
  }

  .modal__panel {
    border-radius: 14px;
  }

  .modal__close {
    top: 10px;
    right: 10px;
  }

  .demo-modal {
    padding: 14px;
    gap: 16px;
  }

  .demo-modal__form-wrap {
    padding: 14px;
  }

  .demo-form {
    gap: 12px;
  }

  .demo-form__field {
    font-size: 0.88rem;
  }

  .demo-form__field input,
  .demo-form__field select {
    min-height: 44px;
    padding: 10px 12px;
  }

  .demo-form__submit {
    min-height: 45px;
  }

  .demo-form__note {
    font-size: 0.8rem;
  }

  .site-footer__inner {
    width: calc(100% - 30px);
    gap: 10px;
  }

  .site-footer__logo {
    height: 27px;
  }

  .site-footer__copy,
  .site-footer__links a {
    font-size: 0.84rem;
  }

  .demo-modal__description,
  .demo-modal__list li {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agent-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pain-points__panel.is-revealing {
    animation: none;
  }

  .diagnostic-map__node {
    opacity: 1;
  }

  .diagnostic-spotlight.is-revealed .diagnostic-map__node {
    animation: none;
  }

  .super-professional__track {
    animation: none;
  }

  .intelligence-panel.is-fading-out,
  .intelligence-section__visual.is-fading-out img,
  .intelligence-panel.is-fading-in,
  .intelligence-section__visual.is-fading-in img {
    animation: none;
  }

  .modal,
  .modal__backdrop,
  .modal__panel {
    transition: none;
  }
}
