:root {
  color-scheme: dark;
  --bg: #080a0f;
  --surface: #10141d;
  --surface-strong: #151b26;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f8fb;
  --muted: #a7b0c0;
  --soft: #d5dbe5;
  --accent: #46e6b0;
  --accent-strong: #7cf4c9;
  --steel: #8fb3ff;
  --warning: #ffd36e;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: var(--bg);
}

main > section {
  min-height: calc(100svh - 76px);
  scroll-snap-align: start;
  scroll-margin-top: 76px;
  scroll-snap-stop: always;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.hero,
.problem-section,
.approach-section,
.section,
.split-section,
.cta-section,
.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 15, 0.84);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  min-height: 76px;
  padding: 0 38px;
  background: transparent;
  transition:
    background 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header[data-scrolled] {
  background: rgba(8, 10, 15, 0.94);
}

.brand,
.site-nav,
.nav-actions,
.nav-item > a,
.nav-action,
.button {
  display: inline-flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(132px, 13vw, 178px);
  height: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.menu-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex: 1;
}

.site-nav {
  align-items: stretch;
  justify-content: flex-start;
  gap: 26px;
  color: #46ff9a;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav > a,
.nav-item {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
}

.site-nav > a,
.nav-item > a {
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0;
  border-radius: 0;
  line-height: 1;
}

.nav-item {
  position: relative;
}

.site-nav > a:hover,
.nav-item:hover > a,
.text-link:hover {
  color: #9dffc8;
  background: transparent;
}

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

.chevron {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.78;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 28px;
  width: min(640px, calc(100vw - 40px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 14, 21, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.resources-menu {
  grid-template-columns: minmax(260px, 1fr);
  width: min(440px, calc(100vw - 40px));
}

.has-menu:hover .mega-menu,
.has-menu:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-label {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.mega-menu strong,
.mega-menu span {
  display: block;
}

.mega-menu strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1rem;
}

.mega-menu span {
  color: var(--muted);
  line-height: 1.45;
}

.nav-actions {
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  border-radius: 0;
  color: rgba(246, 248, 251, 0.66);
  font-weight: 650;
}

.nav-action {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.nav-action-ghost {
  color: #07100d;
  border-color: rgba(70, 255, 154, 0.68);
  background:
    linear-gradient(180deg, rgba(157, 255, 200, 0.98), rgba(70, 255, 154, 0.9)),
    #46ff9a;
  box-shadow:
    0 0 0 1px rgba(70, 255, 154, 0.16),
    0 10px 30px rgba(70, 255, 154, 0.2);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-action-primary {
  color: #07100d;
  border-color: transparent;
  background: var(--text);
}

.nav-action-primary:hover {
  color: #07100d;
  background: var(--accent);
}

.nav-action-ghost:hover {
  color: #07100d;
  border-color: rgba(157, 255, 200, 0.95);
  box-shadow:
    0 0 0 1px rgba(157, 255, 200, 0.22),
    0 14px 38px rgba(70, 255, 154, 0.3);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(540px, 1.05fr);
  align-items: center;
  gap: 72px;
  width: min(1520px, calc(100% - 48px));
  min-height: calc(100svh - 112px);
  padding: 56px 0 46px;
  text-align: left;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: -70px;
  left: 50%;
  z-index: -2;
  width: 100vw;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 15, 0.9) 0%,
      rgba(8, 10, 15, 0.58) 42%,
      rgba(8, 10, 15, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 10, 15, 0.72) 0%,
      rgba(8, 10, 15, 0.18) 42%,
      #0d1118 100%
    ),
    url("assets/analytics-landing-background.png") center / cover no-repeat;
  content: "";
  opacity: 0.72;
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 72% 40%,
      rgba(70, 230, 176, 0.13),
      transparent 36%
    ),
    radial-gradient(
      circle at 34% 16%,
      rgba(143, 179, 255, 0.12),
      transparent 42%
    );
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin: 20px 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 3.65rem;
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: 1.12rem;
}

.hero-text span {
  color: var(--accent-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 750;
}

.button-primary {
  color: #07100d;
  background: var(--accent);
  box-shadow: 0 16px 42px rgba(70, 230, 176, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  min-width: 0;
  margin-top: 0;
  transform: translateY(var(--hero-shift, 0));
  transition: transform 80ms linear;
}

.terminal-panel {
  overflow: hidden;
  border: 1px solid rgba(70, 255, 154, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent), #0d1219;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.5),
    0 18px 70px rgba(70, 255, 154, 0.08);
}

.panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.025);
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--soft);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46ff9a;
  box-shadow: 0 0 14px rgba(70, 255, 154, 0.9);
}

.intelligence-view {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  min-height: 220px;
}

.machine-map {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 220px;
  border-right: 1px solid var(--line);
  background-image:
    radial-gradient(
      circle at 24% 30%,
      rgba(70, 255, 154, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 72% 72%,
      rgba(80, 176, 255, 0.08),
      transparent 30%
    ),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    42px 42px,
    42px 42px;
}

.machine-map::after {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(70, 255, 154, 0.06);
  box-shadow: 0 0 90px rgba(70, 255, 154, 0.12);
  content: "";
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(124, 244, 201, 0.2);
  border-radius: 50%;
  animation: orbit-pulse 4s ease-in-out infinite;
}

.orbit-one {
  width: 190px;
  height: 190px;
}

.orbit-two {
  width: 280px;
  height: 280px;
  animation-delay: -2s;
}

.machine-core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.machine-core img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.machine-core span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-align: center;
}

.machine-node {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border: 2px solid #0d1219;
  border-radius: 50%;
  background: #46ff9a;
  box-shadow: 0 0 16px rgba(70, 255, 154, 0.8);
}

.node-one {
  transform: translate(-132px, -62px);
}
.node-two {
  transform: translate(140px, 26px);
}
.node-three {
  transform: translate(-88px, 118px);
}

.signal-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.signal-stack article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 6px 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  text-align: left;
}

.signal-stack article:nth-child(2) {
  background: rgba(80, 176, 255, 0.035);
}

.signal-stack article.signal-alert {
  background: rgba(70, 255, 154, 0.055);
}

.signal-stack article:last-child {
  border-bottom: 0;
}

.signal-stack span,
.signal-stack small {
  color: var(--muted);
}

.signal-stack span {
  font-size: 0.76rem;
  font-weight: 700;
}

.signal-stack strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--text);
}

.signal-stack small {
  font-size: 0.68rem;
}

.signal-stack .signal-alert strong {
  color: var(--accent-strong);
}

.hero-recommendation-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--accent-strong);
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.chapter-transition {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 18px;
  border-top: 1px solid rgba(143, 179, 255, 0.18);
  border-bottom: 1px solid rgba(143, 179, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(236, 242, 255, 0.94),
      rgba(215, 226, 248, 0.9)
    ),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(6, 26, 63, 0.08);
}

.partner-label {
  margin: 0;
  color: rgba(6, 26, 63, 0.72);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-marquee {
  overflow: hidden;
  min-width: 0;
}

.transition-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
  width: max-content;
  padding-inline: clamp(18px, 3vw, 42px);
  animation: transition-drift 30s linear infinite;
}

.transition-track span {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(190px, 18vw, 260px);
  height: 86px;
}

.transition-track img {
  display: block;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(6, 26, 63, 0.12));
}

.problem-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 10px max(20px, calc((100vw - var(--max-width)) / 2)) 18px;
}

.problem-section::before {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  width: 49vw;
  height: 58%;
  pointer-events: none;
  background:
    linear-gradient(
      270deg,
      #0d1118 0%,
      rgba(13, 17, 24, 0.56) 18%,
      rgba(13, 17, 24, 0.1) 52%,
      rgba(13, 17, 24, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      #0d1118 0%,
      rgba(13, 17, 24, 0.08) 18%,
      rgba(13, 17, 24, 0.16) 78%,
      rgba(7, 91, 255, 0.45) 100%
    ),
    url("assets/industrial-skill-crisis.png") left center / cover no-repeat;
  content: "";
  opacity: 0.72;
  transform: translateY(-50%);
  mask-image:
    linear-gradient(
      270deg,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 18%,
      #000 52%,
      #000 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(
      270deg,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 18%,
      #000 52%,
      #000 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
}

.problem-intro,
.problem-content,
.problem-closing {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.problem-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  column-gap: 72px;
  align-items: end;
  margin-bottom: 38px;
}

.problem-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}

.problem-intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.4vw, 3.45rem);
  line-height: 1.08;
}

.problem-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(460px, 1fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: stretch;
}

