:root {
  --ink: #101820;
  --ink-2: #273543;
  --muted: #66727f;
  --paper: #f7f9fb;
  --paper-2: #edf2f5;
  --panel: #ffffff;
  --line: #d9e1e6;
  --deep: #06111d;
  --deep-2: #0b1724;
  --deep-3: #101820;
  --cyan: #1bd7cf;
  --cyan-soft: #9ff8ed;
  --blue: #4b8dff;
  --violet: #8f83ef;
  --green: #54d59b;
  --silver: #dce8ef;
  --radius: 8px;
  --header-height: 72px;
  --content-width: 1320px;
  --hero-copy-width: 620px;
  --motion-fast: 180ms;
  --motion-base: 360ms;
  --motion-scene: 720ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 48px rgba(10, 25, 38, 0.12);
  --shadow-deep: 0 32px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    "Alibaba PuHuiTi",
    "Source Han Sans SC",
    "Microsoft YaHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
canvas,
picture {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: 52px;
  line-height: 1.16;
  font-weight: 720;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  color: #06111d;
  background: var(--cyan-soft);
}

.section-inner {
  width: min(var(--content-width), calc(100% - 64px));
  margin: 0 auto;
}

.eyebrow,
.kicker {
  margin-bottom: 18px;
  color: #308781;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 48px;
  color: #edf6fb;
  border-bottom: 1px solid rgba(220, 232, 239, 0.1);
  background: rgba(6, 17, 29, 0.56);
  backdrop-filter: blur(18px) saturate(1.1);
  transition:
    height var(--motion-fast) ease,
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 29, 0.92);
  border-color: rgba(220, 232, 239, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 760;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(27, 215, 207, 0.25));
}

.brand span {
  font-size: 16px;
}

.brand b {
  font-weight: 620;
  color: rgba(237, 246, 251, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: rgba(237, 246, 251, 0.7);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 26px 0 23px;
  transition: color var(--motion-fast) ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 16px;
  height: 1px;
  background: var(--cyan);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.4);
  transition:
    opacity var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: #ffffff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.icon-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  border: 1px solid rgba(220, 232, 239, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
}

.button,
.nav-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 730;
  line-height: 1;
  transition:
    color var(--motion-fast) ease,
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) ease;
}

.button svg,
.nav-action svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

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

.nav-action {
  min-height: 42px;
  padding: 0 16px;
  color: #07121d;
  background: #f7fbfd;
  box-shadow: 0 10px 28px rgba(27, 215, 207, 0.12);
}

.button-primary {
  color: #07121d;
  background: #eafdf9;
  border-color: #b7eee6;
  box-shadow: 0 16px 38px rgba(27, 215, 207, 0.16);
}

.button-primary:hover {
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(27, 215, 207, 0.22);
}

.button-secondary {
  color: #edf6fb;
  border-color: rgba(220, 232, 239, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.button-secondary:hover {
  border-color: rgba(159, 248, 237, 0.46);
  background: rgba(255, 255, 255, 0.09);
}

.button-quiet {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

/* Hero */

.hero {
  position: relative;
  min-height: 720px;
  height: calc(100svh - 28px);
  overflow: hidden;
  color: #edf6fb;
  background: var(--deep);
}

.hero-media,
.hero-media img,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.78) contrast(1.06);
  transform: scale(1.025);
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 17, 29, 0.98) 0%, rgba(6, 17, 29, 0.91) 28%, rgba(6, 17, 29, 0.5) 58%, rgba(6, 17, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 17, 29, 0.04) 50%, rgba(6, 17, 29, 0.93) 100%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(500px, 0.9fr) minmax(620px, 1.1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  padding-top: calc(var(--header-height) + 38px);
  padding-bottom: 22px;
}

.hero-copy {
  position: relative;
  z-index: 6;
  width: min(var(--hero-copy-width), 100%);
  padding: 32px 0 48px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: rgba(226, 241, 248, 0.66);
}

.kicker > span {
  width: 24px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(27, 215, 207, 0.72);
}

.hero h1 {
  margin: 0 0 25px;
  color: #ffffff;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 800;
  white-space: nowrap;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.44);
}

