:root {
  color-scheme: dark;
  --ink: #f6f9fb;
  --muted: #a7b2bf;
  --soft: #101820;
  --paper: rgba(13, 22, 28, .9);
  --paper-strong: #142129;
  --line: rgba(185, 201, 214, .16);
  --accent: #49e5aa;
  --accent-strong: #24c88f;
  --cyan: #67c7ff;
  --gold: #f1c96b;
  --warning: #ffd166;
  --shadow: 0 28px 72px rgba(0, 0, 0, .36);
  --radius: 8px;
  --max: 1200px;
  font-family: "HarmonyOS Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(128deg, rgba(73, 229, 170, .14) 0%, transparent 31%),
    linear-gradient(226deg, rgba(103, 199, 255, .12) 0%, transparent 35%),
    linear-gradient(180deg, #030608 0%, #071016 42%, #0a131a 100%);
  line-height: 1.68;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent 72%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 52%, rgba(73, 229, 170, .055) 52% 53%, transparent 53%),
    linear-gradient(120deg, transparent 0 66%, rgba(103, 199, 255, .045) 66% 67%, transparent 67%);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(85, 240, 176, .34) 0%, rgba(100, 216, 255, .18) 32%, rgba(143, 124, 255, .08) 56%, transparent 72%);
  filter: blur(8px);
  mix-blend-mode: screen;
  transition: opacity .22s ease, width .18s ease, height .18s ease, filter .18s ease;
  will-change: transform, opacity;
}

.cursor-glow::after {
  position: absolute;
  inset: 88px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 28px rgba(85, 240, 176, .42);
}

.cursor-glow.is-visible {
  opacity: .72;
}

.cursor-glow.is-interactive {
  width: 280px;
  height: 280px;
  filter: blur(10px);
  opacity: .88;
}

.cursor-glow.is-reduced-motion {
  filter: blur(6px);
  transition: opacity .12s ease;
}

.cursor-glow.is-reduced-motion.is-interactive {
  width: 220px;
  height: 220px;
  filter: blur(6px);
  opacity: .72;
}

@media (max-width: 640px), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 13px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 7, 10, .86);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 850;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(85, 240, 176, .55);
  border-radius: 8px;
  background: rgba(73, 229, 170, .12);
  color: var(--accent);
  font-size: 13px;
  box-shadow: inset 0 0 22px rgba(73, 229, 170, .12);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
  max-width: 100%;
  color: #bfcbdb;
  font-size: 14px;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: #b9c4cf;
  font-weight: 720;
}

.nav a:hover,
.nav a.is-active {
  color: #fff;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 8px 14px;
  background: var(--accent);
  color: #06110d;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(85, 240, 176, .22);
}

main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: clamp(58px, 8vw, 104px) 0 54px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: 620px;
}

.compact {
  max-width: 880px;
  min-height: auto;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 900;
}

h1 .brand-word {
  position: relative;
  display: inline-block;
  margin-right: .04em;
  background: linear-gradient(92deg, var(--gold) 0%, #fff3b8 36%, var(--accent) 74%, var(--cyan) 100%);
  color: var(--gold);
  font-size: 1.12em;
  line-height: .98;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 28px rgba(73, 229, 170, .16);
}

h1 .brand-word::after {
  position: absolute;
  left: .03em;
  right: .02em;
  bottom: -.08em;
  height: .08em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 201, 107, .9), rgba(73, 229, 170, .72), transparent);
  content: "";
}

h2 {
  font-size: clamp(27px, 3.2vw, 42px);
  font-weight: 880;
}

h3 {
  font-size: 21px;
  font-weight: 820;
}