.problem-list {
  position: relative;
  display: grid;
  align-content: center;
  align-self: center;
  overflow: visible;
  min-height: 430px;
  max-width: none;
  border-radius: 0;
  background: transparent;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.16),
    0 0 76px rgba(84, 166, 255, 0.13);
  isolation: isolate;
}

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

.problem-list::before {
  background:
    linear-gradient(
      270deg,
      rgba(13, 17, 24, 0.42),
      rgba(13, 17, 24, 0.2) 42%,
      rgba(13, 17, 24, 0.5) 100%
    ),
    radial-gradient(
      circle at 37% 52%,
      rgba(84, 166, 255, 0.16),
      transparent 46%
    ),
    url("assets/operator-background.png") center / contain no-repeat;
  opacity: 0.35;
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.38) 18%,
      #000 48%,
      rgba(0, 0, 0, 0.6) 82%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.38) 18%,
      #000 48%,
      rgba(0, 0, 0, 0.6) 82%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
}

.problem-list::after {
  background:
    linear-gradient(270deg, rgba(124, 244, 201, 0.04), transparent 30%),
    radial-gradient(
      circle at 28% 46%,
      rgba(255, 211, 110, 0.07),
      transparent 32%
    );
  mix-blend-mode: screen;
}

.problem-list h3 {
  position: absolute;
  top: 22px;
  left: 0;
  z-index: 2;
  margin: 0;
  color: var(--warning);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem-list ul {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 430px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: min(520px, 100%);
  min-height: 0;
  padding: 14px 20px;
  background: rgba(218, 234, 255, 0.16);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.24),
    0 0 32px rgba(143, 179, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: rgba(246, 248, 251, 0.78);
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 520;
  line-height: 1.28;
  text-align: left;
  backdrop-filter: blur(14px);
}

.problem-list li:nth-child(1) {
  top: 18%;
  transform: translateY(-50%);
}

.problem-list li:nth-child(2) {
  top: 40%;
  transform: translateY(-50%);
}

.problem-list li:nth-child(3) {
  top: 62%;
  transform: translateY(-50%);
}

.problem-list li:nth-child(4) {
  top: 84%;
  transform: translateY(-50%);
}

.problem-list strong {
  color: var(--warning);
  font-style: normal;
  font-size: 1.12rem;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.problem-stats {
  position: relative;
  overflow: visible;
  min-height: 430px;
  border-radius: 0;
  background: transparent;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.16),
    0 0 76px rgba(143, 179, 255, 0.13);
  isolation: isolate;
}

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

.problem-stats::before {
  background:
    linear-gradient(
      90deg,
      rgba(13, 17, 24, 0.18),
      rgba(13, 17, 24, 0.02) 42%,
      rgba(13, 17, 24, 0.2) 100%
    ),
    radial-gradient(
      circle at 63% 52%,
      rgba(143, 179, 255, 0.16),
      transparent 46%
    );
}

.problem-stats::after {
  background:
    linear-gradient(90deg, rgba(124, 244, 201, 0.05), transparent 30%),
    radial-gradient(
      circle at 72% 46%,
      rgba(255, 211, 110, 0.08),
      transparent 32%
    );
  mix-blend-mode: screen;
}

.problem-stats img {
  display: none;
}

.impact-label {
  position: absolute;
  top: 22px;
  left: 0;
  z-index: 2;
  margin: 0;
  color: var(--warning);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem-stat {
  position: absolute;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: min(520px, 100%);
  min-height: 0;
  padding: 14px 20px;
  background: rgba(218, 234, 255, 0.16);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.24),
    0 0 32px rgba(143, 179, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--text);
  text-align: left;
  backdrop-filter: blur(14px);
}

.problem-stat-one {
  top: 18%;
  transform: translateY(-50%);
}

.problem-stat-two {
  top: 40%;
  transform: translateY(-50%);
}

.problem-stat-three {
  top: 62%;
  transform: translateY(-50%);
}

.problem-stat-four {
  top: 84%;
  transform: translateY(-50%);
}

.problem-stat strong {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 820;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(143, 179, 255, 0.72),
    0 2px 8px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.problem-stat p {
  max-width: none;
  min-height: 0;
  margin: 0;
  color: rgba(246, 248, 251, 0.78);
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 520;
  line-height: 1.28;
  opacity: 1;
}

.approach-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: auto;
  margin-inline: 0;
  padding: 0px max(20px, calc((100vw - var(--max-width)) / 2)) 110px;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 34%, rgba(7, 91, 255, 0.2), transparent 36%),
    radial-gradient(
      circle at 54% 68%,
      rgba(70, 255, 226, 0.1),
      transparent 32%
    ),
    linear-gradient(180deg, #080b12 0%, #10122e 48%, #080b12 100%);
  isolation: isolate;
}

.approach-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 226, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 226, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 16%,
    #000 84%,
    transparent
  );
  content: "";
}

.approach-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 78% 34%,
      rgba(125, 226, 255, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(13, 17, 24, 0.08), rgba(13, 17, 24, 0.22));
  content: "";
}

.approach-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 100%);
  min-height: auto;
}

.approach-eyebrow {
  margin-bottom: 20px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-copy h2 {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2.05rem, 3.8vw, 4.7rem);
  line-height: 1.02;
}

.approach-subtext {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(213, 219, 229, 0.72);
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  line-height: 1.72;
}

.approach-vision {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
  min-height: auto;
  padding: 174px 0 0;
}

.approach-vision-lines {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  width: min(100%, 700px);
  padding: 0;
}

.approach-vision-lines article {
  width: 100%;
  margin: 0;
  padding: 22px 26px;
  border: 1px solid rgba(125, 226, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(6, 10, 22, 0.52);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: none;
  backdrop-filter: blur(16px);
}

.approach-vision-lines span {
  display: block;
  margin-bottom: 8px;
  color: #fff71a;
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-vision-lines h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.02rem, 1.22vw, 1.34rem);
  line-height: 1.18;
}

.approach-vision-lines p {
  margin: 9px 0 0;
  color: rgba(213, 219, 229, 0.76);
  font-size: 0.8rem;
  line-height: 1.52;
}

.approach-vision-image {
  position: absolute;
  top: 38px;
  right: -8px;
  z-index: 1;
  overflow: hidden;
  width: min(44vw, 560px);
  min-height: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.42;
  filter: drop-shadow(0 0 48px rgba(70, 255, 226, 0.22)) saturate(0.9)
    contrast(1.06);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    #000 0%,
    transparent 72%
  );
}

.approach-vision-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 11, 18, 0.16), rgba(8, 11, 18, 0.42)),
    radial-gradient(
      circle at 48% 42%,
      rgba(130, 232, 255, 0.2),
      transparent 42%
    );
  content: "";
  mix-blend-mode: normal;
}

.approach-vision-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  opacity: 0.9;
  object-fit: cover;
  object-position: center;
}

.solution-layer-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: min(10svh, 92px) max(20px, calc((100vw - var(--max-width)) / 2));
  background:
    radial-gradient(
      circle at 72% 22%,
      rgba(70, 255, 154, 0.1),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 70%,
      rgba(80, 176, 255, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #0d1118 0%, #0b1322 52%, #0d1118 100%);
  color: var(--text);
  isolation: isolate;
}

.solution-layer-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
  content: "";
}

.solution-layer-heading,
.solution-subsections {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.solution-layer-heading {
  display: grid;
  gap: 18px;
  max-width: min(920px, 100%);
  margin-bottom: 44px;
  text-align: center;
}

.solution-layer-heading .eyebrow {
  justify-content: center;
  color: var(--accent-strong);
}

.solution-layer-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.6vw, 4.3rem);
  line-height: 1;
}

.solution-layer-heading h2 span {
  display: block;
}

.solution-layer-subtext {
  max-width: 820px;
  margin: 2px auto 0;
  color: rgba(213, 219, 229, 0.72);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 450;
  line-height: 1.55;
}

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

.solution-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-subsections article {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 30px;
  min-height: 400px;
  padding: 30px 42px 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 22px 66px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  text-align: center;
}

.solution-card-audience {
  width: 100%;
  margin: 0;
  padding-left: 0;
  color: rgba(190, 220, 245, 0.62);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.solution-card-title {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.solution-card-title span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(70, 255, 154, 0.1);
  color: #fff71a;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(70, 255, 154, 0.14);
}

.solution-subsections h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.35vw, 1.42rem);
  line-height: 1.3;
  text-align: left;
}

.solution-subsections p {
  width: 100%;
  max-width: 100%;
  margin: 0;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
  text-align: left;
  align-self: start;
}