.hero h1 span {
  margin-right: 8px;
}

.hero h1 b {
  font-weight: 630;
  color: rgba(244, 250, 253, 0.96);
}

.hero-statement {
  margin-bottom: 18px;
  color: #f2f8fb;
  font-size: 30px;
  line-height: 1.42;
  font-weight: 680;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(226, 239, 246, 0.72);
  font-size: 16px;
  line-height: 1.85;
}

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

.hero-network {
  justify-self: stretch;
  width: 100%;
  height: min(66vh, 650px);
  min-height: 500px;
  margin-left: -4%;
}

.network-scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.network-image,
.network-image img,
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-image {
  z-index: 0;
  opacity: 0.56;
  mask-image: radial-gradient(ellipse at 52% 50%, #000 28%, rgba(0, 0, 0, 0.72) 60%, transparent 82%);
}

.network-image img {
  object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
}

.particle-canvas {
  z-index: 2;
  pointer-events: none;
}

.network-core,
.network-node {
  position: absolute;
  z-index: 4;
  color: rgba(237, 246, 251, 0.76);
  border: 1px solid rgba(198, 220, 231, 0.16);
  background: rgba(7, 19, 31, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(13px);
  transition:
    color var(--motion-base) ease,
    border-color var(--motion-base) ease,
    background var(--motion-base) ease,
    box-shadow var(--motion-base) ease,
    opacity var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out);
}

.network-core {
  left: 50%;
  top: 50%;
  display: flex;
  width: 146px;
  height: 164px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transform: translate(-50%, -50%);
  color: #ffffff;
  border-color: rgba(159, 248, 237, 0.28);
  background: rgba(5, 16, 27, 0.84);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(27, 215, 207, 0.08);
}

.core-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 8px;
}

.core-mark img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(27, 215, 207, 0.28));
}

.network-core strong {
  font-size: 13px;
}

.network-core small {
  margin-top: 2px;
  color: rgba(220, 232, 239, 0.48);
  font-size: 9px;
  text-transform: uppercase;
}

.network-node {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}

.network-node svg {
  width: 17px;
  height: 17px;
  color: rgba(159, 248, 237, 0.68);
  stroke-width: 1.8;
}

.network-node.is-active,
[data-scene-phase="portfolio"] .network-node {
  color: #f5ffff;
  border-color: rgba(27, 215, 207, 0.6);
  background: rgba(7, 26, 38, 0.9);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(27, 215, 207, 0.14);
}

.network-node.is-complete {
  color: rgba(237, 246, 251, 0.88);
  border-color: rgba(159, 248, 237, 0.3);
  background: rgba(7, 24, 36, 0.82);
}

.node-agent {
  left: 8%;
  top: 21%;
}

.node-factory {
  right: 7%;
  top: 20%;
}

.node-world {
  left: 7%;
  bottom: 19%;
}

.node-vision {
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
}

.node-vision.is-active,
.node-vision.is-complete,
[data-scene-phase="portfolio"] .node-vision {
  transform: translateX(-50%);
}

.node-datacenter {
  right: 7%;
  bottom: 19%;
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, max-content) 1fr auto;
  align-items: center;
  gap: 25px;
  min-height: 62px;
  padding: 13px 0 0;
  color: rgba(220, 232, 239, 0.55);
  border-top: 1px solid rgba(220, 232, 239, 0.12);
  font-size: 12px;
  font-weight: 660;
}

.hero-proof > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof > span svg {
  width: 15px;
  height: 15px;
  color: rgba(159, 248, 237, 0.72);
}