p {
  margin: 12px 0 0;
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.hero-meta {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(100, 216, 255, .28);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(100, 216, 255, .08);
  color: #d7f4ff;
  font-size: 13px;
  font-weight: 750;
}

.lead {
  max-width: 760px;
  color: #cbd5df;
  font-size: 18px;
}

h1 .hi,
h2 .hi {
  color: var(--accent);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 850;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #04110c;
  box-shadow: 0 16px 38px rgba(73, 229, 170, .22);
  transition: transform .15s ease, box-shadow .15s ease;
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(73, 229, 170, .32);
}

.button.secondary {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .045);
  color: #e6edf7;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.stat {
  min-width: 150px;
  border-left: 1px solid rgba(255, 255, 255, .16);
  padding-left: 16px;
}

.stat .stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.05;
}

.stat .stat-label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 199, 255, .2);
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(21, 33, 41, .96), rgba(6, 12, 16, .96)),
    linear-gradient(110deg, rgba(73, 229, 170, .11), transparent 42%);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), transparent);
  content: "";
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.panel-topline strong {
  border-radius: 6px;
  padding: 4px 8px;
  background: rgba(73, 229, 170, .13);
  color: var(--accent);
}

.geo-console {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.console-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .04);
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.console-row span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(103, 199, 255, .11);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
}

.console-row b {
  font-size: 15px;
}

.console-row.is-active {
  border-color: rgba(73, 229, 170, .36);
  background: rgba(73, 229, 170, .08);
}

.console-row:hover,
.console-row:focus-visible {
  transform: translateX(3px);
  border-color: rgba(73, 229, 170, .48);
  background: rgba(73, 229, 170, .11);
  outline: none;
}

.source-line {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 14px;
  color: #93a2af;
  font-size: 12px;
  line-height: 1.55;
}

.csy-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, .98fr) minmax(420px, .88fr);
  gap: clamp(32px, 5vw, 70px);
  min-height: 570px;
  padding-top: clamp(38px, 5vw, 62px);
  padding-bottom: 28px;
}

.csy-hero::before {
  position: absolute;
  inset: 4% -18vw 8% 35%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 22%, rgba(73, 229, 170, .12) 22% 24%, transparent 24% 44%, rgba(103, 199, 255, .09) 44% 46%, transparent 46%),
    linear-gradient(180deg, rgba(73, 229, 170, .09), transparent 62%);
  transform: skewX(-12deg);
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(73, 229, 170, .28);
  border-radius: 6px;
  padding: 6px 10px;
  background: rgba(73, 229, 170, .08);
  color: #9ff8d1;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.hero-kicker {
  margin-bottom: 18px;
}

.csy-hero h1 {
  font-size: clamp(45px, 5.45vw, 72px);
  letter-spacing: 0;
}

.csy-hero .lead {
  max-width: 780px;
  color: #d0dae4;
  font-size: 18px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.visibility-card {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border: 1px solid rgba(103, 199, 255, .22);
  border-radius: 18px;
  min-height: 462px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(18, 29, 37, .96), rgba(5, 10, 14, .98)),
    linear-gradient(120deg, rgba(73, 229, 170, .14), transparent 48%);
  box-shadow: 0 34px 88px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.visibility-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--gold), transparent);
  content: "";
}

.visibility-score {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0 18px;
}

.visibility-score span {
  color: #c0ccd8;
  font-size: 15px;
  font-weight: 760;
}

.visibility-score strong {
  background: linear-gradient(100deg, var(--gold), var(--accent));
  color: var(--gold);
  font-size: 76px;
  font-weight: 950;
  line-height: .82;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.score-bars {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}

.score-bars span {
  display: block;
  overflow: hidden;
  border-radius: 999px;
  height: 8px;
  background: rgba(255, 255, 255, .08);
}

.score-bars span::after {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  content: "";
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  min-height: 34px;
  background: rgba(255, 255, 255, .045);
  color: #c8d5df;
  font-size: 12px;
  font-weight: 800;
}

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

.engine-card {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  padding: 13px;
  background: rgba(255, 255, 255, .052);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.engine-card b,
.platform-tile h3 {
  display: block;
  color: #fff;
  font-size: 16px;
}

.engine-card span,
.platform-tile p {
  display: block;
  margin-top: 6px;
  color: #9ba8b7;
  font-size: 12px;
  line-height: 1.5;
}

.engine-1,
.engine-4 {
  border-color: rgba(73, 229, 170, .28);
  background: rgba(73, 229, 170, .08);
}

.engine-2,
.engine-5 {
  border-color: rgba(103, 199, 255, .24);
  background: rgba(103, 199, 255, .07);
}

.engine-3,
.engine-6 {
  border-color: rgba(241, 201, 107, .22);
  background: rgba(241, 201, 107, .06);
}

.ai-platform-strip {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 28px 0 58px;
}

.ai-platform-strip h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3.6vw, 46px);
}

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