.solution-subsections .solution-copy-list {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
  text-align: left;
  align-self: start;
  list-style: none;
}

.solution-subsections .solution-copy-list li {
  position: relative;
  padding-left: 1rem;
  white-space: normal;
}

.solution-subsections .solution-copy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(70, 255, 154, 0.86);
  box-shadow: 0 0 0.4rem rgba(70, 255, 154, 0.35);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 700ms ease,
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal][data-visible] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes transition-drift {
  to {
    transform: translateX(-50%);
  }
}

.section,
.split-section,
.cta-section {
  padding: min(10svh, 92px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.platform-section {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: none;
  min-height: auto;
  margin-inline: 0;
  padding: 96px max(20px, calc((100vw - var(--max-width)) / 2)) 104px;
  color: var(--text);
  background:
    radial-gradient(
      circle at 74% 12%,
      rgba(70, 255, 154, 0.1),
      transparent 34%
    ),
    radial-gradient(
      circle at 14% 42%,
      rgba(80, 176, 255, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #0d1118 0%, #0b1322 48%, #0d1118 100%);
  isolation: isolate;
}

.platform-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 110px;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 72% 10%,
      rgba(75, 255, 189, 0.09),
      transparent 36%
    ),
    linear-gradient(180deg, #0d1118 0%, rgba(13, 17, 24, 0));
  content: "";
}

.platform-scroll {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  min-height: auto;
  margin-inline: auto;
  isolation: isolate;
}

.platform-sticky {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(440px, 0.95fr) minmax(
      360px,
      0.7fr
    );
  align-items: start;
  gap: clamp(26px, 4vw, 68px);
  height: auto;
}

.platform-heading {
  position: sticky;
  top: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.platform-heading .eyebrow {
  margin-bottom: 22px;
}

.platform-heading h2 {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(246, 248, 251, 0.92);
  font-size: clamp(2rem, 3.35vw, 4.1rem);
  line-height: 0.98;
  white-space: normal;
}

.platform-heading > p {
  max-width: 560px;
  margin: 26px auto 0;
  color: rgba(6, 26, 63, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.24rem);
  line-height: 1.65;
}

.platform-loop {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1fr);
  align-items: center;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  gap: clamp(44px, 7vw, 104px);
}

.platform-loop .platform-heading {
  position: relative;
  top: auto;
  max-width: 640px;
  margin: 0;
}

.platform-loop .platform-heading .eyebrow {
  color: var(--accent);
}

.platform-loop .platform-heading h2 {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(246, 248, 251, 0.96);
  font-size: clamp(2.45rem, 4.2vw, 5.2rem);
  line-height: 0.95;
}

.platform-loop .platform-heading > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(226, 236, 255, 0.76);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.72;
}

.platform-loop-visual {
  position: relative;
  min-height: 640px;
  padding: clamp(22px, 2.6vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 111, 0, 0.11),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(70, 255, 154, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(65, 169, 255, 0.14),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.02)
    );
  background-size:
    38px 38px,
    38px 38px,
    auto,
    auto,
    auto,
    auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 28px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.platform-loop-visual::before,
.platform-loop-visual::after {
  position: absolute;
  border: 1px dashed rgba(112, 255, 180, 0.34);
  border-radius: 999px;
  content: "";
}

.platform-loop-visual::before {
  width: min(78%, 460px);
  aspect-ratio: 1;
}

.platform-loop-visual::after {
  width: min(54%, 320px);
  aspect-ratio: 1;
  border-color: rgba(89, 178, 255, 0.24);
}

.loop-infographic {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  height: 100%;
}

.loop-infographic-header {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  background: rgba(7, 14, 26, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.loop-infographic-header > span {
  display: block;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loop-flow {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.loop-flow strong {
  color: #fff55f;
  font-size: clamp(0.86rem, 0.95vw, 1rem);
}

.loop-flow i {
  position: relative;
  display: block;
  width: clamp(20px, 2.4vw, 34px);
  height: 1px;
  background: rgba(112, 255, 180, 0.62);
}

.loop-flow i::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(112, 255, 180, 0.8);
  border-right: 1px solid rgba(112, 255, 180, 0.8);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.loop-infographic-header p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(320px, 100%);
  margin: 18px auto 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(112, 255, 180, 0.42);
  color: rgba(226, 236, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.loop-info-card {
  position: relative;
  min-height: 220px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(9, 16, 28, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.loop-info-card span {
  display: block;
  margin-bottom: 18px;
  color: #fff55f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.loop-info-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
}

.loop-info-card p {
  margin: 10px 0 14px;
  color: rgba(112, 255, 180, 0.86);
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.42;
}

.loop-info-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loop-info-card li {
  position: relative;
  padding-left: 14px;
  color: rgba(226, 236, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.36;
}

.loop-info-card li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 245, 95, 0.9);
  content: "";
}

.loop-diagram {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  height: 100%;
  min-height: 600px;
}

.loop-diagram-title {
  text-align: center;
}

.loop-diagram-title span {
  display: block;
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.34rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.loop-diagram-title p {
  margin: 8px 0 0;
  color: rgba(112, 255, 180, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loop-vector {
  display: block;
  width: 100%;
  min-height: 500px;
  color: #ffffff;
}

.wheel-composition {
  position: relative;
  min-height: 540px;
}

.intelligence-wheel {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.factory-grid path,
.ai-node-field path,
.machine-icon path,
.machine-icon rect,
.sensor-icon path,
.sensor-icon rect,
.operator-icon path,
.operator-icon circle,
.factory-icon path {
  fill: none;
  stroke: rgba(214, 230, 255, 0.78);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.ai-node-field circle {
  fill: rgba(70, 255, 154, 0.82);
  filter: drop-shadow(0 0 8px rgba(70, 255, 154, 0.45));
}

.loop-ring-muted {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 30;
  vector-effect: non-scaling-stroke;
}

.loop-ring {
  fill: none;
  stroke: url("#loopGradient");
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 92 18;
  filter: url("#loopGlow");
  vector-effect: non-scaling-stroke;
}

.wheel-quadrant {
  fill: url("#wheelQuadrantFill");
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.wheel-quadrant-observe {
  fill-opacity: 0.42;
}

.wheel-quadrant-understand {
  fill-opacity: 0.34;
}

.wheel-quadrant-recommend {
  fill-opacity: 0.38;
}

.wheel-quadrant-learn {
  fill-opacity: 0.3;
}

.wheel-spokes path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.stage-icon path,
.stage-icon circle {
  fill: none;
  stroke: rgba(112, 255, 180, 0.82);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(70, 255, 154, 0.28));
  vector-effect: non-scaling-stroke;
}

.wheel-subtle-icon path,
.wheel-subtle-icon rect,
.wheel-subtle-icon circle {
  stroke: rgba(214, 230, 255, 0.22);
}

.wheel-icon-node > circle {
  fill: rgba(6, 14, 24, 0.74);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  filter: drop-shadow(0 0 18px rgba(70, 255, 154, 0.16));
  vector-effect: non-scaling-stroke;
}

.wheel-icon-node .stage-icon {
  opacity: 0.78;
}

.wheel-callout {
  position: absolute;
  z-index: 6;
  width: min(255px, 36%);
  padding: 16px 18px 18px;
  border-radius: 8px;
  background: rgba(7, 15, 27, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.wheel-callout span {
  display: block;
  margin-bottom: 8px;
  color: #fff55f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.wheel-callout h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.24vw, 1.28rem);
  line-height: 1.05;
}

.wheel-callout p {
  margin: 10px 0 0;
  color: rgba(226, 236, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.44;
}

.wheel-callout-observe {
  top: 10px;
  left: 0;
}

.wheel-callout-understand {
  top: 10px;
  right: 0;
}

.wheel-callout-recommend {
  right: 0;
  bottom: 8px;
}

.wheel-callout-learn {
  bottom: 8px;
  left: 0;
}

.wheel-stage-number,
.wheel-stage-title,
.wheel-stage-copy {
  font-family: inherit;
  text-anchor: middle;
}

.wheel-stage-number {
  fill: #fff55f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.wheel-stage-title {
  fill: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.wheel-stage-copy {
  fill: rgba(226, 236, 255, 0.76);
  font-size: 15px;
  font-weight: 700;
}

.wheel-stage-understand .stage-icon path,
.wheel-stage-understand .stage-icon circle,
.wheel-stage-recommend .stage-icon path,
.wheel-stage-recommend .stage-icon circle {
  stroke: rgba(95, 182, 255, 0.84);
  filter: drop-shadow(0 0 10px rgba(95, 182, 255, 0.25));
}

.wheel-stage-learn .stage-icon path,
.wheel-stage-learn .stage-icon circle {
  stroke: rgba(255, 245, 95, 0.84);
  filter: drop-shadow(0 0 10px rgba(255, 245, 95, 0.18));
}

.wheel-core-vector circle:first-child {
  fill: rgba(6, 14, 24, 0.92);
  stroke: rgba(112, 255, 180, 0.52);
  stroke-width: 1.8;
}

.loop-core-vector circle {
  fill: rgba(8, 17, 30, 0.82);
  stroke: rgba(112, 255, 180, 0.42);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 28px rgba(70, 255, 154, 0.28));
  vector-effect: non-scaling-stroke;
}

.loop-core-vector .loop-core-logo-mark {
  fill: url("#humacCoreLogo");
  opacity: 0.3;
  stroke: none;
  filter: drop-shadow(0 0 18px rgba(255, 111, 0, 0.18));
}

.loop-core-vector path {
  fill: none;
  stroke: rgba(95, 182, 255, 0.42);
  stroke-width: 1.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.loop-core-vector text {
  fill: #ffffff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.loop-core-vector text + text {
  fill: rgba(112, 255, 180, 0.88);
  font-size: 15px;
  font-weight: 800;
}

.loop-badge circle {
  fill: rgba(8, 17, 30, 0.8);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
  filter: drop-shadow(0 0 18px rgba(70, 255, 154, 0.14));
  vector-effect: non-scaling-stroke;
}

.loop-badge text {
  fill: #fff55f;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.loop-badge text + text {
  fill: rgba(255, 255, 255, 0.92);
  font-size: 12px;
}

.loop-stage-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.loop-stage-strip article {
  min-height: 112px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(6, 14, 27, 0.66);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.loop-stage-strip span {
  display: block;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loop-stage-strip p {
  margin: 9px 0 0;
  color: rgba(226, 236, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.42;
}

.loop-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(42%, 236px);
  aspect-ratio: 1;
  border-radius: 999px;
  text-align: center;
  background:
    radial-gradient(
      circle at 35% 22%,
      rgba(255, 255, 255, 0.2),
      transparent 30%
    ),
    linear-gradient(145deg, rgba(70, 255, 154, 0.16), rgba(37, 128, 255, 0.2));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 64px rgba(70, 255, 154, 0.16);
}

.loop-core span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loop-core strong {
  width: min(150px, 74%);
  color: #ffffff;
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  line-height: 1.16;
}

.loop-step {
  position: absolute;
  z-index: 3;
  width: min(230px, 36%);
  padding: 18px 18px 20px;
  border-radius: 8px;
  background: rgba(9, 16, 28, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.loop-step span {
  display: block;
  margin-bottom: 14px;
  color: #fff55f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.loop-step h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: clamp(1.1rem, 1.4vw, 1.38rem);
}

.loop-step p {
  margin: 0;
  color: rgba(226, 236, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.48;
}

.loop-step-observe {
  top: 8%;
  left: 9%;
}

.loop-step-understand {
  top: 16%;
  right: 6%;
}

.loop-step-decide {
  right: 10%;
  bottom: 9%;
}

.loop-step-learn {
  bottom: 16%;
  left: 6%;
}

.solution-list article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.intelligence-engine {
  position: sticky;
  top: 116px;
  display: grid;
  place-items: center;
  min-height: min(72svh, 620px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(18, 155, 255, 0.2),
      transparent 38%
    ),
    radial-gradient(
      circle at 48% 56%,
      rgba(70, 255, 154, 0.11),
      transparent 46%
    );
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.intelligence-engine::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 226, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 226, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, transparent 72%);
  content: "";
}

.engine-machine {
  position: relative;
  z-index: 3;
  width: min(560px, 92%);
  opacity: 0.9;
  filter: drop-shadow(0 0 18px rgba(125, 226, 255, 0.5))
    drop-shadow(0 24px 42px rgba(0, 0, 0, 0.38));
}

.engine-caption {
  position: relative;
  z-index: 3;
  max-width: min(520px, 92%);
  margin: -22px auto 0;
  color: #fff4a8;
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-style: italic;
  font-weight: 520;
  line-height: 1.55;
  text-align: center;
  text-shadow:
    0 0 18px rgba(255, 247, 26, 0.18),
    0 0 30px rgba(70, 255, 154, 0.1);
}

.engine-path {
  position: absolute;
  left: 18%;
  right: 12%;
  z-index: 2;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(125, 226, 255, 0.72),
    rgba(70, 255, 154, 0.52),
    transparent
  );
  box-shadow: 0 0 18px rgba(125, 226, 255, 0.44);
}

.engine-path-top {
  top: 34%;
}

.engine-path-bottom {
  bottom: 32%;
}

.engine-stage {
  position: relative;
  z-index: 2;
  grid-column: 3;
  display: grid;
  gap: 52px;
  min-height: auto;
  padding-left: 30px;
  min-width: 0;
}

.engine-stage::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 1px;
  background-image: linear-gradient(
    to bottom,
    rgba(125, 226, 255, 0.72) 0 8px,
    transparent 8px 18px
  );
  filter: drop-shadow(0 0 8px rgba(125, 226, 255, 0.46));
  content: "";
}

.engine-node {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #f6fbff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.engine-node.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.engine-node::before {
  position: absolute;
  top: 13px;
  left: -34px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(125, 226, 255, 0.82);
  border-radius: 50%;
  background: #0d1118;
  box-shadow:
    0 0 0 5px rgba(70, 255, 154, 0.08),
    0 0 18px rgba(125, 226, 255, 0.72);
  content: "";
}

.engine-node::after {
  position: absolute;
  top: 18px;
  left: -22px;
  z-index: 1;
  width: 18px;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(125, 226, 255, 0.72) 0 5px,
    transparent 5px 9px
  );
  content: "";
}

.engine-node span {
  display: block;
  margin-bottom: 8px;
  color: #fff71a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 0.9;
}

.engine-node-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.engine-node-title span {
  margin-bottom: 0;
}

.engine-node-title h3 {
  margin-bottom: 0;
}

.engine-node h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.engine-node p {
  margin: 0;
  color: rgba(236, 248, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.35;
}

.engine-node-capture,
.engine-node-learn,
.engine-node-apply,
.engine-node-perform {
  width: min(420px, calc(100% - 30px));
}

.engine-detail-box {
  display: grid;
  gap: 16px;
  width: min(420px, 100%);
  padding: 18px;
  border: 1px dotted rgba(125, 226, 255, 0.58);
  border-radius: 8px;
  background: rgba(8, 18, 32, 0.36);
}

.engine-detail-heading {
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
  margin-bottom: 12px;
  white-space: nowrap;
}

.engine-detail-box p {
  padding-bottom: 14px;
  border-bottom: 1px dotted rgba(125, 226, 255, 0.32);
}

.engine-detail-box strong {
  color: #ffffff;
  font-weight: 850;
}

.engine-detail-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(236, 248, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.35;
}

.engine-detail-box li::marker {
  color: #46ff9a;
}

.engine-node:nth-child(odd) {
  transform: none;
}

.engine-node:nth-child(even) {
  transform: none;
}

.engine-node:nth-child(odd).is-active,
.engine-node:nth-child(even).is-active {
  transform: none;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.split-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(4, 6, 10, 0.62),
      rgba(4, 6, 10, 0.42) 45%,
      rgba(4, 6, 10, 0.72)
    ),
    linear-gradient(
      90deg,
      rgba(4, 6, 10, 0.72),
      rgba(4, 6, 10, 0.22) 48%,
      rgba(4, 6, 10, 0.66)
    ),
    url("assets/built-for-background.png") center / cover no-repeat;
  content: "";
  opacity: 0.96;
  filter: saturate(0.8) contrast(1.08) brightness(1.18);
}

.split-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(70, 255, 154, 0.06),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(13, 17, 24, 0.04), rgba(13, 17, 24, 0.2));
  content: "";
}

.solutions-heading,
.solution-list {
  position: relative;
  z-index: 1;
}

.solutions-heading {
  max-width: min(1060px, 100%);
  margin-inline: auto;
  text-align: center;
}

.solutions-heading .eyebrow {
  justify-content: center;
  color: rgba(255, 247, 26, 0.9);
}

.solutions-heading h2 {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.58);
}

.solutions-heading h2 span {
  display: block;
}

.solutions-subtext {
  max-width: 850px;
  margin: 18px auto 0;
  color: rgba(232, 237, 243, 0.84);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 450;
  line-height: 1.55;
  text-align: center;
}

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

.solution-list article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: center;
  gap: 10px;
  min-height: 340px;
  padding: 20px 18px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(6, 10, 22, 0.52);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(16px);
}

.solution-list h3 {
  min-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.14rem, 1.34vw, 1.34rem);
  line-height: 1.16;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.solution-list article > p:not(.solution-focus) {
  margin: 6px 0 0;
  color: rgba(213, 219, 229, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.segment-panels {
  display: grid;
  gap: 10px;
  align-self: stretch;
  margin-top: 4px;
}

.segment-panel {
  display: grid;
  align-content: start;
  min-height: 120px;
  padding: 15px 15px 16px;
  border-radius: 8px;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.segment-panel-pain {
  background:
    linear-gradient(
      135deg,
      rgba(255, 245, 95, 0.11),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(6, 10, 22, 0.52);
  border-left: 2px solid rgba(255, 245, 95, 0.58);
}

.segment-panel-help {
  background:
    linear-gradient(
      135deg,
      rgba(70, 255, 154, 0.11),
      rgba(95, 182, 255, 0.055)
    ),
    rgba(6, 10, 22, 0.52);
  border-left: 2px solid rgba(70, 255, 154, 0.58);
}

.segment-panel span {
  display: block;
  margin-bottom: 9px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.segment-panel-pain span {
  color: rgba(255, 245, 95, 0.92);
}

.segment-panel-help span {
  color: rgba(70, 255, 154, 0.9);
}

.segment-panel p {
  margin: 0;
  color: rgba(229, 235, 247, 0.78);
  font-size: 0.94rem;
  line-height: 1.38;
}

.solution-focus {
  min-height: 0;
  margin: 0;
  color: rgba(255, 247, 26, 0.76);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.solution-focus-nowrap {
  white-space: nowrap;
}

.trust-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 10px max(20px, calc((100vw - var(--max-width)) / 2)) 32px;
  background:
    radial-gradient(circle at 75% 38%, rgba(91, 70, 255, 0.2), transparent 36%),
    radial-gradient(
      circle at 58% 62%,
      rgba(70, 255, 226, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #080b12 0%, #10122e 48%, #080b12 100%);
  color: var(--text);
  isolation: isolate;
}

.trust-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 226, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 226, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 16%,
    #000 84%,
    transparent
  );
  content: "";
}

.trust-copy,
.trust-grid,
.trust-closing,
.trust-visual {
  position: relative;
  z-index: 1;
}

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

.trust-copy h2 {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2.35rem, 4.8vw, 5.9rem);
  line-height: 0.96;
}

.trust-copy > p:last-child {
  max-width: 580px;
  margin-top: 24px;
  color: rgba(213, 219, 229, 0.78);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.62;
}

.trust-visual {
  position: absolute;
  top: 76px;
  right: max(20px, calc((100vw - var(--max-width)) / 2));
  width: min(34vw, 430px);
  opacity: 0.36;
  filter: drop-shadow(0 0 42px rgba(70, 255, 226, 0.22)) saturate(0.9);
}

.trust-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-grid {
  grid-column: 2;
  display: grid;
  align-self: end;
  gap: 14px;
  padding-top: 174px;
}

.trust-grid article {
  display: grid;
  gap: 9px;
  padding: 22px 24px;
  border: 1px solid rgba(125, 226, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(6, 10, 22, 0.52);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.trust-grid span {
  color: #fff71a;
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.1rem, 1.38vw, 1.5rem);
}

.trust-grid p {
  margin: 0;
  color: rgba(213, 219, 229, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.trust-closing {
  grid-column: 2;
  max-width: 680px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(236, 244, 255, 0.82);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: none;
  backdrop-filter: none;
}

.company-page > section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  scroll-snap-align: start;
  scroll-margin-top: 76px;
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 0.38fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  min-height: calc(100svh - 76px);
  padding-top: 118px;
  padding-bottom: 110px;
  background:
    radial-gradient(
      circle at 76% 28%,
      rgba(70, 255, 154, 0.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 70%,
      rgba(80, 176, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #080b12 0%, #10122e 52%, #080b12 100%);
  isolation: isolate;
}

.company-hero::before,
.company-beliefs::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 226, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 226, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 16%,
    #000 84%,
    transparent
  );
  content: "";
}

.company-hero-copy,
.company-mission > *,
.company-beliefs-heading,
.company-belief-grid,
.company-proof > * {
  position: relative;
  z-index: 1;
}

.company-hero h1 {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2.4rem, 4.6vw, 5.45rem);
  line-height: 0.96;
}

.company-hero-copy > p:last-child {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(213, 219, 229, 0.78);
  font-size: clamp(1rem, 1.14vw, 1.18rem);
  line-height: 1.64;
}

.company-hero-photo {
  position: absolute;
  top: 92px;
  right: 0;
  bottom: 42px;
  z-index: 0;
  justify-self: auto;
  overflow: visible;
  width: 46vw;
  max-width: none;
  min-width: 360px;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.42;
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.7) 10%,
      #000 20%,
      #000 86%,
      rgba(0, 0, 0, 0.72) 94%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.72) 8%,
      #000 16%,
      #000 86%,
      rgba(0, 0, 0, 0.72) 94%,
      transparent 100%
    );
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.7) 10%,
      #000 20%,
      #000 86%,
      rgba(0, 0, 0, 0.72) 94%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.72) 8%,
      #000 16%,
      #000 86%,
      rgba(0, 0, 0, 0.72) 94%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
}

.company-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.86) contrast(1.04) brightness(0.92);
}

.company-belief-grid article {
  display: grid;
  gap: 10px;
  padding: 24px 26px;
  border: 1px solid rgba(125, 226, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(6, 10, 22, 0.52);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.company-belief-grid span {
  color: #fff71a;
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-belief-grid h3 {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.38vw, 1.5rem);
  line-height: 1.16;
}

.company-belief-grid p {
  margin: 0;
  color: rgba(213, 219, 229, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.company-mission {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  min-height: auto;
  padding-top: 110px;
  padding-bottom: 110px;
  background: linear-gradient(180deg, #0d1118 0%, #0b1322 52%, #0d1118 100%);
}

.company-mission h2,
.company-beliefs h2,
.company-proof h2 {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2.25rem, 4.4vw, 5.3rem);
  line-height: 0.98;
}

.company-mission-copy {
  display: grid;
  gap: 20px;
  color: rgba(213, 219, 229, 0.78);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.7;
}

.company-mission-copy p {
  margin: 0;
}

.ai-stack-section {
  grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  background:
    radial-gradient(
      circle at 72% 22%,
      rgba(255, 130, 40, 0.14),
      transparent 32%
    ),
    radial-gradient(
      circle at 24% 74%,
      rgba(50, 150, 255, 0.16),
      transparent 36%
    ),
    linear-gradient(180deg, #0d1118 0%, #0b1322 52%, #0d1118 100%);
}

.ai-stack-intro {
  position: relative;
}

.ai-stack-intro h2 {
  max-width: 620px;
  font-size: clamp(2.35rem, 4vw, 4.75rem);
}

.ai-stack-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(213, 219, 229, 0.78);
  font-size: clamp(0.98rem, 1.08vw, 1.14rem);
  line-height: 1.72;
}

.ai-stack-panel {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(5, 12, 24, 0.48);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.ai-stack-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(69, 172, 255, 0.24), transparent),
    linear-gradient(180deg, transparent, rgba(255, 143, 42, 0.16), transparent);
  filter: blur(34px);
}

.ai-stack-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.ai-stack-grid article {
  position: relative;
  min-height: 238px;
  padding: 22px;
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(9, 16, 32, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 46px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.ai-stack-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(69, 172, 255, 0.26),
    transparent 62%
  );
}

.ai-stack-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 234, 63, 0.11);
  color: #fff06a;
  font-size: 0.82rem;
  font-weight: 820;
  box-shadow: 0 0 34px rgba(255, 208, 43, 0.18);
}

.ai-stack-grid h3 {
  max-width: 320px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.04rem, 1.2vw, 1.3rem);
  line-height: 1.18;
}

.ai-stack-grid p {
  margin: 0;
  color: rgba(213, 219, 229, 0.74);
  font-size: clamp(0.84rem, 0.92vw, 0.98rem);
  line-height: 1.62;
}

.company-about-section {
  grid-template-columns: minmax(260px, 0.9fr) minmax(560px, 2fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}

.company-about-logo {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 44vh, 440px);
}

.company-about-logo img {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.42));
}

.company-about-content {
  display: grid;
  align-content: center;
  gap: 26px;
  min-height: clamp(420px, 62vh, 680px);
}

.company-about-content > .eyebrow {
  margin: 0;
}

.company-about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 56px);
  align-items: start;
}

.company-about-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  color: rgba(213, 219, 229, 0.78);
  font-size: clamp(0.9rem, 0.94vw, 1.02rem);
  line-height: 1.7;
  text-align: justify;
}

.company-about-copy p {
  margin: 0;
}

.company-beliefs {
  min-height: auto;
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    radial-gradient(
      circle at 72% 22%,
      rgba(70, 255, 154, 0.1),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 70%,
      rgba(80, 176, 255, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #0d1118 0%, #0b1322 52%, #0d1118 100%);
  isolation: isolate;
}

.company-beliefs-heading {
  max-width: 920px;
  margin-bottom: 44px;
}

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

.company-proof {
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 110px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 11, 18, 0.94), rgba(16, 18, 46, 0.96)),
    url("assets/built-for-background.png") center / cover no-repeat;
}

.company-proof h2 {
  margin-inline: auto;
}

.company-proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max-width));
  margin: 42px auto 0;
}

.company-proof-list span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(6, 10, 22, 0.52);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 760;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.ai-reality-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(28px, 4.5vw, 70px);
  align-items: center;
  text-align: left;
}

.ai-reality-heading h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 3.15vw, 3.8rem);
  line-height: 1.02;
}

.ai-reality-visual {
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: rgba(6, 12, 24, 0.48);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ai-reality-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.96) contrast(1.03) brightness(0.94);
}

.ai-reality-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(12px, 2vw, 26px);
}