.scroll-cue {
  grid-column: 7;
  width: 36px;
  height: 36px;
  color: rgba(220, 232, 239, 0.7);
  animation: scrollCue 2.8s ease-in-out infinite;
}

/* Agent Fabric story */

.fabric-story {
  position: relative;
  color: #eaf3f7;
  background:
    linear-gradient(180deg, #07131f 0%, #0a1723 52%, #101820 100%);
}

.fabric-story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
}

.story-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  padding-top: 132px;
  padding-bottom: 82px;
  border-bottom: 1px solid rgba(220, 232, 239, 0.1);
}

.story-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
  color: rgba(159, 248, 237, 0.68);
}

.story-intro h2 {
  margin: 0;
  max-width: 760px;
}

.story-intro > p:last-child {
  max-width: 450px;
  margin: 0 0 6px;
  color: rgba(220, 232, 239, 0.62);
  font-size: 16px;
}

.fabric-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.76fr) minmax(600px, 1.24fr);
  gap: 70px;
  padding-bottom: 120px;
}

.fabric-chapters {
  padding-top: 9vh;
}

.fabric-chapter {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 56vh;
  grid-template-columns: 42px 42px 1fr;
  align-content: center;
  gap: 16px;
  padding: 48px 0;
  color: rgba(220, 232, 239, 0.38);
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(220, 232, 239, 0.08);
  background: transparent;
  transition:
    color var(--motion-scene) ease,
    opacity var(--motion-scene) ease;
}

.fabric-chapter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(27, 215, 207, 0.5);
  transition:
    top var(--motion-scene) var(--ease-out),
    height var(--motion-scene) var(--ease-out);
}

.fabric-chapter.is-active,
.fabric-chapter.is-complete {
  color: rgba(234, 243, 247, 0.74);
}

.fabric-chapter.is-active {
  color: #ffffff;
}

.fabric-chapter.is-active::before {
  top: 29%;
  height: 42%;
}

.chapter-index {
  padding-top: 8px;
  color: currentColor;
  font-size: 11px;
  font-weight: 760;
}

.chapter-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(220, 232, 239, 0.12);
  border-radius: var(--radius);
  transition:
    border-color var(--motion-base) ease,
    background var(--motion-base) ease;
}

.chapter-icon svg {
  width: 18px;
  height: 18px;
}

.fabric-chapter.is-active .chapter-icon {
  color: var(--cyan-soft);
  border-color: rgba(27, 215, 207, 0.46);
  background: rgba(27, 215, 207, 0.08);
}

.chapter-copy {
  display: grid;
  gap: 8px;
}