.platform-tile {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02)),
    rgba(7, 14, 19, .7);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.platform-tile::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  content: "";
}

.platform-tile .platform-logo {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  padding: 3px;
}

.platform-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 229, 170, .38);
  background: rgba(73, 229, 170, .075);
}

.metric-card h3 {
  color: #fff;
  font-size: 27px;
}

.industry-focus {
  align-items: center;
}

.industry-board {
  display: grid;
  gap: 12px;
}

.industry-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
}

.industry-row .badge {
  grid-row: span 2;
  margin: 2px 0 0;
}

.service-showcase .section-head {
  max-width: 900px;
}

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

.service-tile {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 250px;
}

.service-tile.is-featured {
  grid-row: span 2;
  min-height: 516px;
  background:
    linear-gradient(160deg, rgba(73, 229, 170, .14), rgba(103, 199, 255, .06)),
    rgba(13, 22, 28, .92);
}

.service-tile.is-featured h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.service-index {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(73, 229, 170, .28);
  border-radius: 8px;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-tile .text-link {
  margin-top: 22px;
}

.answer-console {
  padding-top: 32px;
}

.answer-console .hero-panel {
  max-width: none;
}

.section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 132px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head p,
.card p,
.site-footer p,
.service-card p,
.mini-row p,
.solution-card p,
.cta-band p,
.split p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card,
.service-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
}

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

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(73, 229, 170, .32);
  border-radius: 6px;
  padding: 4px 9px;
  background: rgba(73, 229, 170, .1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.answer-box {
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
  background: rgba(73, 229, 170, .08);
  color: #dce7f5;
  font-size: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-row span {
  border: 1px solid rgba(103, 199, 255, .22);
  border-radius: 6px;
  padding: 6px 10px;
  background: rgba(103, 199, 255, .07);
  color: #d9eff8;
  font-size: 12px;
  font-weight: 760;
}

.card,
.service-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.card:hover,
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 229, 170, .42);
  background: rgba(18, 31, 39, .96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: -10px 0 38px;
  padding: 14px;
  background: rgba(255, 255, 255, .038);
}

.platform-row .platform-label {
  color: #d9e4f2;
  font-size: 13px;
  font-weight: 780;
  margin-right: 4px;
}

.platform-chip {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, .055);
  color: #dce7f5;
  font-size: 13px;
  font-weight: 760;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid rgba(103, 199, 255, .22);
  border-radius: 6px;
  background: rgba(103, 199, 255, .07);
  padding: 9px 13px;
  color: #d9eff8;
  font-weight: 760;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
}

.timeline article {
  display: grid;
  grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-preview,
.faq-list,
.service-list {
  display: grid;
  gap: 12px;
}

.mini-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .04);
}

.text-link {
  width: max-content;
  color: var(--accent);
  font-weight: 850;
}

.text-link:hover {
  color: #9affd4;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid rgba(73, 229, 170, .24);
  border-radius: 8px;
  margin-top: 20px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(73, 229, 170, .12), rgba(103, 199, 255, .055)),
    rgba(255, 255, 255, .04);
}

.cta-band p {
  max-width: 720px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 24px;
}

.service-detail h3,
.solution-card h3 {
  font-size: 17px;
}

.solution-card h3 {
  margin-top: 22px;
}