.ai-reality-list span {
  min-height: 96px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
}

.company-blank-section {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 76px);
}

.company-blank-section h2 {
  max-width: 760px;
}

.company-culture-section {
  grid-template-columns: minmax(0, 2.75fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
}

.company-culture-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 58vh, 620px);
  margin: 0;
  border-radius: 14px;
  background: rgba(7, 11, 20, 0.34);
  opacity: 0.74;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.46);
  mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      #000 1.5%,
      #000 98.5%,
      rgba(0, 0, 0, 0.62) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.66) 0%,
      #000 1.8%,
      #000 98.2%,
      rgba(0, 0, 0, 0.66) 100%
    );
  mask-composite: intersect;
}

.company-culture-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.92) contrast(1.03) brightness(0.94);
}

.company-culture-copy {
  justify-self: end;
  max-width: 440px;
}

.company-culture-copy p:not(.eyebrow) {
  margin: 0 0 16px;
  color: rgba(213, 219, 229, 0.78);
  font-family: inherit;
  font-size: clamp(0.9rem, 0.94vw, 1.02rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  letter-spacing: 0;
  text-shadow: none;
}

.company-culture-copy p:last-child {
  margin-bottom: 0;
}

.company-location-section {
  grid-template-columns: minmax(420px, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  text-align: left;
}

.company-map-card {
  overflow: hidden;
  min-height: clamp(360px, 58vh, 560px);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(8, 13, 25, 0.58);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.company-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(0.9) contrast(1.04);
}

.company-location-copy {
  max-width: 520px;
  padding-top: 4px;
}

.company-location-copy .eyebrow {
  margin-bottom: clamp(52px, 8vh, 88px);
}

.company-location-country {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(1.08rem, 1.35vw, 1.4rem);
  font-weight: 760;
  letter-spacing: 0;
}

.company-location-copy address {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: clamp(0.82rem, 0.92vw, 1rem);
  font-weight: 420;
  line-height: 1.62;
  letter-spacing: 0;
}

.company-location-copy strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.96rem, 1.04vw, 1.15rem);
  font-weight: 780;
  letter-spacing: 0.02em;
}