.chapter-copy small {
  color: currentColor;
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.chapter-copy strong {
  font-size: 28px;
  line-height: 1.25;
}

.chapter-copy > span {
  max-width: 390px;
  color: currentColor;
  font-size: 15px;
  line-height: 1.8;
}

.fabric-sticky {
  position: sticky;
  top: 92px;
  height: calc(100vh - 116px);
  align-self: start;
  display: flex;
  align-items: center;
}

.fabric-network {
  width: 100%;
  height: min(72vh, 690px);
  min-height: 560px;
  border: 1px solid rgba(220, 232, 239, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(27, 215, 207, 0.08), transparent 30%),
    rgba(4, 14, 24, 0.48);
  box-shadow: var(--shadow-deep);
}

.fabric-network .network-image {
  opacity: 0.47;
  mask-image: linear-gradient(#000, #000);
}

.scene-status {
  position: absolute;
  z-index: 5;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  color: rgba(220, 232, 239, 0.45);
  border-top: 1px solid rgba(220, 232, 239, 0.12);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.scene-status strong {
  color: var(--cyan-soft);
  font-size: 12px;
}

/* starReach */

.starreach-section {
  padding: 132px 0 126px;
  background: #ffffff;
}

.product-heading {
  display: grid;
  grid-template-columns: 300px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
  align-items: start;
  padding-bottom: 66px;
}

.product-heading .eyebrow {
  color: #7567d7;
}

.product-heading h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.product-heading > div:last-child > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.product-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 30px;
}

.product-identity img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(117, 103, 215, 0.16);
}

.product-identity > div {
  display: grid;
  line-height: 1.2;
}

.product-identity span {
  color: var(--muted);
  font-size: 12px;
}

.product-identity strong {
  font-size: 23px;
}

.product-experience {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
  gap: 52px;
  align-items: stretch;
}

.feature-tabs {
  border-top: 1px solid var(--line);
}

.feature-tab {
  display: grid;
  width: 100%;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 13px;
  padding: 24px 0;
  color: #89939d;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition:
    color var(--motion-base) ease,
    padding var(--motion-base) var(--ease-out);
}

.feature-tab::after {
  content: "";
  position: absolute;
}

.feature-tab:hover,
.feature-tab:focus-visible,
.feature-tab.is-active {
  color: var(--ink);
}

.feature-tab.is-active {
  padding-left: 10px;
}

.feature-tab > svg {
  width: 21px;
  height: 21px;
  margin-top: 23px;
  color: currentColor;
  stroke-width: 1.7;
}

.feature-tab.is-active > svg {
  color: #7567d7;
}

.feature-tab > span {
  display: grid;
  gap: 3px;
}

.feature-tab small {
  color: #a2aab2;
  font-size: 10px;
}

.feature-tab strong {
  font-size: 18px;
}

.feature-tab em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.product-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid #cfd9e0;
  border-radius: var(--radius);
  background: #111a28;
  box-shadow: 0 30px 80px rgba(14, 28, 42, 0.18);
}

.product-stage picture,
.product-stage picture img {
  width: 100%;
  height: 100%;
}

.product-stage picture {
  position: absolute;
  inset: 0;
}

.product-stage picture img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transform: scale(1.015);
  transition: transform 1.1s var(--ease-out);
}

.product-stage.is-visible picture img {
  transform: scale(1);
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 22, 35, 0.06), rgba(11, 22, 35, 0.3)),
    linear-gradient(90deg, rgba(11, 22, 35, 0.16), transparent 48%);
  pointer-events: none;
}

.product-scanline {
  position: absolute;
  z-index: 2;
  left: 6%;
  right: 6%;
  top: 20%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(159, 248, 237, 0.76), transparent);
  box-shadow: 0 0 18px rgba(27, 215, 207, 0.3);
  animation: productScan 5.8s ease-in-out infinite;
}

.product-callout {
  position: absolute;
  z-index: 4;
  display: flex;
  max-width: 280px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  color: #edf6fb;
  border: 1px solid rgba(220, 232, 239, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 18, 30, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out);
}

.product-callout.is-active {
  opacity: 1;
  transform: translateY(0);
}

.product-callout > svg {
  width: 21px;
  height: 21px;
  color: var(--cyan);
  flex: 0 0 auto;
}

.product-callout > span {
  display: grid;
  line-height: 1.35;
}

.product-callout strong {
  font-size: 13px;
}

.product-callout small {
  margin-top: 3px;
  color: rgba(220, 232, 239, 0.58);
  font-size: 10px;
}

.callout-discover {
  left: 6%;
  top: 17%;
}

.callout-profile {
  right: 6%;
  top: 23%;
}

.callout-outreach {
  left: 8%;
  bottom: 16%;
}

.callout-follow {
  right: 6%;
  bottom: 15%;
}

.product-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: 62px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.product-flow li {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 10px;
  color: #a0a8b0;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 680;
  transition: color var(--motion-base) ease;
}

.product-flow li:last-child {
  border-right: 0;
}

.product-flow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 2px;
  background: #7567d7;
  transition: width var(--motion-scene) var(--ease-out);
}

.product-flow li.is-complete,
.product-flow li.is-active {
  color: var(--ink);
}

.product-flow li.is-complete::before,
.product-flow li.is-active::before {
  width: 100%;
}