.industry-card {
  display: grid;
  align-content: start;
}

.industry-card .text-link {
  margin-top: 18px;
}

details {
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.article-hero,
.article-body {
  max-width: 790px;
}

.article-body p {
  color: #d6dfeb;
  font-size: 18px;
}

.article-body a,
.article-body strong {
  color: #fff;
}

.inner-hero {
  position: relative;
  width: min(980px, 100%);
  max-width: none;
  padding: clamp(62px, 8vw, 96px) 0 clamp(42px, 6vw, 68px);
  border-bottom: 1px solid var(--line);
}

.inner-hero::before {
  position: absolute;
  top: clamp(34px, 5vw, 54px);
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--accent);
  content: "";
  box-shadow: 54px 0 0 rgba(73, 229, 170, .28);
}

.inner-hero .hero-meta {
  margin-top: 18px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  letter-spacing: 0;
}

.inner-hero h1 {
  max-width: 840px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  text-wrap: balance;
}

.inner-hero .lead {
  max-width: 760px;
  font-size: 18px;
  text-wrap: pretty;
}

.inner-section {
  width: min(1050px, 100%);
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(52px, 7vw, 78px);
  padding-bottom: clamp(58px, 8vw, 88px);
}

.inner-section > .section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.inner-section > .section-head h2,
.inner-section.split > div:first-child > h2 {
  max-width: 680px;
  text-wrap: balance;
}

.inner-section .card,
.inner-section .service-card,
.inner-section .mini-row,
.inner-section details {
  border-color: rgba(185, 201, 214, .14);
  background: rgba(11, 23, 28, .78);
  box-shadow: none;
}

.inner-section .card:hover,
.inner-section .service-card:hover {
  border-color: rgba(73, 229, 170, .38);
  background: rgba(14, 30, 35, .92);
}

.inner-section .timeline article:first-child {
  border-top: 1px solid rgba(73, 229, 170, .28);
}

.inner-section.cta-band {
  width: min(1050px, 100%);
  border-color: rgba(73, 229, 170, .3);
  padding: clamp(26px, 4vw, 42px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  margin-top: 48px;
  padding: 34px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 10, .62);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
  font-weight: 760;
}

.footer-compliance {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(232, 238, 248, .62);
  font-size: .88rem;
}

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

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  .home-hero,
  .service-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    gap: 12px;
    overflow: hidden;
  }

  .header-cta {
    display: none;
  }

  .nav {
    gap: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .section {
    scroll-margin-top: 190px;
  }

  .grid.two,
  .grid.three,
  .split,
  .timeline article,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: grid;
    justify-items: start;
  }

  main {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: 38px;
  }

  .hero {
    padding-top: 42px;
  }

  .stat-row {
    gap: 18px;
  }

  .platform-row {
    margin-top: 4px;
  }
}

@media (max-width: 1060px) {
  .csy-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .visibility-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .ai-platform-strip,
  .service-mosaic {
    grid-template-columns: 1fr;
  }

  .service-tile.is-featured {
    grid-row: auto;
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .csy-hero {
    gap: 26px;
  }

  .csy-hero h1 {
    font-size: 40px;
  }

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

  .industry-row {
    grid-template-columns: 1fr;
  }

  .industry-row .badge {
    grid-row: auto;
    margin-bottom: 10px;
  }
}

@media (max-width: 560px) {
  .csy-hero h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .actions {
    width: 100%;
  }

  .actions .button {
    width: 100%;
  }

  .stat {
    min-width: calc(50% - 10px);
  }

  .visibility-card {
    padding: 20px;
  }

  .visibility-score strong {
    font-size: 64px;
  }

  .platform-grid,
  .engine-cloud {
    grid-template-columns: 1fr;
  }

  .platform-tile {
    min-height: auto;
  }
}

/* Vertical landing-page direction inspired by the reference site, without reusing its assets. */
.vertical-hero {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  overflow: hidden;
  min-height: auto;
  padding: clamp(54px, 7vw, 86px) 0 42px;
  text-align: center;
}

.vertical-hero::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 118vw;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 22%, rgba(73, 229, 170, .09) 22% 22.35%, transparent 22.35% 42%, rgba(103, 199, 255, .07) 42% 42.35%, transparent 42.35%),
    linear-gradient(180deg, rgba(5, 20, 19, .72), rgba(3, 7, 10, 0) 76%);
  transform: translateX(-50%);
}