.cta-section {
  text-align: center;
}

.cta-section h2 {
  margin-inline: auto;
  max-width: 720px;
}

.talk-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 76px);
  padding: clamp(90px, 14svh, 150px)
    max(20px, calc((100vw - var(--max-width)) / 2));
  overflow: hidden;
  text-align: left;
  background:
    radial-gradient(
      circle at 82% 28%,
      rgba(70, 255, 154, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 82%,
      rgba(48, 139, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #0d1118 0%, #080c14 100%);
}

.talk-section::before {
  content: "";
  position: absolute;
  inset: 10% max(20px, calc((100vw - var(--max-width)) / 2));
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.7;
}

.talk-section::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - var(--max-width)) / 2));
  top: 50%;
  width: clamp(260px, 34vw, 560px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    linear-gradient(rgba(8, 12, 20, 0.22), rgba(8, 12, 20, 0.22)),
    url("assets/humac-h-symbol.png") center / 46% auto no-repeat,
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08),
      rgba(70, 255, 154, 0.035) 42%,
      transparent 68%
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 100px rgba(70, 255, 154, 0.08);
  opacity: 0.36;
  pointer-events: none;
}

.talk-copy,
.talk-actions {
  position: relative;
  z-index: 1;
}

.talk-copy {
  max-width: 980px;
}