.product-flow li span {
  color: #7567d7;
  font-size: 10px;
}

/* Capabilities and scenarios */

.capability-section {
  padding: 132px 0 140px;
  background: var(--paper-2);
}

.capability-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 74px;
}

.capability-heading h2 {
  margin-bottom: 0;
}

.capability-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: var(--muted);
}

.capability-layers {
  border-top: 1px solid #cbd5dc;
}

.capability-layer {
  position: relative;
  display: grid;
  grid-template-columns: 60px 260px minmax(240px, 1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: center;
  min-height: 170px;
  padding: 30px 0;
  border-bottom: 1px solid #cbd5dc;
  overflow: hidden;
}

.capability-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 75%);
  opacity: 0;
  transform: translateX(-18%);
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-scene) var(--ease-out);
}

.capability-layer:hover::before,
.capability-layer.is-visible::before {
  opacity: 0.7;
  transform: translateX(0);
}

.capability-layer > * {
  position: relative;
  z-index: 1;
}

.layer-number {
  color: #8d98a2;
  font-size: 12px;
  font-weight: 780;
}

.layer-title small {
  color: #368980;
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.layer-title h3 {
  margin: 7px 0 0;
  font-size: 24px;
}

.capability-layer > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.capability-layer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-layer li {
  padding: 6px 10px;
  color: #465461;
  border: 1px solid #cdd7dd;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 660;
}

.scenario-experience {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 330px;
  margin-top: 92px;
  color: #eaf3f7;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 50%, rgba(84, 213, 155, 0.08), transparent 35%),
    #111b24;
  box-shadow: 0 28px 70px rgba(16, 24, 32, 0.17);
}

.scenario-tabs {
  display: grid;
  align-content: center;
  padding: 28px;
  border-right: 1px solid rgba(220, 232, 239, 0.1);
}

.scenario-tab {
  display: flex;
  min-height: 57px;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  color: rgba(220, 232, 239, 0.44);
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(220, 232, 239, 0.08);
  background: transparent;
  transition:
    color var(--motion-base) ease,
    background var(--motion-base) ease;
}

.scenario-tab:last-child {
  border-bottom: 0;
}

.scenario-tab svg {
  width: 18px;
  height: 18px;
}

.scenario-tab.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.scenario-tab.is-active svg {
  color: var(--green);
}

.scenario-panels {
  display: grid;
  min-width: 0;
}

.scenario-panel {
  grid-area: 1 / 1;
  align-self: center;
  max-width: 720px;
  padding: 56px 72px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out);
}

.scenario-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.scenario-panel > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.scenario-panel h3 {
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: 34px;
}

.scenario-panel p {
  max-width: 590px;
  margin: 0;
  color: rgba(220, 232, 239, 0.62);
}

/* Governance */

.governance-section {
  padding: 132px 0;
  color: #eaf3f7;
  background: #10161c;
}

.governance-grid {
  display: grid;
  grid-template-columns: minmax(560px, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 84px;
}

.governance-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(220, 232, 239, 0.12);
  border-radius: var(--radius);
  background: #08121b;
  box-shadow: var(--shadow-deep);
}

.governance-visual picture,
.governance-visual picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.governance-visual picture img {
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.72) contrast(1.08);
}

.governance-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 18, 27, 0.92) 88%);
  pointer-events: none;
}

.audit-trace {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(220, 232, 239, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 16, 24, 0.78);
  backdrop-filter: blur(14px);
}

.audit-trace > div {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 14px;
  color: rgba(220, 232, 239, 0.68);
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
}

.audit-trace > div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.audit-trace > div:nth-child(1)::after {
  animation: auditWrite 6s ease-in-out 0s infinite;
}

.audit-trace > div:nth-child(2)::after {
  animation: auditWrite 6s ease-in-out 1s infinite;
}

.audit-trace > div:nth-child(3)::after {
  animation: auditWrite 6s ease-in-out 2s infinite;
}