.vertical-hero::after {
  position: absolute;
  left: 50%;
  top: 360px;
  z-index: -1;
  width: min(760px, 88vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(73, 229, 170, .38), rgba(103, 199, 255, .24), transparent);
  box-shadow: 0 0 48px rgba(73, 229, 170, .16);
  transform: translateX(-50%);
}

.hero-center {
  width: min(920px, 100%);
  margin: 0 auto;
}

.hero-center .hero-kicker,
.center-head .eyebrow,
.intro-statement .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.vertical-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.05;
}

.vertical-hero .brand-word {
  font-size: 1em;
}

.vertical-hero .lead {
  max-width: 620px;
  margin: 16px auto 0;
  color: #aebbc4;
  font-size: 16px;
}

.hero-actions {
  justify-content: center;
}

.orbit-stage {
  --orbit-size: min(560px, 88vw);
  --orbit-node-size: 76px;
  --orbit-radius: calc((var(--orbit-size) / 2) - 52px);
  --orbit-duration: 36s;
  --orbit-duration-reduced: 48s;
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  margin: 28px auto 0;
  isolation: isolate;
}

.orbit-track {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  animation: orbitSpinClockwise var(--orbit-duration) linear infinite;
  will-change: transform;
}

.orbit-stage:has(.orbit-node:hover) .orbit-track,
.orbit-stage:has(.orbit-node:hover) .orbit-node,
.orbit-stage:has(.orbit-node:focus-within) .orbit-track,
.orbit-stage:has(.orbit-node:focus-within) .orbit-node {
  animation-play-state: paused;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(73, 229, 170, .2);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 44%;
  height: 44%;
  border-color: rgba(103, 199, 255, .19);
}

.ring-two {
  width: 72%;
  height: 72%;
}

.ring-three {
  width: calc(var(--orbit-size) - 34px);
  height: calc(var(--orbit-size) - 34px);
  border-style: dashed;
  border-color: rgba(103, 199, 255, .2);
}

.orbit-spokes {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  opacity: .48;
  background: repeating-conic-gradient(from 0deg, rgba(73, 229, 170, .24) 0deg .35deg, transparent .35deg 60deg);
  mask-image: radial-gradient(circle, transparent 0 28%, #000 29% 100%);
}

.orbit-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-particles i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fffd1;
  box-shadow: 0 0 16px rgba(73, 229, 170, .92);
  animation: orbitParticlePulse 2.8s ease-in-out infinite;
}

.orbit-particles i:nth-child(1) { left: 15%; top: 27%; }
.orbit-particles i:nth-child(2) { right: 8%; top: 46%; animation-delay: -.7s; }
.orbit-particles i:nth-child(3) { left: 35%; bottom: 6%; animation-delay: -1.4s; }
.orbit-particles i:nth-child(4) { right: 31%; top: 13%; animation-delay: -2.1s; }

.orbit-node-disc,
.core-node {
  border-radius: 50%;
}

.core-node {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  z-index: 2;
  width: 148px;
  height: 148px;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(158, 255, 221, .76);
  padding: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(73, 229, 170, .22), transparent 54%),
    rgba(3, 17, 17, .96);
  box-shadow:
    0 0 0 8px rgba(73, 229, 170, .07),
    0 0 0 18px rgba(73, 229, 170, .035),
    0 0 58px rgba(73, 229, 170, .34),
    inset 0 0 32px rgba(73, 229, 170, .14);
  transform: translate(-50%, -50%);
  animation: orbitCorePulse 4.8s ease-in-out infinite;
}