.talk-copy h2 {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2rem, 3.8vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.talk-copy > p:last-child {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(213, 219, 229, 0.78);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.68;
}

.talk-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  width: min(100%, 250px);
  min-width: 0;
}

.talk-actions .button {
  justify-content: center;
  width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.talk-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.talk-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.talk-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(70, 255, 154, 0.42);
  background: rgba(70, 255, 154, 0.08);
  color: var(--accent);
}

.talk-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.video-modal,
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal[data-open],
.contact-modal[data-open] {
  display: flex;
}

.modal-backdrop,
.contact-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.video-dialog,
.contact-dialog {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(980px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #080a0f;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.55);
}

.video-dialog-bar,
.contact-dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft);
  font-weight: 750;
}

.contact-dialog {
  width: min(820px, 100%);
  max-height: min(86vh, 780px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    ),
    #080d16;
}

.contact-dialog-bar {
  align-items: flex-start;
}

.contact-dialog-bar span {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.02rem;
}

.contact-dialog-bar p {
  margin: 5px 0 0;
  color: rgba(213, 219, 229, 0.68);
  font-size: 0.86rem;
  font-weight: 450;
}

.modal-close,
.contact-close {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  cursor: pointer;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-height: calc(86vh - 76px);
  overflow: auto;
  padding: 20px;
}

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

.contact-form span {
  color: rgba(213, 219, 229, 0.78);
  font-size: 0.78rem;
  font-weight: 720;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.94rem;
  outline: 0;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input {
  min-height: 46px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(70, 255, 154, 0.5);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(70, 255, 154, 0.08);
}

.contact-form-wide,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-submit {
  justify-self: end;
  min-width: 160px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.resource-page {
  background: #f7f5ef;
  color: #0c1220;
}

.resource-page::before {
  display: none;
}

.resource-page .site-header {
  background: rgba(250, 249, 244, 0.9);
  border-bottom: 1px solid rgba(12, 18, 32, 0.1);
  backdrop-filter: blur(18px);
}

.resource-page .site-header[data-scrolled] {
  background: rgba(250, 249, 244, 0.96);
}

.resource-page .brand img {
  filter: invert(1) saturate(0.2) brightness(0.72);
}

.resource-page .site-nav {
  color: #111827;
}

.resource-page .site-nav > a:hover,
.resource-page .nav-item:hover > a,
.resource-page .text-link:hover {
  color: #0b6b42;
}

.resource-page .nav-action {
  color: #101827;
}

.resource-page .nav-action-ghost {
  border-color: rgba(12, 18, 32, 0.14);
  background: rgba(12, 18, 32, 0.035);
}

.resource-page .mega-menu {
  border-color: rgba(12, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(12, 18, 32, 0.12);
}

.resource-page .mega-label,
.resource-page .mega-menu span {
  color: rgba(12, 18, 32, 0.56);
}

.resource-page .mega-menu a {
  border-top-color: rgba(12, 18, 32, 0.1);
}

.resource-page .mega-menu strong {
  color: #101827;
}

.resource-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 12vh, 132px) 0 clamp(70px, 11vh, 120px);
}

.blog-main {
  padding-top: 0;
}

.resource-hero {
  max-width: 920px;
  padding-top: 28px;
}

.blog-main .resource-hero {
  padding-top: 0;
}

.resource-kicker {
  margin: 0 0 28px;
  color: #0b6b42;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resource-hero h1 {
  margin: 0;
  color: #101827;
  font-size: clamp(3rem, 7.6vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.resource-hero > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(12, 18, 32, 0.66);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.62;
}

.blog-hero {
  position: relative;
  display: grid;
  align-items: end;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(520px, 72vh, 760px);
  padding: clamp(34px, 6vw, 78px) max(20px, calc((100vw - 1120px) / 2));
  overflow: hidden;
  border-radius: 0;
  background: #07111c;
  box-shadow: 0 34px 100px rgba(12, 18, 32, 0.16);
  max-width: none;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 11, 20, 0.92) 0%,
      rgba(5, 11, 20, 0.72) 42%,
      rgba(5, 11, 20, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 11, 20, 0.16) 0%,
      rgba(5, 11, 20, 0.72) 100%
    ),
    url("assets/blog-smart-manufacturing-shopfloor.png") center / cover
      no-repeat;
}