.audit-trace svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.audit-trace b {
  color: var(--green);
  font-size: 9px;
}

.governance-copy .eyebrow {
  color: rgba(84, 213, 155, 0.78);
}

.governance-copy h2 {
  margin-bottom: 25px;
  font-size: 56px;
}

.governance-copy > p:last-of-type {
  max-width: 560px;
  margin-bottom: 42px;
  color: rgba(220, 232, 239, 0.62);
}

.governance-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(220, 232, 239, 0.12);
}

.governance-evidence > div {
  min-width: 0;
  padding: 24px 18px 22px 0;
  border-bottom: 1px solid rgba(220, 232, 239, 0.12);
}

.governance-evidence > div:nth-child(odd) {
  border-right: 1px solid rgba(220, 232, 239, 0.12);
}

.governance-evidence > div:nth-child(even) {
  padding-left: 22px;
}

.governance-evidence span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 10px;
}

.governance-evidence strong {
  font-size: 15px;
}

.governance-evidence p {
  margin: 5px 0 0;
  color: rgba(220, 232, 239, 0.48);
  font-size: 11px;
}

/* Contact */

.contact-section {
  padding: 132px 0 112px;
  background: #f7f9fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(560px, 1.18fr);
  gap: 100px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy > p:last-of-type {
  max-width: 520px;
  margin-bottom: 45px;
  color: var(--muted);
}

.consult-steps {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.consult-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}

.consult-steps li > span {
  color: #368980;
  font-size: 10px;
  font-weight: 760;
}

.consult-steps li > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.consult-steps strong {
  font-size: 14px;
}

.consult-steps small {
  color: #8a949d;
  font-size: 11px;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(18, 37, 54, 0.1);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-size: 18px;
  font-weight: 760;
}

.form-heading small {
  color: var(--muted);
  font-size: 11px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: #43515e;
  font-size: 12px;
  font-weight: 680;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid #d1dbe1;
  border-radius: 5px;
  background: #fbfcfd;
  outline: none;
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.contact-form input,
.contact-form select {
  height: 46px;
  padding: 0 12px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #58bcb3;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(27, 215, 207, 0.1);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.contact-form .button-primary {
  color: #ffffff;
  border-color: #163940;
  background: #163940;
  box-shadow: none;
}

.contact-form .button-primary:hover {
  background: #1c4a52;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #2f776f;
  font-size: 12px;
}

/* Footer */

.site-footer {
  padding: 38px 0;
  color: rgba(220, 232, 239, 0.6);
  background: #0b1218;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 52px;
}

.footer-brand span {
  display: grid;
  line-height: 1.25;
}

.footer-brand strong {
  color: #f5f9fb;
  font-size: 14px;
}

.footer-brand small {
  font-size: 9px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  font-size: 11px;
}

.site-footer nav a:hover {
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  font-size: 10px;
}

/* Reveal and keyframes */

.reveal,
.reveal-group > *,
[data-hero-copy] > * {
  opacity: 1;
  transform: none;
}

body.js-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

body.js-ready .reveal-group:not(.is-visible) > *,
body.js-ready [data-hero-copy]:not(.is-visible) > * {
  opacity: 0;
  transform: translateY(20px);
}

.reveal,
.reveal-group > *,
[data-hero-copy] > * {
  transition:
    opacity 620ms ease,
    transform 720ms var(--ease-out);
}

.reveal-group.is-visible > *:nth-child(2),
[data-hero-copy].is-visible > *:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-group.is-visible > *:nth-child(3),
[data-hero-copy].is-visible > *:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-group.is-visible > *:nth-child(4),
[data-hero-copy].is-visible > *:nth-child(4) {
  transition-delay: 210ms;
}

.reveal.is-visible,
.reveal-group.is-visible > *,
[data-hero-copy].is-visible > * {
  opacity: 1;
  transform: none;
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes productScan {
  0%,
  12% {
    top: 18%;
    opacity: 0;
  }
  22% {
    opacity: 0.75;
  }
  66% {
    top: 76%;
    opacity: 0.45;
  }
  78%,
  100% {
    top: 80%;
    opacity: 0;
  }
}

@keyframes auditWrite {
  0%,
  12% {
    width: 0;
    opacity: 0;
  }
  25%,
  65% {
    width: 100%;
    opacity: 0.8;
  }
  82%,
  100% {
    width: 100%;
    opacity: 0;
  }
}

@media (max-width: 1240px) {
  .site-header {
    padding: 0 28px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-shell {
    grid-template-columns: minmax(450px, 0.86fr) minmax(540px, 1.14fr);
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-statement {
    font-size: 27px;
  }

  .fabric-layout {
    grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1.28fr);
    gap: 46px;
  }

  .product-experience {
    grid-template-columns: minmax(280px, 0.62fr) minmax(540px, 1.38fr);
    gap: 38px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 64px;
  }

  .section-inner {
    width: min(var(--content-width), calc(100% - 40px));
  }

  h2,
  .governance-copy h2 {
    font-size: 44px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 8px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(220, 232, 239, 0.14);
    border-radius: var(--radius);
    background: rgba(6, 17, 29, 0.98);
    box-shadow: var(--shadow-deep);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-action {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-shell {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    padding-top: calc(var(--header-height) + 62px);
    padding-bottom: 24px;
  }

  .hero-copy {
    width: min(700px, 100%);
    padding: 16px 0 28px;
  }

  .hero h1 {
    white-space: normal;
  }

  .hero-network {
    height: 380px;
    min-height: 0;
    margin: 0;
  }

  .hero-proof {
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 10px;
  }

  .scroll-cue {
    grid-column: 6;
  }

  .story-intro,
  .capability-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .story-intro .eyebrow {
    grid-column: auto;
    margin-bottom: -4px;
  }

  .fabric-layout {
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding-top: 54px;
  }

  .fabric-sticky {
    position: relative;
    top: auto;
    order: -1;
    width: 100%;
    height: auto;
    align-self: stretch;
  }

  .fabric-network {
    height: 580px;
    min-height: 0;
  }

  .fabric-chapters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 26px;
    padding-top: 0;
  }

  .fabric-chapter {
    min-height: 260px;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 34px 0;
  }

  .chapter-icon {
    display: none;
  }

  .fabric-chapter::before {
    top: 0;
  }

  .fabric-chapter.is-active::before {
    top: 0;
    height: 100%;
  }

  .product-heading {
    grid-template-columns: 220px 1fr;
    gap: 44px;
  }

  .product-experience {
    grid-template-columns: 1fr;
  }

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

  .feature-tab:nth-child(odd) {
    padding-right: 22px;
    border-right: 1px solid var(--line);
  }

  .feature-tab:nth-child(even) {
    padding-left: 22px;
  }

  .feature-tab.is-active {
    padding-left: 10px;
  }

  .capability-layer {
    grid-template-columns: 48px 220px 1fr;
  }

  .capability-layer ul {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

  .governance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .governance-visual {
    min-height: 560px;
  }

  .contact-copy {
    position: relative;
    top: auto;
  }

  .contact-copy > p:last-of-type {
    max-width: 700px;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .section-inner {
    width: min(100% - 28px, var(--content-width));
  }

  h2,
  .governance-copy h2 {
    font-size: 36px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 24px);
  }

  .hero-copy {
    padding-bottom: 18px;
  }

  .kicker {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: 50px;
    line-height: 1.05;
  }

  .hero h1 span,
  .hero h1 b {
    display: block;
  }

  .hero h1 span {
    margin: 0 0 5px;
  }

  .hero h1 b {
    font-size: 43px;
  }

  .hero-statement {
    font-size: 24px;
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-network {
    height: 220px;
    margin: 0 -7px;
    width: calc(100% + 14px);
  }

  .network-core {
    width: 94px;
    height: 106px;
  }

  .core-mark {
    width: 50px;
    height: 50px;
    margin-bottom: 4px;
  }

  .core-mark img {
    width: 44px;
    height: 44px;
  }

  .network-core strong {
    font-size: 11px;
  }

  .network-node {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .network-node svg {
    width: 14px;
    height: 14px;
  }

  .hero-network .node-world,
  .hero-network .node-vision {
    display: none;
  }

  .node-agent {
    left: 1%;
    top: 10%;
  }

  .node-factory {
    right: 1%;
    top: 10%;
  }

  .node-datacenter {
    right: 3%;
    bottom: 4%;
  }

  .hero-proof {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .story-intro {
    padding-top: 10px;
    padding-bottom: 54px;
  }

  .story-intro h2 br,
  .capability-heading h2 br,
  .governance-copy h2 br,
  .contact-copy h2 br {
    display: none;
  }

  .fabric-layout {
    padding-top: 32px;
    padding-bottom: 86px;
  }

  .fabric-network {
    height: 390px;
  }

  .scene-status {
    left: 12px;
    right: 12px;
    bottom: 9px;
  }

  .fabric-chapters {
    grid-template-columns: 1fr;
  }

  .fabric-chapter {
    min-height: 0;
    grid-template-columns: 34px 1fr;
    padding: 28px 0;
  }

  .chapter-copy strong {
    font-size: 22px;
  }

  .starreach-section,
  .capability-section,
  .governance-section,
  .contact-section {
    padding: 92px 0;
  }

  .product-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 48px;
  }

  .product-identity {
    padding-top: 0;
  }

  .feature-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .feature-tab,
  .feature-tab:nth-child(odd),
  .feature-tab:nth-child(even),
  .feature-tab.is-active {
    min-width: 230px;
    padding: 20px 16px 20px 0;
    border-right: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .feature-tab.is-active {
    padding-left: 8px;
  }

  .feature-tab > svg {
    margin-top: 22px;
  }

  .product-stage {
    min-height: 410px;
  }

  .product-callout {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    max-width: none;
  }

  .product-flow {
    display: flex;
    overflow-x: auto;
    margin-top: 42px;
    scrollbar-width: none;
  }

  .product-flow li {
    min-width: 132px;
    padding-right: 12px;
  }

  .capability-heading {
    padding-bottom: 50px;
  }

  .capability-layer {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 28px 0;
  }

  .capability-layer > p,
  .capability-layer ul {
    grid-column: 2;
  }

  .layer-title h3 {
    font-size: 21px;
  }

  .capability-layer ul {
    justify-content: flex-start;
  }

  .scenario-experience {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .scenario-tabs {
    grid-template-columns: repeat(4, 1fr);
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 232, 239, 0.1);
  }

  .scenario-tab {
    min-height: 58px;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 7px;
    border-right: 1px solid rgba(220, 232, 239, 0.08);
    border-bottom: 0;
    font-size: 10px;
  }

  .scenario-panel {
    padding: 44px 24px 48px;
  }

  .scenario-panel h3 {
    font-size: 28px;
  }

  .governance-grid,
  .contact-grid {
    gap: 52px;
  }

  .governance-visual {
    min-height: 430px;
  }

  .audit-trace {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .governance-evidence {
    grid-template-columns: 1fr;
  }

  .governance-evidence > div:nth-child(odd) {
    border-right: 0;
  }

  .governance-evidence > div:nth-child(even) {
    padding-left: 0;
  }

  .consult-steps li > div {
    display: grid;
    gap: 1px;
  }

  .contact-form {
    padding: 22px 18px;
  }

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

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .site-footer p {
    grid-column: auto;
  }
}

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

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

  .reveal,
  .reveal-group > *,
  [data-hero-copy] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