.core-node span {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .08em;
}

.core-node strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}

.orbit-node {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 128px;
  border: 0;
  padding: 0;
  outline: 0;
  background: transparent;
  text-align: center;
  transform-origin: 50% 50%;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--orbit-angle)));
  animation: orbitNodeUpright var(--orbit-duration) linear infinite;
  will-change: transform;
}

.orbit-node-disc {
  display: grid;
  width: var(--orbit-node-size);
  height: var(--orbit-node-size);
  place-items: center;
  border: 1px solid rgba(103, 199, 255, .62);
  background: rgba(5, 18, 19, .94);
  box-shadow:
    0 0 0 5px rgba(73, 229, 170, .045),
    0 0 24px rgba(73, 229, 170, .19),
    inset 0 0 18px rgba(103, 199, 255, .08);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.orbit-node:hover .orbit-node-disc,
.orbit-node:focus-visible .orbit-node-disc {
  border-color: rgba(126, 255, 211, .95);
  box-shadow: 0 0 0 6px rgba(73, 229, 170, .08), 0 0 34px rgba(73, 229, 170, .38);
  transform: scale(1.06);
}

.orbit-node-copy {
  display: grid;
  gap: 1px;
  min-width: 118px;
  line-height: 1.22;
}

.orbit-node-copy b {
  color: #f6fbf9;
  font-size: 14px;
}

.orbit-node-copy small {
  color: #8fa29f;
  font-size: 10px;
}

.platform-tile h3 {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.platform-logo {
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(103, 199, 255, .82);
  border-radius: 9px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(247, 252, 255, .98), rgba(184, 247, 255, .88));
  object-fit: contain;
  box-shadow: 0 0 20px rgba(73, 229, 170, .34), 0 8px 22px rgba(0, 0, 0, .22);
}

.platform-logo[src$="kimi-icon-rounded-corner.png"],
.platform-logo[src$="doubao-app-icon.png"] {
  padding: 0;
  background: transparent;
  object-fit: cover;
}

.orbit-node .platform-logo {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  padding: 4px;
  box-shadow: none;
}

@keyframes orbitSpinClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitNodeUpright {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--orbit-angle)));
  }

  to {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translate(var(--orbit-radius)) rotate(calc((-1 * var(--orbit-angle)) - 360deg));
  }
}

@keyframes orbitParticlePulse {
  0%,
  100% { opacity: .34; transform: scale(.72); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes orbitCorePulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(73, 229, 170, .07), 0 0 0 18px rgba(73, 229, 170, .035), 0 0 58px rgba(73, 229, 170, .34), inset 0 0 32px rgba(73, 229, 170, .14);
    filter: saturate(1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(73, 229, 170, .1), 0 0 0 22px rgba(73, 229, 170, .045), 0 0 72px rgba(73, 229, 170, .46), inset 0 0 38px rgba(73, 229, 170, .2);
    filter: saturate(1.16);
  }
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(860px, 100%);
  margin: 8px auto 0;
}

.hero-proof-row span {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, .045);
  color: #aeb9c7;
  font-size: 13px;
  font-weight: 760;
}

.hero-proof-row b {
  display: block;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.vertical-section {
  width: min(1050px, 100%);
  margin: 0 auto;
  padding: 76px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 132px;
  text-align: center;
}

.intro-statement {
  width: min(860px, 100%);
  padding-top: 52px;
}

.intro-statement h2,
.center-head h2 {
  margin-top: 14px;
}

.intro-statement p,
.center-head p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

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

.platform-wall {
  width: min(980px, 100%);
}

.stacked-cards,
.platform-grid,
.feature-grid {
  text-align: left;
}

.foundation-section .stacked-cards {
  grid-template-columns: 1.25fr .85fr .85fr;
  align-items: stretch;
}

.foundation-section .metric-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(7, 20, 19, .9);
}