.blog-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.blog-hero .resource-kicker {
  color: #46ff9a;
}

.blog-hero h1 {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2.3rem, 5.1vw, 5.8rem);
  line-height: 0.96;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
}

.blog-hero-copy > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.14vw, 1.18rem);
  line-height: 1.66;
}

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

.blog-cards-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(70px, 10vw, 128px) max(20px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(
      180deg,
      rgba(247, 245, 239, 0.58),
      rgba(247, 245, 239, 0.68)
    ),
    url("assets/blogpage-background.png") center / cover no-repeat;
}

.blog-cards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(70, 255, 154, 0.025),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(36, 122, 255, 0.025),
      transparent 30%
    );
}

.blog-cards-inner {
  position: relative;
  z-index: 1;
}

.blog-feature {
  margin-top: 0;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(12, 18, 32, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 28px 90px rgba(12, 18, 32, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.blog-meta {
  margin: 0 0 16px;
  color: rgba(12, 18, 32, 0.46);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-feature-card h2,
.blog-grid h2 {
  margin: 0;
  color: #101827;
  letter-spacing: 0;
}

.blog-feature-card h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.blog-feature-card > p {
  margin: 0;
  color: rgba(12, 18, 32, 0.66);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.66;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 5vw, 58px);
}

.blog-grid article {
  min-height: 300px;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(12, 18, 32, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(12, 18, 32, 0.07);
  backdrop-filter: blur(10px);
}

.blog-grid h2 {
  max-width: 480px;
  font-size: clamp(1.12rem, 1.42vw, 1.55rem);
  line-height: 1.12;
}

.blog-grid article > p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(12, 18, 32, 0.62);
  font-size: 0.98rem;
  line-height: 1.68;
}

.resource-blank-hero {
  min-height: calc(100svh - 220px);
  display: grid;
  align-content: center;
}

.pricing-main {
  width: min(1180px, calc(100% - 40px));
  padding-top: 0;
}

.pricing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
  width: 100vw;
  min-height: clamp(520px, 72vh, 760px);
  margin-left: calc(50% - 50vw);
  padding: clamp(54px, 8vw, 92px) max(20px, calc((100vw - 1180px) / 2));
  max-width: none;
  overflow: hidden;
  border-bottom: 1px solid rgba(12, 18, 32, 0.1);
  background:
    linear-gradient(
      90deg,
      rgba(247, 245, 239, 0.94) 0%,
      rgba(247, 245, 239, 0.78) 48%,
      rgba(247, 245, 239, 0.46) 100%
    ),
    linear-gradient(180deg, rgba(247, 245, 239, 0.2), rgba(247, 245, 239, 0.8)),
    url("assets/pricing-background.png") center / cover no-repeat;
}

.pricing-hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5.2vw, 5.45rem);
}

.pricing-hero > * {
  position: relative;
  z-index: 1;
}

.pricing-hero > div > p:last-child {
  color: rgba(8, 20, 35, 0.82);
  font-weight: 560;
}

.pricing-note {
  padding: 24px;
  border: 1px solid rgba(12, 18, 32, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 60px rgba(12, 18, 32, 0.08);
}

.pricing-note span,
.pricing-plan-label {
  color: #0b6b42;
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-note p {
  margin: 18px 0 0;
  color: rgba(12, 18, 32, 0.68);
  font-size: 1rem;
  line-height: 1.58;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 5vw, 62px);
}

.pricing-plans article {
  display: grid;
  align-content: start;
  min-height: 470px;
  padding: clamp(20px, 2.35vw, 28px);
  border: 1px solid rgba(12, 18, 32, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(12, 18, 32, 0.08);
}

.pricing-plans .pricing-featured-card {
  background:
    linear-gradient(
      180deg,
      rgba(242, 190, 42, 0.34),
      rgba(255, 246, 215, 0.86) 42%,
      rgba(255, 255, 255, 0.94)
    ),
    #ffffff;
  border-color: rgba(205, 145, 18, 0.5);
  box-shadow:
    0 30px 96px rgba(156, 112, 22, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-10px);
}

.pricing-badge {
  justify-self: start;
  margin-bottom: 12px;
  padding: 7px 11px;
  border: 1px solid rgba(154, 106, 8, 0.22);
  border-radius: 999px;
  background: rgba(255, 231, 134, 0.62);
  color: #7f5604;
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.02em;
}

.pricing-featured-card .pricing-plan-label {
  color: #9a6a08;
}

.pricing-plans h2 {
  margin: 14px 0 0;
  color: #101827;
  font-size: clamp(1.9rem, 3.15vw, 3.25rem);
  line-height: 1;
}

.pricing-plan-copy {
  margin: 18px 0 0;
  color: rgba(12, 18, 32, 0.66);
  font-size: 0.9rem;
  line-height: 1.58;
}

.pricing-card-sections {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.pricing-card-sections > div {
  padding-top: 16px;
  border-top: 1px solid rgba(12, 18, 32, 0.1);
}

.pricing-card-sections h3 {
  margin: 0;
  color: rgba(12, 18, 32, 0.82);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plans ul {
  display: grid;
  gap: 9px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-plans li {
  position: relative;
  padding-left: 19px;
  color: rgba(12, 18, 32, 0.72);
  font-size: 0.84rem;
  line-height: 1.42;
}

.pricing-plans li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0b6b42;
}

.pricing-link {
  align-self: end;
  margin-top: 28px;
  color: #0b6b42;
  font-size: 0.9rem;
  font-weight: 820;
}

.pricing-factors {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(58px, 8vw, 108px);
  padding: clamp(34px, 5vw, 58px) 0;
  border-top: 1px solid rgba(12, 18, 32, 0.1);
  border-bottom: 1px solid rgba(12, 18, 32, 0.1);
}

.pricing-factors h2,
.pricing-cta h2 {
  margin: 0;
  color: #101827;
  font-size: clamp(2rem, 3.8vw, 4.6rem);
  line-height: 0.98;
}

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

.pricing-factor-grid span {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(12, 18, 32, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(12, 18, 32, 0.72);
  font-weight: 680;
  line-height: 1.42;
}

.pricing-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-top: clamp(54px, 8vw, 100px);
  padding: clamp(42px, 7vw, 78px);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(70, 255, 154, 0.18),
      transparent 42%
    ),
    #101827;
}

.pricing-cta .resource-kicker {
  color: #46ff9a;
}

.pricing-cta h2 {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.95);
}

.pricing-cta .button {
  margin-top: 34px;
}

.resource-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid rgba(12, 18, 32, 0.1);
  color: rgba(12, 18, 32, 0.56);
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .nav-shell {
    flex-wrap: wrap;
    min-height: 70px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-panel {
    display: none;
    width: 100%;
    flex-basis: 100%;
    padding: 12px 0 18px;
    border-top: 1px solid var(--line);
  }

  .site-header[data-open] .menu-panel {
    display: block;
  }

  .site-nav,
  .nav-actions {
    display: grid;
    justify-content: stretch;
    gap: 6px;
  }

  .site-nav > a,
  .nav-item > a,
  .text-link,
  .nav-action {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding-inline: 14px;
    border-radius: 8px;
  }

  .mega-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 6px 0 12px;
    padding: 16px;
    border-radius: 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-menu:hover .mega-menu,
  .has-menu:focus-within .mega-menu {
    display: grid;
  }

  .nav-actions {
    margin-top: 8px;
  }

  .split-section,
  .problem-intro {
    grid-template-columns: 1fr;
  }

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

  .solutions-heading h2 span {
    white-space: normal;
  }

  .solution-focus {
    white-space: normal;
  }

  .platform-heading {
    max-width: 760px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 38px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .problem-intro {
    row-gap: 18px;
  }

  .approach-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  }

  .approach-copy {
    width: min(680px, 100%);
    min-height: auto;
  }

  .approach-vision {
    width: min(860px, 100%);
    margin-left: auto;
    min-height: auto;
    padding-top: 44px;
  }

  .approach-vision-image {
    top: 0;
    right: 18px;
    width: min(46vw, 360px);
  }

  .solution-subsections {
    grid-template-columns: 1fr;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-column: auto;
    padding-top: 36px;
  }

  .trust-closing {
    grid-column: auto;
    max-width: none;
  }

  .trust-visual {
    top: 88px;
    right: 28px;
    width: min(44vw, 360px);
  }

  .talk-section {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .talk-actions {
    justify-items: start;
    width: min(100%, 280px);
  }

  .talk-socials {
    justify-content: flex-start;
  }

  .company-hero,
  .company-mission,
  .ai-stack-section,
  .ai-reality-section,
  .company-about-section,
  .company-culture-section,
  .company-location-section {
    grid-template-columns: 1fr;
  }

  .company-hero-photo {
    width: 62vw;
    min-width: 420px;
    opacity: 0.42;
  }

  .company-about-logo,
  .company-about-content {
    min-height: auto;
  }

  .company-about-columns {
    grid-template-columns: 1fr;
  }

  .ai-stack-grid {
    grid-template-columns: 1fr;
  }

  .company-belief-grid,
  .ai-reality-list,
  .company-proof-list {
    grid-template-columns: 1fr;
  }

  .company-culture-image {
    width: 100%;
    min-height: 420px;
  }

  .company-culture-copy {
    justify-self: start;
    max-width: 640px;
  }

  .company-location-copy {
    max-width: 680px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: y proximity;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .hero-visual {
    justify-self: stretch;
    margin-top: 38px;
  }

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

  .blog-feature-card,
  .blog-hero,
  .blog-grid,
  .pricing-hero,
  .pricing-factors {
    grid-template-columns: 1fr;
  }

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

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

  .pricing-plans .pricing-featured-card {
    transform: none;
  }

  .pricing-plans article {
    min-height: auto;
  }

  .platform-scroll {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .platform-sticky {
    position: relative;
    top: auto;
    grid-column: auto;
    grid-template-columns: 1fr;
    height: auto;
    gap: 36px;
  }

  .platform-loop {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .platform-loop .platform-heading {
    max-width: 820px;
  }

  .platform-loop .platform-heading h2,
  .platform-loop .platform-heading > p {
    max-width: 780px;
  }

  .platform-loop-visual {
    min-height: 600px;
  }

  .loop-diagram {
    min-height: 560px;
  }

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

  .wheel-composition {
    min-height: 660px;
  }

  .intelligence-wheel {
    top: 76px;
    bottom: 76px;
  }

  .wheel-callout {
    width: min(245px, 39%);
  }

  .loop-flow {
    grid-template-columns: repeat(4, max-content);
  }

  .intelligence-engine {
    min-height: 460px;
  }

  .engine-stage {
    display: grid;
    gap: 28px;
    min-height: auto;
    padding: 0 0 0 28px;
  }

  .engine-stage::before {
    top: 0;
    bottom: 0;
  }

  .engine-stage::after,
  .engine-scroll-steps {
    display: none;
  }

  .engine-node,
  .engine-node:nth-child(odd),
  .engine-node:nth-child(even) {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 520px);
    min-height: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .problem-content {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .problem-list {
    min-height: auto;
    max-width: none;
    padding-top: 0;
  }

  .problem-list h3 {
    position: static;
    margin-bottom: 18px;
    text-align: left;
  }

  .problem-list ul {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .problem-list li,
  .problem-list li:nth-child(1),
  .problem-list li:nth-child(2),
  .problem-list li:nth-child(3),
  .problem-list li:nth-child(4) {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    transform: none;
  }

  .problem-section::before {
    width: 100%;
    /* height: 32%; */
    opacity: 0.28;
    mask-image:
      linear-gradient(
        270deg,
        transparent 0%,
        rgba(0, 0, 0, 0.22) 24%,
        #000 62%,
        #000 100%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        #000 18%,
        #000 82%,
        transparent 100%
      );
    -webkit-mask-image:
      linear-gradient(
        270deg,
        transparent 0%,
        rgba(0, 0, 0, 0.22) 24%,
        #000 62%,
        #000 100%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        #000 18%,
        #000 82%,
        transparent 100%
      );
  }
  /* 
  .problem-closing {
    white-space: normal;
  } */

  .approach-section {
    min-height: auto;
  }

  .approach-vision {
    min-height: auto;
    margin-left: 0;
    padding: 28px 0 0;
  }

  .approach-vision-lines {
    gap: 16px;
    padding: 0;
  }

  .approach-vision-lines article {
    width: min(100%, 560px);
    transform: none;
  }

  .approach-vision-image {
    top: 24px;
    right: -28px;
    width: 340px;
    margin: 0;
    opacity: 0.26;
  }

  .approach-vision-image img {
    min-height: 0;
  }

  .solution-layer-section {
    padding-top: 96px;
    padding-bottom: 92px;
  }

  .trust-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .trust-visual {
    top: 128px;
    right: -28px;
    width: 300px;
    opacity: 0.22;
  }

  .solution-subsections article {
    min-height: auto;
  }

  .solution-subsections p {
    width: min(100%, 420px);
  }

  .solution-subsections p span {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .nav-action {
    display: none;
  }

  .brand img {
    width: 132px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero {
    width: min(100% - 28px, var(--max-width));
    padding-top: 42px;
  }

  .split-section {
    width: 100%;
  }

  .solution-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 30px;
  }

  .intelligence-view {
    grid-template-columns: 1fr;
  }

  .machine-map {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-stack article {
    min-height: 92px;
  }

  .panel-bar > span:last-child {
    display: none;
  }

  .signal-stack {
    display: none;
  }

  .problem-section {
    width: 100%;
    padding: 70px 14px 132px;
  }

  .approach-section {
    width: 100%;
    padding: 70px 14px 96px;
  }

  .approach-vision {
    min-height: 300px;
  }

  .platform-section {
    width: 100%;
    padding: 76px 14px 64px;
  }

  .platform-loop .platform-heading h2 {
    font-size: clamp(2.1rem, 12vw, 3.25rem);
  }

  .platform-loop-visual {
    min-height: auto;
  }

  .loop-diagram {
    min-height: auto;
  }

  .loop-vector {
    position: relative;
    min-height: 300px;
  }

  .wheel-composition {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .intelligence-wheel {
    position: relative;
    inset: auto;
    height: auto;
  }

  .wheel-callout {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .loop-stage-strip {
    grid-template-columns: 1fr;
  }

  .loop-stage-strip article {
    min-height: auto;
  }

  .loop-infographic-header {
    padding: 18px 14px;
  }

  .loop-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .loop-flow i {
    width: 1px;
    height: 18px;
    justify-self: center;
  }

  .loop-flow i::after {
    top: auto;
    right: 50%;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  .loop-infographic-grid {
    grid-template-columns: 1fr;
  }

  .loop-info-card {
    min-height: auto;
    padding: 18px;
  }

  .platform-heading h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    white-space: normal;
  }

  .engine-path {
    display: none;
  }

  .intelligence-engine {
    min-height: 340px;
  }

  .engine-machine {
    width: min(430px, 94%);
  }

  .problem-stats {
    min-height: 520px;
  }

  .problem-list {
    min-height: auto;
  }

  .problem-list li {
    font-size: 0.92rem;
  }

  .problem-stat {
    width: min(100% - 24px, 360px);
    padding: 12px 14px;
    transform: translateX(12px);
  }

  .problem-stat strong {
    font-size: 1.55rem;
  }

  .problem-stat p {
    font-size: 0.86rem;
  }

  .problem-stat-one {
    top: 10%;
  }

  .problem-stat-two {
    top: 34%;
  }

  .problem-stat-three {
    top: 58%;
  }

  .problem-stat-four {
    top: 81%;
  }

  .problem-closing {
    font-size: 1.22rem;
  }

  .talk-section {
    min-height: auto;
    padding-inline: 14px;
  }

  .talk-actions {
    width: 100%;
  }

  .talk-actions .button {
    padding-inline: 14px;
  }

  .talk-socials {
    justify-content: center;
  }

  .resource-main,
  .resource-footer {
    width: min(100% - 28px, 1120px);
  }

  .resource-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

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

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

  .blog-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .blog-grid article {
    min-height: auto;
  }

  .resource-footer {
    flex-direction: column;
  }

  .talk-section::after {
    right: -90px;
    top: 28%;
    width: 300px;
    opacity: 0.22;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    justify-self: stretch;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .orbit,
  .transition-track {
    animation: none;
  }

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