.foundation-section .metric-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(73, 229, 170, .18);
  border-radius: 18px;
  content: "";
  transform: rotate(8deg);
}

.foundation-section .metric-card:first-child {
  min-height: 320px;
  background:
    linear-gradient(145deg, rgba(73, 229, 170, .14), rgba(103, 199, 255, .06)),
    rgba(6, 18, 18, .94);
}

.foundation-section .metric-card h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  text-wrap: balance;
}

.industry-focus .industry-board {
  width: min(860px, 100%);
  margin: 26px auto 0;
}

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

.industry-stack .industry-row {
  min-height: 176px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .058), rgba(255, 255, 255, .022)),
    rgba(12, 15, 32, .86);
}

.industry-stack .industry-row:nth-child(even) {
  transform: translateY(24px);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    rgba(6, 18, 18, .9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.feature-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(73, 229, 170, .85), rgba(103, 199, 255, .42), transparent);
  content: "";
}

.feature-card.is-wide {
  grid-column: 1 / -1;
  min-height: 310px;
  background:
    linear-gradient(135deg, rgba(73, 229, 170, .12), rgba(103, 199, 255, .07)),
    rgba(6, 18, 18, .92);
}

.feature-card p {
  color: var(--muted);
}

.feature-card .text-link {
  margin-top: 20px;
}

.case-proof-section {
  width: min(1080px, 100%);
}

.case-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.case-study {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(150px, .78fr) minmax(0, 1.22fr);
  min-height: 260px;
  border: 1px solid rgba(185, 201, 214, .16);
  border-radius: 8px;
  background: rgba(8, 19, 23, .9);
  transition: border-color .22s ease, transform .22s ease, background .22s ease;
}

.case-study:hover,
.case-study:focus-within {
  border-color: rgba(73, 229, 170, .42);
  background: rgba(11, 27, 31, .96);
  transform: translateY(-2px);
}

.case-study.is-featured {
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  min-height: 540px;
}

.case-media {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 100%;
  place-content: end start;
  padding: 20px;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(73, 229, 170, .12) 48% 49%, transparent 49%),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    #0b2023;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.case-media::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(73, 229, 170, .2);
  content: "";
  pointer-events: none;
}

.case-media span,
.case-media small {
  position: relative;
  z-index: 1;
}

.case-media span {
  max-width: 220px;
  color: #e5f2ee;
  font-size: 14px;
  font-weight: 800;
}

.case-media small {
  margin-top: 4px;
  color: rgba(73, 229, 170, .68);
  font-size: 10px;
  font-weight: 850;
}

.case-study.is-featured .case-media {
  min-height: 300px;
}

.case-copy {
  display: grid;
  align-content: start;
  padding: clamp(20px, 3vw, 30px);
}

.case-copy h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  text-wrap: balance;
}

.case-copy p {
  color: var(--muted);
  text-wrap: pretty;
}

.case-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 18px;
  padding: 0;
  list-style: none;
}

.case-deliverables li {
  border: 1px solid rgba(185, 201, 214, .14);
  border-radius: 5px;
  padding: 5px 8px;
  color: #c9d4d9;
  font-size: 12px;
  font-weight: 720;
}

.case-copy .text-link {
  align-self: end;
  margin-top: auto;
}

.answer-console .hero-panel,
.faq-section .faq-preview {
  width: min(860px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.question-panel-section {
  padding-top: 34px;
}

.question-panel-section .hero-panel {
  background:
    linear-gradient(160deg, rgba(9, 26, 24, .96), rgba(4, 13, 15, .96)),
    linear-gradient(110deg, rgba(73, 229, 170, .08), rgba(103, 199, 255, .05));
}

.faq-section .mini-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  min-height: 72px;
  padding: 20px 22px;
  background: rgba(7, 20, 19, .82);
}

.faq-section .mini-row::after {
  color: var(--accent);
  content: "+";
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.faq-section .mini-row p {
  grid-column: 1 / -1;
}

.workflow-panel {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding-right: clamp(18px, 4vw, 42px);
  padding-left: clamp(18px, 4vw, 42px);
  background: rgba(255, 255, 255, .035);
}

.workflow-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin: 32px auto;
}

.workflow-orbit span {
  display: inline-grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
  color: #dce7f5;
  font-size: 12px;
  font-weight: 850;
}

.workflow-orbit .workflow-core {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #06110d;
}

.audience-section .pill-list {
  justify-content: center;
}

.final-cta {
  border: 1px solid rgba(73, 229, 170, .26);
  border-radius: 14px;
  margin-bottom: 48px;
  padding-right: clamp(20px, 5vw, 70px);
  padding-left: clamp(20px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(73, 229, 170, .11), rgba(103, 199, 255, .06)),
    rgba(255, 255, 255, .035);
}

.final-cta::before {
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, var(--accent), rgba(103, 199, 255, .7));
  content: "";
}

.final-cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-wrap: balance;
}

.final-cta p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.final-cta .button {
  margin-top: 24px;
}

@media (max-width: 960px) {
  .vertical-hero {
    min-height: auto;
  }

  .hero-proof-row,
  .foundation-section .stacked-cards,
  .industry-stack .industry-board,
  .feature-grid,
  .case-proof-grid,
  .workflow-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-proof-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .case-study.is-featured {
    grid-row: auto;
    min-height: 0;
  }

  .case-study.is-featured .case-media {
    aspect-ratio: 16 / 8;
  }

  .industry-stack .industry-row:nth-child(even) {
    transform: none;
  }

  .feature-card.is-wide {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .vertical-hero {
    min-height: auto;
  }

  .orbit-stage {
    --orbit-size: min(470px, 92vw);
    --orbit-node-size: 66px;
    --orbit-radius: calc((var(--orbit-size) / 2) - 46px);
  }

  .hero-proof-row,
  .foundation-section .stacked-cards,
  .industry-stack .industry-board,
  .feature-grid,
  .case-proof-grid,
  .workflow-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .industry-stack .industry-row:nth-child(even) {
    transform: none;
  }

  .feature-card.is-wide {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .vertical-hero {
    padding-top: 42px;
  }

  .vertical-hero h1 {
    font-size: 38px;
  }

  .hero-proof-row,
  .foundation-section .stacked-cards,
  .industry-stack .industry-board,
  .feature-grid,
  .case-proof-grid,
  .workflow-orbit {
    grid-template-columns: 1fr;
  }

  .case-study {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .case-media,
  .case-study.is-featured .case-media {
    min-height: 190px;
    aspect-ratio: 16 / 9;
  }

  .inner-hero {
    padding-top: 58px;
  }

  .inner-hero h1 {
    font-size: 38px;
  }

  .orbit-stage {
    --orbit-size: min(350px, 94vw);
    --orbit-node-size: 58px;
    --orbit-radius: calc((var(--orbit-size) / 2) - 42px);
    margin-top: 22px;
  }

  .orbit-node {
    width: 82px;
  }

  .orbit-node-disc {
    box-shadow: 0 0 0 3px rgba(73, 229, 170, .045), 0 0 18px rgba(73, 229, 170, .16);
  }

  .orbit-node .platform-logo {
    width: 30px;
    height: 30px;
  }

  .orbit-node-copy {
    min-width: 82px;
  }

  .orbit-node-copy b {
    font-size: 11px;
  }

  .orbit-node-copy small {
    display: none;
  }

  .core-node {
    width: 108px;
    height: 108px;
  }

  .core-node strong {
    font-size: 15px;
  }

  .core-node span {
    font-size: 16px;
  }

  .vertical-section {
    padding: 56px 0;
    scroll-margin-top: 190px;
  }

  .hero-proof-row span {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-stage {
    --orbit-duration: var(--orbit-duration-reduced);
  }

  .orbit-particles i,
  .core-node {
    animation: none;
    will-change: auto;
  }
}
