:root {
  color-scheme: light;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:
    "SFMono-Regular", Consolas, "Liberation Mono", "Roboto Mono", monospace;
  --ink: #0d1524;
  --ink-2: #253348;
  --muted: #657386;
  --paper: #ffffff;
  --paper-2: #f6f8fb;
  --page: #edf2f7;
  --line: #d8e0ea;
  --line-strong: #b8c4d3;
  --dark: #07111f;
  --dark-2: #0d1929;
  --orange: #f97316;
  --orange-soft: #fff3e7;
  --blue: #2563eb;
  --cyan: #38bdf8;
  --emerald: #22c55e;
  --shadow: 0 18px 46px rgba(13, 21, 36, 0.12);
  --shadow-soft: 0 10px 28px rgba(13, 21, 36, 0.075);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(237, 242, 247, 0.7), rgba(237, 242, 247, 1) 520px),
    var(--page);
  color: var(--ink);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

[id] {
  scroll-margin-top: 96px;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 64px 64px, 64px 64px;
  }
}

@keyframes auraDrift {
  0% {
    opacity: 0.78;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate3d(-18px, 10px, 0) scale(1.04);
  }
}

@keyframes meteorSweep {
  0% {
    opacity: 0;
    transform: translate3d(140px, -80px, 0) rotate(-28deg);
  }

  12%,
  46% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: translate3d(-860px, 460px, 0) rotate(-28deg);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0.68;
    transform: scale(0.88);
  }

  78%,
  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

@keyframes dockFloat {
  0%,
  100% {
    transform: translate3d(0, -50%, 0);
  }

  50% {
    transform: translate3d(0, calc(-50% - 8px), 0);
  }
}

@keyframes revealLift {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skip-link {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  left: 16px;
  padding: 10px 12px;
  position: fixed;
  top: -72px;
  z-index: 1000;
}

.skip-link:focus {
  top: 14px;
}

.section-inner,
.nav-shell,
.footer-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(18px, 4vw, 40px);
  padding-right: clamp(18px, 4vw, 40px);
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.84);
  border-bottom: 1px solid rgba(218, 226, 235, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.96);
  border-color: rgba(96, 165, 250, 0.26);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  gap: 12px;
  letter-spacing: 0;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 45%),
    linear-gradient(135deg, #f97316, #2563eb);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
}

.brand-mark::after {
  background: rgba(255, 255, 255, 0.72);
  content: "";
  height: 1px;
  left: 6px;
  position: absolute;
  right: 6px;
  top: 9px;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 2px;
}

.nav-menu a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  padding: 10px 12px;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  display: none;
  font-weight: 850;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
}

.nav-toggle-bars {
  display: grid;
  gap: 4px;
  width: 18px;
}

.nav-toggle-bars span {
  background: currentColor;
  border-radius: 999px;
  height: 2px;
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] {
  background: #fff;
  border-color: rgba(255, 184, 107, 0.58);
  color: #07111f;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button,
.nav-cta {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

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

.button-primary,
.nav-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #ff7a1a 0%, #2563eb 58%, #16a34a 100%);
  background-size: 180% 180%;
  border-color: rgba(255, 184, 107, 0.55);
  box-shadow:
    0 16px 34px rgba(37, 99, 235, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  color: #fff;
}

.button-primary:hover,
.nav-cta:hover {
  background-position: 100% 50%;
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.3),
    0 0 26px rgba(56, 189, 248, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  color: var(--ink);
}

.nav-cta {
  min-height: 40px;
  padding: 0 16px;
}

.hero,
.page-hero,
.section-dark,
.cta-band {
  background:
    radial-gradient(circle at 76% 18%, rgba(37, 99, 235, 0.34), transparent 27rem),
    radial-gradient(circle at 18% 80%, rgba(34, 197, 94, 0.16), transparent 24rem),
    linear-gradient(135deg, #06101f 0%, #0b1728 54%, #111d31 100%);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero::before,
.page-hero::before,
.section-dark::before,
.cta-band::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 82%);
  opacity: 0.92;
  pointer-events: none;
  position: absolute;
  animation: gridDrift 28s linear infinite;
}

.hero::after,
.page-hero::after,
.section-dark::after,
.cta-band::after {
  background:
    radial-gradient(circle at 74% 16%, rgba(37, 99, 235, 0.3), transparent 26rem),
    radial-gradient(circle at 16% 88%, rgba(249, 115, 22, 0.15), transparent 22rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  animation: auraDrift 13s ease-in-out infinite alternate;
}

.hero-media {
  inset: 0;
  opacity: 0.64;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98) 0%, rgba(7, 17, 31, 0.9) 47%, rgba(7, 17, 31, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.28), rgba(7, 17, 31, 0.78));
  content: "";
  inset: 0;
  position: absolute;
}

.hero .section-inner {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.82fr);
  min-height: 76svh;
  padding-bottom: clamp(58px, 9vw, 96px);
  padding-top: clamp(58px, 9vw, 96px);
  position: relative;
  z-index: 1;
}

.hero .section-inner::before,
.hero .section-inner::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86) 34%, rgba(96, 165, 250, 0.92) 58%, transparent),
    radial-gradient(circle at 64% 50%, rgba(255, 255, 255, 0.9), transparent 0.24rem);
  content: "";
  height: 2px;
  pointer-events: none;
  position: absolute;
  right: -120px;
  top: 14%;
  width: 220px;
  z-index: 0;
  animation: meteorSweep 5.8s linear infinite;
}

.hero .section-inner::after {
  animation-delay: 2.6s;
  right: 18%;
  top: 34%;
  width: 150px;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-content::before {
  background: linear-gradient(180deg, #ffb86b, rgba(96, 165, 250, 0.24));
  content: "";
  height: 132px;
  left: -24px;
  position: absolute;
  top: 6px;
  width: 3px;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  gap: 9px;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 28px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .section-kicker,
.cta-band .section-kicker {
  color: #ffb86b;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.service-copy h2,
.rich-text h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.98;
  max-width: 12ch;
}

.hero h1 span {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(90deg, #60a5fa 0%, #38bdf8 42%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.94em;
  padding-bottom: 0.06em;
}

.hero-lead {
  color: #d7e2f0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.72;
  margin: 24px 0 0;
  max-width: 720px;
}

.hero-actions,
.cta-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .button-secondary,
.page-hero .button-secondary,
.cta-band .button-secondary {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hero-points,
.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-points span,
.mini-tag {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  min-height: 32px;
  padding: 8px 11px;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e7eef8;
}

.hero-proof-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  max-width: 760px;
}

.hero-proof-grid article {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  min-width: 0;
  padding: 15px;
  position: relative;
}

.hero-proof-grid article::after {
  border-right: 1px solid rgba(255, 184, 107, 0.55);
  border-top: 1px solid rgba(255, 184, 107, 0.55);
  content: "";
  height: 18px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 18px;
}

.hero-proof-grid strong {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 15px;
  gap: 10px;
  line-height: 1.25;
}

.hero-proof-grid span {
  color: #b7c6d9;
  display: block;
  font-size: 13px;
  line-height: 1.58;
  margin-top: 8px;
}

.hero-command-panel {
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 88% 8%, rgba(56, 189, 248, 0.2), transparent 16rem),
    rgba(8, 17, 31, 0.76);
  border: 1px solid rgba(226, 236, 248, 0.2);
  border-radius: 10px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(37, 99, 235, 0.16);
  min-width: 0;
  padding: 22px;
  position: relative;
  z-index: 1;
  animation: panelFloat 6.5s ease-in-out infinite;
}

.hero-command-panel::before {
  background: linear-gradient(90deg, #ff7a1a, #2563eb, #0ea5e9);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.command-panel-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.command-panel-head span,
.command-route span,
.command-feed span,
.command-metrics span {
  font-family: var(--font-mono);
}

.command-panel-head span {
  color: #ffb86b;
  font-size: 11px;
  font-weight: 900;
}

.command-panel-head strong {
  color: #fff;
  font-size: 18px;
}

.command-route {
  display: grid;
  gap: 10px;
  position: relative;
}

.command-route::before {
  background: linear-gradient(180deg, rgba(255, 184, 107, 0.85), rgba(96, 165, 250, 0.72));
  bottom: 26px;
  content: "";
  left: 19px;
  position: absolute;
  top: 26px;
  width: 1px;
}

.command-route article {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-radius: var(--radius);
  display: grid;
  gap: 4px 12px;
  grid-template-columns: 40px 1fr;
  padding: 13px;
  position: relative;
}

.command-route article:hover {
  border-color: rgba(96, 165, 250, 0.36);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.16);
}

.command-route span {
  align-items: center;
  background: #0a1322;
  border: 1px solid rgba(255, 184, 107, 0.38);
  border-radius: 999px;
  color: #ffb86b;
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  position: relative;
  width: 38px;
  z-index: 1;
}

.command-route strong {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 10px;
}

.command-route em {
  color: #aebcd0;
  font-size: 13px;
  font-style: normal;
  grid-column: 2;
}

.command-feed {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.command-feed div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 236, 248, 0.13);
  border-radius: var(--radius);
  padding: 12px 13px;
}

.command-feed span {
  color: #ffb86b;
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 5px;
}

.command-feed strong {
  color: #dce7f5;
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

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

.command-metrics span {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-radius: var(--radius);
  color: #d7e2f0;
  font-size: 11px;
  font-weight: 850;
  min-width: 0;
  padding: 9px;
  text-align: center;
}

.trust-strip,
.metrics,
.page-guide {
  background: #0b1626;
  border-bottom: 1px solid rgba(226, 236, 248, 0.12);
  color: #fff;
}

.trust-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-grid > span {
  align-items: center;
  border-left: 1px solid rgba(226, 236, 248, 0.1);
  color: #cbd7e7;
  display: flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  min-height: 62px;
  padding: 13px 12px;
  text-align: center;
}

.trust-grid > span:first-child {
  border-left: 0;
}

.trust-grid > span::before {
  background: #60a5fa;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
  content: "";
  flex: 0 0 auto;
  height: 6px;
  margin-right: 8px;
  width: 6px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  background: rgba(255, 255, 255, 0.045);
  border-left: 1px solid rgba(226, 236, 248, 0.12);
  min-width: 0;
  padding: 26px 24px;
}

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

.metric-card strong {
  color: #fff;
  display: block;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.metric-card span {
  color: #b9c8d9;
  display: block;
  line-height: 1.58;
  margin-top: 10px;
}

.page-guide {
  position: relative;
  z-index: 3;
}

.page-guide-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 68px;
}

.page-guide-inner > span {
  color: #ffb86b;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  margin-right: 4px;
}

.page-guide a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-radius: 999px;
  color: #d7e2f0;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
  padding: 8px 12px;
  text-decoration: none;
}

.page-guide a:hover {
  border-color: rgba(255, 184, 107, 0.6);
  color: #fff;
}

.section {
  background: var(--paper-2);
  padding: clamp(72px, 8vw, 106px) 0;
  position: relative;
}

.section-alt {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-dark {
  background:
    linear-gradient(180deg, var(--dark), var(--dark-2) 62%, #0a1422);
}

.section-dark .section-inner,
.cta-band .section-inner,
.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  border-left: 3px solid var(--blue);
  margin-bottom: 34px;
  max-width: 900px;
  padding-left: 22px;
}

.section-heading.center {
  border-left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 790px;
  padding-left: 0;
  text-align: center;
}

.section-heading.center .section-kicker {
  justify-content: center;
}

.section-heading h2,
.service-copy h2,
.rich-text h2 {
  color: var(--ink);
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.1;
}

.section-heading p,
.service-copy p,
.card p,
.platform-card p,
.cloud-card p,
.contact-card p,
.related-card p,
.triage-card p,
.contact-channel p,
.rich-text p,
.rich-text li,
.page-hero p,
.cta-band p,
.workflow-card p,
.problem-card p,
.service-entry p,
.service-brief-card p,
.architecture-item p {
  color: var(--muted);
  line-height: 1.74;
}

.section-heading > p:not(.section-kicker) {
  max-width: 780px;
}

.section-dark .section-heading h2,
.section-dark .card h3,
.section-dark .platform-card h3,
.section-dark .architecture-item h3,
.cta-band h2 {
  color: #fff;
}

.section-dark .section-heading p,
.section-dark .card p,
.section-dark .platform-card p,
.section-dark .architecture-item p {
  color: #bdccdc;
}

.grid-3,
.grid-2,
.platform-grid,
.cloud-grid,
.problem-grid,
.service-entry-grid,
.workflow-map,
.related-grid,
.triage-grid,
.contact-channel-grid {
  display: grid;
  gap: 18px;
}

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

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

.problem-grid,
.workflow-map {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-entry-grid,
.related-grid,
.triage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.triage-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.platform-card,
.cloud-card,
.contact-card,
.workflow-card,
.problem-card,
.service-entry,
.related-card,
.triage-card,
.contact-channel,
.handoff-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(13, 21, 36, 0.055);
  overflow: hidden;
  min-width: 0;
  position: relative;
}

.card,
.platform-card,
.cloud-card,
.contact-card,
.workflow-card,
.problem-card,
.service-entry,
.related-card,
.triage-card,
.contact-channel {
  padding: 25px;
}

.card::after,
.platform-card::after,
.cloud-card::after,
.problem-card::after,
.service-entry::after,
.related-card::after,
.triage-card::after,
.contact-channel::after,
.workflow-card::after {
  border-right: 1px solid rgba(37, 99, 235, 0.35);
  border-top: 1px solid rgba(37, 99, 235, 0.35);
  content: "";
  height: 18px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 18px;
}

.card,
.platform-card,
.cloud-card,
.workflow-card,
.problem-card,
.service-entry,
.related-card,
.triage-card,
.contact-channel {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.card:hover,
.platform-card:hover,
.cloud-card:hover,
.workflow-card:hover,
.problem-card:hover,
.service-entry:hover,
.related-card:hover,
.triage-card:hover,
.contact-channel:hover {
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow-soft),
    0 0 34px rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
}

html.reveal-ready .section-heading,
html.reveal-ready .service-entry,
html.reveal-ready .problem-card,
html.reveal-ready .architecture-item,
html.reveal-ready .workflow-card,
html.reveal-ready .platform-card,
html.reveal-ready .cloud-card,
html.reveal-ready .card,
html.reveal-ready .service-brief-card,
html.reveal-ready .contact-channel,
html.reveal-ready .triage-card,
html.reveal-ready .related-card,
html.reveal-ready .rich-text,
html.reveal-ready .cta-brief-panel {
  opacity: 0;
  transform: translateY(26px);
}

html.reveal-ready .is-revealed {
  animation: revealLift 660ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

.section-dark .card,
.section-dark .platform-card {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(226, 236, 248, 0.16);
  box-shadow: none;
}

.section-dark .card::after,
.section-dark .platform-card::after {
  border-color: rgba(255, 184, 107, 0.34);
}

.card h3,
.platform-card h3,
.cloud-card h3,
.contact-card h3,
.workflow-card h3,
.problem-card h3,
.service-entry h3,
.related-card h3,
.triage-card h3,
.contact-channel h3,
.service-brief-card h3 {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 21px;
  gap: 12px;
  line-height: 1.22;
  margin: 0 0 13px;
  min-height: 40px;
}

.card h3::before,
.platform-card h3::before,
.cloud-card h3::before,
.problem-card h3::before,
.service-entry h3::before,
.related-card h3::before,
.triage-card h3::before,
.contact-channel h3::before,
.service-brief-card h3::before,
.hero-proof-grid strong::before,
.command-route strong::before {
  background: currentColor;
  content: "";
  flex: 0 0 auto;
  height: 1px;
  opacity: 0.6;
  width: 26px;
}

html.lucide-ready .has-lucide-icon::before {
  display: none !important;
}

.lucide-mark {
  align-items: center;
  background: #f5f8ff;
  border: 1px solid #dbe8ff;
  border-radius: 10px;
  color: #1d4ed8;
  display: none;
  flex: 0 0 auto;
  height: 36px;
  justify-content: center;
  width: 36px;
}

html.lucide-ready .lucide-mark {
  display: inline-flex;
}

.lucide-mark svg {
  height: 18px;
  width: 18px;
}

.section-dark .lucide-mark,
.hero .lucide-mark,
.page-hero .lucide-mark,
.service-brief-section .lucide-mark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(226, 236, 248, 0.18);
  color: #cfe1ff;
}

.button .lucide-mark,
.nav-cta .lucide-mark,
.button-secondary .lucide-mark,
.hero .button-secondary .lucide-mark,
.page-hero .button-secondary .lucide-mark,
.cta-band .button-secondary .lucide-mark {
  background: transparent;
  border: 0;
  color: currentColor;
  height: 18px;
  width: 18px;
}

.button .lucide-mark svg,
.nav-cta .lucide-mark svg {
  height: 17px;
  width: 17px;
}

.command-route .lucide-mark {
  color: #ffb86b;
  height: 30px;
  width: 30px;
}

.command-route .lucide-mark svg,
.hero-proof-grid .lucide-mark svg {
  height: 16px;
  width: 16px;
}

.hero-proof-grid .lucide-mark {
  height: 32px;
  width: 32px;
}

.card p,
.platform-card p,
.cloud-card p,
.contact-card p,
.workflow-card p,
.problem-card p,
.related-card p,
.triage-card p,
.contact-channel p {
  margin: 0;
}

.card-accent,
.platform-card,
.cloud-card,
.workflow-card,
.related-card,
.triage-card {
  border-top: 3px solid #cfdae7;
}

.problem-card,
.service-entry,
.related-card,
.triage-card,
.contact-channel {
  display: flex;
  flex-direction: column;
}

.problem-card span,
.service-entry-label,
.service-brief-card span,
.cloud-card strong,
.related-card span,
.triage-card span {
  background: var(--orange-soft);
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: #c2410c;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 16px;
  padding: 5px 9px;
  width: fit-content;
}

.problem-card a,
.service-entry a,
.related-card a,
.text-link {
  color: var(--blue);
  font-weight: 900;
  margin-top: auto;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.problem-card p + a {
  padding-top: 18px;
}

.architecture-grid {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 236, 248, 0.18);
  border-radius: 10px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  position: relative;
}

.architecture-grid::before {
  background: linear-gradient(90deg, #ffb86b, #60a5fa);
  content: "";
  height: 2px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 67px;
  z-index: 1;
}

.architecture-item {
  background: rgba(255, 255, 255, 0.065);
  border-left: 1px solid rgba(226, 236, 248, 0.12);
  min-width: 0;
  padding: 32px 28px;
  position: relative;
}

.architecture-item:first-child {
  border-left: 0;
}

.architecture-item span {
  background: #0a1322;
  border: 1px solid rgba(255, 184, 107, 0.38);
  border-radius: 999px;
  color: #ffb86b;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 34px;
  padding: 7px 10px;
  position: relative;
  z-index: 2;
}

.architecture-item h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.architecture-item a {
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  margin-top: 18px;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-entry {
  padding: 26px;
}

.service-entry-primary {
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.09), rgba(37, 99, 235, 0.055)),
    #fff;
  border-color: rgba(249, 115, 22, 0.42);
  border-top-color: rgba(249, 115, 22, 0.6);
}

.service-entry ul {
  border-top: 1px solid #e5edf7;
  color: var(--ink-2);
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 18px 0 0;
}

.service-entry li {
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr;
  line-height: 1.45;
  list-style: none;
}

.service-entry li::before {
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  content: "";
  height: 6px;
  margin-top: 9px;
  width: 6px;
}

.service-brief-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.22), transparent 24rem),
    #0b1626;
  border-bottom: 1px solid rgba(226, 236, 248, 0.12);
  color: #fff;
  padding: 0;
}

.service-brief-section .section-inner {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.service-brief-head {
  border-left: 1px solid rgba(226, 236, 248, 0.12);
  border-right: 1px solid rgba(226, 236, 248, 0.12);
  padding: 42px 30px;
}

.service-brief-head h2 {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.12;
  margin: 0;
}

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

.service-brief-card {
  background: rgba(255, 255, 255, 0.045);
  border-right: 1px solid rgba(226, 236, 248, 0.12);
  min-width: 0;
  padding: 42px 24px;
}

.service-brief-card span {
  background: rgba(255, 184, 107, 0.12);
  border-color: rgba(255, 184, 107, 0.28);
  color: #ffb86b;
}

.service-brief-card h3 {
  color: #fff;
  font-size: 19px;
}

.service-brief-card p {
  color: #b9c8d9;
}

.service-split {
  align-items: start;
  display: grid;
  gap: clamp(32px, 6vw, 64px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.service-copy {
  position: sticky;
  top: 100px;
}

.service-copy p {
  font-weight: 500;
}

.check-list,
.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.check-list li,
.process-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-weight: 760;
  line-height: 1.6;
  list-style: none;
  padding: 16px 18px;
}

.process-list {
  counter-reset: process;
}

.process-list li {
  counter-increment: process;
  padding-left: 58px;
  position: relative;
}

.process-list li::before {
  align-items: center;
  background: var(--dark);
  border-radius: 7px;
  color: #fff;
  content: counter(process);
  display: inline-flex;
  font-family: var(--font-mono);
  font-weight: 900;
  height: 28px;
  justify-content: center;
  left: 16px;
  position: absolute;
  top: 15px;
  width: 28px;
}

.workflow-card {
  display: grid;
  gap: 14px;
}

.workflow-step {
  align-items: center;
  background: #eef4ff;
  border-radius: 7px;
  color: #1d4ed8;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 58px;
}

.page-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.24), transparent 27rem),
    linear-gradient(135deg, #07111f 0%, #101c2e 58%, #15253b 100%);
  padding: clamp(68px, 9vw, 112px) 0;
}

.page-hero .section-inner {
  max-width: 1180px;
}

.page-hero .section-inner::after {
  background:
    linear-gradient(90deg, rgba(255, 184, 107, 0.42), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 16px);
  bottom: -36px;
  content: "";
  height: 78px;
  opacity: 0.42;
  position: absolute;
  right: 40px;
  width: min(420px, 36vw);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(39px, 5vw, 58px);
  line-height: 1.08;
  max-width: 860px;
}

.page-hero p {
  color: #d8e3ef;
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 500;
  max-width: 830px;
}

.breadcrumb {
  color: #b9c8d9;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.mini-tag {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
}

.rich-text {
  max-width: 900px;
}

.rich-text h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
  margin: 34px 0 0;
}

.rich-text ul {
  padding-left: 20px;
}

.related-card a {
  display: inline-flex;
  margin-top: 18px;
}

.handoff-panel {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 28px;
}

.handoff-panel h2 {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
  margin: 0 0 10px;
}

.handoff-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-card a,
.contact-channel a {
  color: var(--blue);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.triage-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}

.triage-card li {
  color: var(--ink-2);
  line-height: 1.48;
  list-style: none;
}

.triage-card li::before {
  color: var(--orange);
  content: "- ";
  font-weight: 900;
}

.contact-channel-grid {
  margin-top: 22px;
}

.contact-channel {
  border-top-color: rgba(249, 115, 22, 0.52);
}

.contact-channel h3 {
  justify-content: space-between;
}

.cta-band {
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 99, 235, 0.26), transparent 24rem),
    linear-gradient(135deg, #07111f, #132033);
  padding: clamp(64px, 8vw, 88px) 0;
}

.cta-band h2 {
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.14;
  max-width: 860px;
}

.cta-band p {
  color: #c9d7e8;
  font-size: 18px;
  margin: 16px 0 0;
  max-width: 780px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.footer-inner {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  padding-bottom: 34px;
  padding-top: 34px;
}

.footer-note {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

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

.floating-dock {
  align-items: center;
  display: grid;
  gap: 13px;
  opacity: 1;
  pointer-events: auto;
  position: fixed;
  right: calc(18px + env(safe-area-inset-right));
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  z-index: 60;
  animation: dockFloat 4.8s ease-in-out infinite;
}

.floating-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  animation: dockFloat 4.8s ease-in-out infinite;
}

.floating-dock.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(16px, -50%, 0);
  animation: none;
}

.floating-action {
  align-items: center;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  width: 54px;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateX(-7px);
}

.floating-action:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.38);
  outline-offset: 3px;
}

.floating-action-contact {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(135deg, #229ed9, #2563eb 58%, #16a34a);
  box-shadow:
    0 14px 36px rgba(37, 99, 235, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.floating-action-top {
  backdrop-filter: blur(16px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(8, 17, 31, 0.82);
  box-shadow: 0 12px 32px rgba(7, 17, 31, 0.28);
}

.floating-action-pulse {
  background: rgba(56, 189, 248, 0.52);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
  animation: pulseRing 1.9s ease-out infinite;
}

.floating-action-icon {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  position: relative;
  width: 24px;
}

.floating-action-icon svg {
  height: 24px;
  width: 24px;
}

.floating-action-tip {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 31, 0.94);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  color: #eef6ff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  min-height: 38px;
  opacity: 0;
  padding: 0 14px;
  pointer-events: none;
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(8px, -50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

.floating-action-tip::after {
  background: rgba(7, 17, 31, 0.94);
  border-right: 1px solid rgba(226, 236, 248, 0.14);
  border-top: 1px solid rgba(226, 236, 248, 0.14);
  content: "";
  height: 10px;
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
}

.floating-action:hover .floating-action-tip,
.floating-action:focus-visible .floating-action-tip {
  opacity: 1;
  transform: translate(0, -50%);
}

[data-contact-visible="false"] {
  display: none !important;
}

@media (min-width: 981px) {
  .service-entry-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .service-entry {
    grid-column: span 4;
  }

  .service-entry:nth-child(1),
  .service-entry:nth-child(6) {
    grid-column: span 6;
  }

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

  .problem-card {
    grid-column: span 3;
  }
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 0;
  }

  .nav-menu a {
    padding-left: 9px;
    padding-right: 9px;
  }

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

  .problem-grid,
  .workflow-map,
  .triage-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    background:
      linear-gradient(135deg, rgba(255, 122, 26, 0.12), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
      rgba(7, 17, 31, 0.98);
    border: 1px solid rgba(226, 236, 248, 0.16);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.42);
    counter-reset: mobile-nav-item;
    display: none;
    flex-direction: column;
    gap: 8px;
    left: clamp(14px, 4vw, 28px);
    overflow: hidden;
    padding: 12px;
    position: absolute;
    right: clamp(14px, 4vw, 28px);
    top: 74px;
  }

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

  .nav-menu::before {
    color: #ffb86b;
    content: "SERVICE MAP";
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 950;
    padding: 4px 4px 2px;
  }

  .nav-menu a {
    align-items: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(226, 236, 248, 0.1);
    border-radius: 8px;
    color: #d7e2f0;
    display: grid;
    gap: 10px;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    min-height: 48px;
    padding: 0 12px 0 10px;
    width: 100%;
  }

  .nav-menu a::before {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(226, 236, 248, 0.12);
    border-radius: 8px;
    color: #ffcf9b;
    content: "0" counter(mobile-nav-item);
    counter-increment: mobile-nav-item;
    display: inline-flex;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 950;
    height: 30px;
    justify-content: center;
    width: 32px;
  }

  .nav-menu a::after {
    color: rgba(217, 230, 245, 0.58);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 950;
  }

  .nav-menu a:nth-of-type(1)::after {
    content: "HOME";
  }

  .nav-menu a:nth-of-type(2)::after {
    content: "ADS";
  }

  .nav-menu a:nth-of-type(3)::after {
    content: "WEB";
  }

  .nav-menu a:nth-of-type(4)::after {
    content: "BUILD";
  }

  .nav-menu a:nth-of-type(5)::after {
    content: "GAME";
  }

  .nav-menu a:nth-of-type(6)::after {
    content: "CLOUD";
  }

  .nav-menu a:nth-of-type(7)::after {
    content: "BRIEF";
  }

  .nav-menu a:hover,
  .nav-menu a[aria-current="page"] {
    background:
      linear-gradient(90deg, rgba(255, 122, 26, 0.22), rgba(37, 99, 235, 0.12)),
      rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 184, 107, 0.42);
    color: #fff;
  }

  .nav-menu a[aria-current="page"]::before {
    background: #ff7a1a;
    border-color: #ff7a1a;
    color: #fff;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-command-panel {
    align-self: start;
  }

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

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

  .metric-card {
    border-top: 1px solid rgba(226, 236, 248, 0.12);
  }

  .service-brief-section .section-inner,
  .service-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-copy {
    position: static;
  }

  .service-brief-grid {
    grid-template-columns: 1fr;
  }

  .service-brief-head,
  .service-brief-card {
    border-color: rgba(226, 236, 248, 0.14);
  }

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

  .architecture-grid::before {
    bottom: 30px;
    height: auto;
    left: 38px;
    right: auto;
    top: 42px;
    width: 2px;
  }

  .architecture-item {
    border-left: 0;
    border-top: 1px solid rgba(226, 236, 248, 0.12);
  }

  .architecture-item:first-child {
    border-top: 0;
  }
}

@media (max-width: 720px) {
  .section-inner,
  .nav-shell,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero .section-inner {
    min-height: auto;
    padding-bottom: 54px;
    padding-top: 48px;
  }

  .hero-content::before {
    left: -14px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof-grid,
  .grid-3,
  .grid-2,
  .platform-grid,
  .cloud-grid,
  .problem-grid,
  .service-entry-grid,
  .workflow-map,
  .related-grid,
  .triage-grid,
  .triage-grid-four,
  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-grid > span {
    justify-content: flex-start;
    min-height: 46px;
  }

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

  .metric-card {
    border-left: 0;
  }

  .page-hero {
    padding: 56px 0;
  }

  .page-hero .section-inner::after {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    padding-left: 16px;
  }

  .section-heading.center {
    text-align: left;
  }

  .section-heading.center .section-kicker {
    justify-content: flex-start;
  }

  .card,
  .platform-card,
  .cloud-card,
  .contact-card,
  .workflow-card,
  .problem-card,
  .service-entry,
  .related-card,
  .triage-card,
  .contact-channel {
    padding: 21px;
  }

  .card h3,
  .platform-card h3,
  .cloud-card h3,
  .contact-card h3,
  .workflow-card h3,
  .problem-card h3,
  .service-entry h3,
  .related-card h3,
  .triage-card h3,
  .contact-channel h3,
  .service-brief-card h3 {
    align-items: flex-start;
    font-size: 20px;
  }

  .lucide-mark {
    height: 31px;
    width: 31px;
  }

  .lucide-mark svg {
    height: 16px;
    width: 16px;
  }

  .hero-command-panel {
    padding: 18px;
  }

  .command-panel-head {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .command-route::before {
    left: 18px;
  }

  .command-route article {
    grid-template-columns: 38px 1fr;
  }

  .command-route span {
    height: 36px;
    width: 36px;
  }

  .command-metrics {
    grid-template-columns: 1fr;
  }

  .page-guide-inner {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .page-guide a {
    width: 100%;
  }

  .service-brief-head,
  .service-brief-card {
    padding: 28px 20px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .floating-dock {
    bottom: calc(16px + env(safe-area-inset-bottom));
    display: flex;
    gap: 10px;
    left: auto;
    max-width: calc(100vw - 28px);
    right: calc(14px + env(safe-area-inset-right));
    top: auto;
    transform: translateY(0);
    animation: none;
  }

  .floating-dock.is-visible {
    animation: none;
    transform: translateY(0);
  }

  .floating-dock.is-hidden {
    transform: translateY(14px);
  }

  .floating-action {
    height: 48px;
    width: 48px;
  }

  .floating-action:hover,
  .floating-action:focus-visible {
    transform: translateY(-3px);
  }

  .floating-action-tip {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 15px;
    gap: 9px;
  }

  .brand-mark {
    border-radius: 11px;
    height: 36px;
    width: 36px;
  }

  .nav-toggle {
    min-height: 38px;
    padding: 0 10px;
  }

  .hero-points span,
  .mini-tag {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .floating-dock {
    right: max(calc(14px + env(safe-area-inset-right)), calc(100vw - 416px));
  }
}

/* De-template pass: turn repeated cards into service-agency boards. */
@media (min-width: 981px) {
  .page-hero .section-inner {
    min-height: 350px;
    padding-right: clamp(360px, 38vw, 500px);
  }

  .page-hero .section-inner > * {
    position: relative;
    z-index: 1;
  }

  .page-hero .section-inner::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 34px),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
    border: 1px solid rgba(226, 236, 248, 0.18);
    border-radius: 10px;
    bottom: 44px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
    content: "";
    height: auto;
    opacity: 1;
    position: absolute;
    right: 40px;
    top: 44px;
    width: min(380px, 30vw);
  }

  .page-hero .section-inner::before {
    background:
      linear-gradient(90deg, #ffb86b, #60a5fa),
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
    border-radius: 999px;
    content: "";
    height: 3px;
    position: absolute;
    right: 72px;
    top: 76px;
    width: min(310px, 24vw);
    z-index: 1;
  }

  .page-hero .hero-actions::after {
    background:
      linear-gradient(90deg, rgba(255, 184, 107, 0.95), rgba(96, 165, 250, 0.65)),
      repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, 0.28) 20px 21px);
    border-radius: 999px;
    content: "";
    height: 3px;
    margin-left: 4px;
    width: 118px;
  }

  .problem-grid {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    gap: 0;
    overflow: hidden;
    position: relative;
  }

  .problem-grid::before {
    background: linear-gradient(90deg, #ffb86b, #60a5fa);
    content: "";
    height: 2px;
    left: 34px;
    position: absolute;
    right: 34px;
    top: 62px;
    z-index: 1;
  }

  .problem-card {
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    min-height: 276px;
    padding: 94px 26px 28px;
  }

  .problem-card:first-child {
    border-left: 0;
  }

  .problem-card:hover {
    box-shadow: none;
    transform: none;
  }

  .problem-card span {
    align-items: center;
    background: var(--dark);
    border: 1px solid rgba(255, 184, 107, 0.38);
    border-radius: 8px;
    color: #ffb86b;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    left: 26px;
    margin: 0;
    min-width: 42px;
    padding: 0 10px;
    position: absolute;
    top: 45px;
    z-index: 2;
  }

  .problem-card::after {
    display: none;
  }

  .workflow-map {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    gap: 0;
    overflow: hidden;
    position: relative;
  }

  .workflow-map::before {
    background: linear-gradient(90deg, #60a5fa, #ffb86b);
    content: "";
    height: 2px;
    left: 40px;
    position: absolute;
    right: 40px;
    top: 54px;
    z-index: 1;
  }

  .workflow-card {
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    min-height: 228px;
    padding: 84px 24px 26px;
  }

  .workflow-card:first-child {
    border-left: 0;
  }

  .workflow-card:hover {
    box-shadow: none;
    transform: none;
  }

  .workflow-step {
    left: 24px;
    position: absolute;
    top: 36px;
    z-index: 2;
  }

  .workflow-card::after {
    display: none;
  }
}

.rich-text {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(13, 21, 36, 0.055);
  padding: clamp(24px, 4vw, 42px);
}

.rich-text h2 {
  font-size: clamp(30px, 3.6vw, 42px);
}

.rich-text h3 {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.rich-text li {
  margin-top: 8px;
}

.service-entry-grid {
  align-items: stretch;
}

.service-entry-primary::before {
  background:
    linear-gradient(90deg, rgba(249, 115, 22, 0.18), rgba(37, 99, 235, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(249, 115, 22, 0.18) 18px 19px);
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 18px;
}

.service-entry-primary {
  padding-top: 36px;
}

.contact-channel {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035), transparent 46%),
    #fff;
}

/* Brand and provider icon pass. */
.brand-mark {
  background: #07111f;
  border: 0;
  border-radius: 13px;
  box-shadow:
    0 12px 28px rgba(2, 6, 23, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  height: 44px;
  overflow: hidden;
  padding: 0;
  width: 44px;
}

.brand > span:last-child {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 950;
  transform: translateY(1px);
}

.brand > span:last-child::after {
  color: #7dd3fc;
  content: "OVERSEAS OPS";
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 850;
  line-height: 1.1;
  margin-top: 3px;
}

.site-footer .brand > span:last-child::after {
  color: #64748b;
}

.brand-mark::after {
  display: none;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.provider-chip {
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 7px;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  height: 24px;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  position: relative;
  width: 24px;
}

.provider-chip::before {
  display: block;
  position: relative;
  z-index: 1;
}

.provider-stack {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 5px;
}

.provider-stack .provider-chip + .provider-chip {
  margin-left: 0;
}

.trust-grid > span {
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 5px;
}

.trust-grid > span::before {
  display: none;
}

.cloud-card strong,
.mini-tag {
  align-items: center;
  gap: 7px;
}

.cloud-card strong .provider-chip,
.mini-tag .provider-chip {
  height: 20px;
  width: 20px;
}

.provider-google-ads {
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from 180deg, #4285f4, #34a853, #fbbc04, #4285f4) border-box;
  border-color: transparent;
  color: #1a73e8;
}

.provider-google-ads::before {
  content: "G";
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.provider-google-ads::after {
  background: #fbbc04;
  border-radius: 999px;
  bottom: 4px;
  content: "";
  height: 5px;
  position: absolute;
  right: 4px;
  width: 5px;
}

.provider-meta {
  background: #eef6ff;
  color: #0866ff;
}

.provider-meta::before {
  content: "∞";
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  top: -1px;
}

.provider-tiktok {
  background: #070b16;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.provider-tiktok::before {
  color: #fff;
  content: "♪";
  font-size: 15px;
  text-shadow:
    -1px 0 #25f4ee,
    1px 0 #fe2c55;
}

.provider-alibaba-cloud {
  background: #ff6a00;
  color: #fff;
  width: 50px;
}

.provider-alibaba-cloud::before {
  content: "阿里云";
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
}

.provider-tencent-cloud {
  background: #1677ff;
  color: #fff;
  width: 50px;
}

.provider-tencent-cloud::before {
  content: "腾讯云";
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 950;
}

.provider-huawei-cloud {
  background: #e60012;
  color: #fff;
  width: 50px;
}

.provider-huawei-cloud::before {
  content: "华为云";
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 950;
}

.provider-google-cloud {
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from 180deg, #4285f4, #34a853, #fbbc04, #ea4335, #4285f4) border-box;
  border-color: transparent;
  color: #4285f4;
  width: 54px;
}

.provider-google-cloud::before {
  content: "Cloud";
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.provider-domain {
  background: #0b1626;
  color: #bfdbfe;
}

.provider-domain::before {
  content: "◎";
  font-size: 15px;
}

.provider-cloud-recharge {
  background: #e0f2fe;
  color: #0369a1;
}

.provider-cloud-recharge::before {
  content: "↻";
  font-size: 15px;
}

.provider-wallet {
  background: #eef4ff;
  color: #1d4ed8;
}

.provider-wallet::before {
  content: "¥";
}

.provider-billing {
  background: #26a17b;
  color: #fff;
}

.provider-billing::before {
  content: "₮";
  font-size: 15px;
}

.cloud-card strong .provider-alibaba-cloud,
.cloud-card strong .provider-tencent-cloud,
.cloud-card strong .provider-huawei-cloud,
.cloud-card strong .provider-google-cloud,
.mini-tag .provider-alibaba-cloud,
.mini-tag .provider-tencent-cloud,
.mini-tag .provider-huawei-cloud,
.mini-tag .provider-google-cloud {
  border-radius: 6px;
  font-size: 10px;
  height: 20px;
  width: 46px;
}

.cloud-card strong .provider-google-cloud,
.mini-tag .provider-google-cloud {
  width: 50px;
}

/* Domain cloud vendor board. */
.cloud-ops-rail {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 122, 26, 0.2), transparent 18rem),
    radial-gradient(circle at 92% 16%, rgba(37, 99, 235, 0.2), transparent 20rem),
    linear-gradient(135deg, #07111f, #101d30);
  border: 1px solid rgba(226, 236, 248, 0.15);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.14);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
}

.cloud-ops-rail article {
  border-left: 1px solid rgba(226, 236, 248, 0.1);
  min-height: 158px;
  padding: 24px;
  position: relative;
}

.cloud-ops-rail article:first-child {
  border-left: 0;
}

.cloud-ops-rail span {
  color: #ffb86b;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
}

.cloud-ops-rail strong {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  margin-top: 26px;
}

.cloud-ops-rail p {
  color: #bfd0e4;
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.cloud-ops-rail article::after {
  background: linear-gradient(90deg, #ff7a1a, rgba(37, 99, 235, 0.26));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

@media (min-width: 981px) {
  #cloud-vendors .cloud-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#cloud-vendors .cloud-vendor-card {
  --vendor-accent: #2563eb;
  --vendor-mark: "CLOUD";
  --vendor-slot: "SLOT 00";
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--vendor-accent) 8%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    #fff;
  border-color: #d7e2ef;
  box-shadow: 0 16px 38px rgba(13, 21, 36, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 342px;
  overflow: hidden;
  padding: 30px;
}

#cloud-vendors .cloud-vendor-card::after {
  color: color-mix(in srgb, var(--vendor-accent) 12%, transparent);
  content: var(--vendor-mark);
  display: block;
  font-family: Arial, sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  white-space: nowrap;
  z-index: 0;
}

#cloud-vendors .cloud-vendor-card::before {
  background: linear-gradient(180deg, var(--vendor-accent), color-mix(in srgb, var(--vendor-accent) 18%, transparent));
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.85;
  position: absolute;
  top: 0;
  width: 4px;
}

#cloud-vendors .cloud-vendor-domain {
  --vendor-accent: #0f172a;
  --vendor-mark: "DNS";
  --vendor-slot: "SLOT 01";
}

#cloud-vendors .cloud-vendor-alibaba {
  --vendor-accent: #ff6a00;
  --vendor-mark: "ALIBABA";
  --vendor-slot: "SLOT 02";
}

#cloud-vendors .cloud-vendor-tencent {
  --vendor-accent: #1677ff;
  --vendor-mark: "TENCENT";
  --vendor-slot: "SLOT 03";
}

#cloud-vendors .cloud-vendor-huawei {
  --vendor-accent: #e60012;
  --vendor-mark: "HUAWEI";
  --vendor-slot: "SLOT 04";
}

#cloud-vendors .cloud-vendor-google {
  --vendor-accent: #4285f4;
  --vendor-mark: "GOOGLE";
  --vendor-slot: "SLOT 05";
}

#cloud-vendors .cloud-vendor-billing {
  --vendor-accent: #26a17b;
  --vendor-mark: "BILLING";
  --vendor-slot: "SLOT 06";
}

#cloud-vendors .provider-lockup {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink-2);
  display: flex;
  font-family: var(--font-display);
  font-size: 13px;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  position: relative;
  width: auto;
  z-index: 1;
}

#cloud-vendors .provider-lockup::after {
  color: color-mix(in srgb, var(--vendor-accent) 82%, #0f172a);
  content: var(--vendor-slot);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  margin-left: auto;
}

#cloud-vendors .provider-lockup > span:last-child {
  color: #344256;
  font-weight: 950;
}

#cloud-vendors .provider-lockup .provider-chip {
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(13, 21, 36, 0.09);
  height: 30px;
  min-width: 90px;
  padding: 0 10px;
  width: auto;
}

#cloud-vendors .provider-lockup .provider-domain {
  min-width: 56px;
}

#cloud-vendors .provider-lockup .provider-domain::before {
  content: "DNS";
  font-family: var(--font-mono);
  font-size: 11px;
}

#cloud-vendors .provider-lockup .provider-alibaba-cloud::before {
  content: "Alibaba Cloud";
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

#cloud-vendors .provider-lockup .provider-tencent-cloud::before {
  content: "Tencent Cloud";
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

#cloud-vendors .provider-lockup .provider-huawei-cloud::before {
  content: "Huawei Cloud";
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

#cloud-vendors .provider-lockup .provider-google-cloud {
  min-width: 94px;
}

#cloud-vendors .provider-lockup .provider-google-cloud::before {
  content: "Google Cloud";
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

#cloud-vendors .provider-lockup .provider-billing {
  min-width: 68px;
}

#cloud-vendors .provider-lockup .provider-billing::before {
  content: "资源";
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

#cloud-vendors .cloud-vendor-card h3 {
  display: block;
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 16px;
  min-height: 0;
  position: relative;
  z-index: 1;
}

#cloud-vendors .cloud-vendor-card h3::before {
  display: none;
}

#cloud-vendors .cloud-vendor-card p {
  color: #53657b;
  font-size: 15px;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

#cloud-vendors .vendor-features {
  border-top: 1px solid #e2eaf4;
  display: grid;
  gap: 8px;
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
  position: relative;
  z-index: 1;
}

#cloud-vendors .vendor-features li {
  align-items: center;
  background: color-mix(in srgb, var(--vendor-accent) 5%, #fff);
  border: 1px solid color-mix(in srgb, var(--vendor-accent) 18%, #d7e2ef);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 42px;
  padding: 0 12px;
}

#cloud-vendors .vendor-features span {
  color: color-mix(in srgb, var(--vendor-accent) 82%, #0f172a);
  font-size: 12px;
  font-weight: 950;
}

#cloud-vendors .vendor-features b {
  color: #203049;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .cloud-ops-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cloud-ops-rail article:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .cloud-ops-rail {
    grid-template-columns: 1fr;
  }

  .cloud-ops-rail article {
    border-left: 0;
    border-top: 1px solid rgba(226, 236, 248, 0.1);
    min-height: 0;
    padding: 20px;
  }

  .cloud-ops-rail article:first-child {
    border-top: 0;
  }

  .cloud-ops-rail strong {
    font-size: 18px;
    margin-top: 16px;
  }

  #cloud-vendors .cloud-vendor-card {
    min-height: 0;
    padding: 24px 22px;
  }

  #cloud-vendors .section-heading h2 span {
    display: block;
  }

  #cloud-vendors .cloud-vendor-card::after {
    font-size: 34px;
    right: 12px;
    top: 18px;
  }

  #cloud-vendors .provider-lockup {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  #cloud-vendors .provider-lockup::after {
    flex: 1 0 auto;
    text-align: right;
  }

  #cloud-vendors .vendor-features li {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

.trust-grid .provider-alibaba-cloud,
.trust-grid .provider-tencent-cloud,
.trust-grid .provider-huawei-cloud {
  width: 60px;
}

.trust-grid .provider-alibaba-cloud::before,
.feature-strip .provider-alibaba-cloud::before {
  content: "Alibaba";
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.trust-grid .provider-tencent-cloud::before,
.feature-strip .provider-tencent-cloud::before {
  content: "Tencent";
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.trust-grid .provider-huawei-cloud::before,
.feature-strip .provider-huawei-cloud::before {
  content: "Huawei";
  font-family: Arial, sans-serif;
  font-size: 10px;
}

/* Service page identity panels. */
.page-hero {
  --page-accent: #60a5fa;
  --page-accent-2: #ffb86b;
  --hero-panel-title: "SERVICE OPS";
  --hero-panel-a: "01 需求诊断";
  --hero-panel-b: "02 交付清单";
  --hero-panel-c: "03 上线节奏";
  --hero-panel-foot: "从资源、页面、系统到投放统一排期";
}

.page-hero-advertising {
  --page-accent: #ff7a1a;
  --page-accent-2: #60a5fa;
  --hero-panel-title: "GROWTH OPS";
  --hero-panel-a: "01 页面 / 像素 / 客服";
  --hero-panel-b: "02 渠道 / 素材 / 预算";
  --hero-panel-c: "03 数据 / 复盘 / 放量";
  --hero-panel-foot: "先检查承接，再启动投放测试";
}

.page-hero-software {
  --page-accent: #38bdf8;
  --page-accent-2: #ffb86b;
  --hero-panel-title: "BUILD DESK";
  --hero-panel-a: "01 官网 / 落地页";
  --hero-panel-b: "02 后台 / 看板 / 表单";
  --hero-panel-c: "03 维护 / 迭代 / 备份";
  --hero-panel-foot: "把承接页面和运营后台一起规划";
}

.page-hero-platform {
  --page-accent: #818cf8;
  --page-accent-2: #ffb86b;
  --hero-panel-title: "LAUNCH MAP";
  --hero-panel-a: "01 最小可运营版本";
  --hero-panel-b: "02 订单 / 会员 / 权限";
  --hero-panel-c: "03 上线 / 扩展 / 运维";
  --hero-panel-foot: "先上线核心闭环，再扩展运营模块";
}

.page-hero-game {
  --page-accent: #f43f5e;
  --page-accent-2: #60a5fa;
  --hero-panel-title: "GAME OPS";
  --hero-panel-a: "01 平台 / 内容 / 活动";
  --hero-panel-b: "02 渠道 / 用户 / 留存";
  --hero-panel-c: "03 后台 / 数据 / 复盘";
  --hero-panel-foot: "项目官网、活动系统和推广链路同步设计";
}

.page-hero-cloud {
  --page-accent: #22c55e;
  --page-accent-2: #60a5fa;
  --hero-panel-title: "CLOUD DESK";
  --hero-panel-a: "01 域名 / DNS / 证书";
  --hero-panel-b: "02 基础资源 / 访问稳定";
  --hero-panel-c: "03 证书 / 上线保障";
  --hero-panel-foot: "基础资源是页面上线和投放承接的基础";
}

.page-hero-contact {
  --page-accent: #f97316;
  --page-accent-2: #38bdf8;
  --hero-panel-title: "REQUEST TRIAGE";
  --hero-panel-a: "01 项目阶段";
  --hero-panel-b: "02 目标市场";
  --hero-panel-c: "03 当前阻塞点";
  --hero-panel-foot: "先分诊，再给出服务顺序和排期";
}

@media (min-width: 981px) {
  .page-hero {
    background:
      radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--page-accent) 24%, transparent), transparent 27rem),
      linear-gradient(135deg, #07111f 0%, #101c2e 58%, #15253b 100%);
  }

  .page-hero .section-inner::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
      linear-gradient(90deg, color-mix(in srgb, var(--page-accent) 24%, transparent), transparent 52%),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 36px);
    border: 1px solid rgba(226, 236, 248, 0.18);
    border-top: 3px solid var(--page-accent);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    color: #edf6ff;
    content: var(--hero-panel-title) "\A\A" var(--hero-panel-a) "\A" var(--hero-panel-b) "\A" var(--hero-panel-c) "\A\A" var(--hero-panel-foot);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    height: auto;
    line-height: 2.15;
    opacity: 1;
    padding: 30px 28px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    white-space: pre-line;
    animation: panelFloat 7s ease-in-out infinite;
  }

  .page-hero .section-inner::before {
    background:
      linear-gradient(90deg, var(--page-accent), var(--page-accent-2)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
    box-shadow: 0 0 24px color-mix(in srgb, var(--page-accent) 32%, transparent);
  }
}

.service-brief-section {
  background:
    radial-gradient(circle at 84% 8%, rgba(96, 165, 250, 0.2), transparent 24rem),
    linear-gradient(180deg, #0b1626 0%, #0a1322 100%);
}

.service-brief-card {
  position: relative;
}

.service-brief-card::before {
  background: linear-gradient(180deg, rgba(255, 184, 107, 0.64), rgba(96, 165, 250, 0.16));
  content: "";
  height: 42px;
  left: 24px;
  position: absolute;
  top: 0;
  width: 2px;
}

.service-brief-card span {
  border-radius: 7px;
  letter-spacing: 0;
}

.service-brief-card h3::before {
  display: none;
}

/* Channel and capability matrices. */
.ad-ops-rail {
  background:
    radial-gradient(circle at 9% 0%, rgba(255, 122, 26, 0.22), transparent 18rem),
    radial-gradient(circle at 92% 20%, rgba(37, 99, 235, 0.22), transparent 20rem),
    linear-gradient(135deg, #07111f, #101d30);
  border: 1px solid rgba(226, 236, 248, 0.15);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.14);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
}

.ad-ops-rail article {
  border-left: 1px solid rgba(226, 236, 248, 0.1);
  min-height: 158px;
  padding: 24px;
  position: relative;
}

.ad-ops-rail article:first-child {
  border-left: 0;
}

.ad-ops-rail span {
  color: #ffb86b;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
}

.ad-ops-rail strong {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  margin-top: 26px;
}

.ad-ops-rail p {
  color: #bfd0e4;
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.ad-ops-rail article::after {
  background: linear-gradient(90deg, #ff7a1a, rgba(37, 99, 235, 0.26));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.software-ops-rail {
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.2), transparent 18rem),
    radial-gradient(circle at 90% 18%, rgba(255, 184, 107, 0.2), transparent 20rem),
    linear-gradient(135deg, #07111f, #101d30);
  border: 1px solid rgba(226, 236, 248, 0.15);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.14);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
}

.software-ops-rail article {
  border-left: 1px solid rgba(226, 236, 248, 0.1);
  min-height: 158px;
  padding: 24px;
  position: relative;
}

.software-ops-rail article:first-child {
  border-left: 0;
}

.software-ops-rail span {
  color: #7dd3fc;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
}

.software-ops-rail strong {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  margin-top: 26px;
}

.software-ops-rail p {
  color: #bfd0e4;
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.software-ops-rail article::after {
  background: linear-gradient(90deg, #38bdf8, rgba(255, 184, 107, 0.36));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.platform-ops-rail {
  background:
    radial-gradient(circle at 10% 0%, rgba(129, 140, 248, 0.22), transparent 18rem),
    radial-gradient(circle at 90% 18%, rgba(255, 184, 107, 0.18), transparent 20rem),
    linear-gradient(135deg, #07111f, #101d30);
  border: 1px solid rgba(226, 236, 248, 0.15);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.14);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
}

.platform-ops-rail article {
  border-left: 1px solid rgba(226, 236, 248, 0.1);
  min-height: 158px;
  padding: 24px;
  position: relative;
}

.platform-ops-rail article:first-child {
  border-left: 0;
}

.platform-ops-rail span {
  color: #c4b5fd;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
}

.platform-ops-rail strong {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  margin-top: 26px;
}

.platform-ops-rail p {
  color: #bfd0e4;
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.platform-ops-rail article::after {
  background: linear-gradient(90deg, #818cf8, rgba(255, 184, 107, 0.36));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.game-ops-rail {
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 63, 94, 0.22), transparent 18rem),
    radial-gradient(circle at 90% 18%, rgba(96, 165, 250, 0.2), transparent 20rem),
    linear-gradient(135deg, #07111f, #101d30);
  border: 1px solid rgba(226, 236, 248, 0.15);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.14);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
}

.game-ops-rail article {
  border-left: 1px solid rgba(226, 236, 248, 0.1);
  min-height: 158px;
  padding: 24px;
  position: relative;
}

.game-ops-rail article:first-child {
  border-left: 0;
}

.game-ops-rail span {
  color: #fda4af;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
}

.game-ops-rail strong {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  margin-top: 26px;
}

.game-ops-rail p {
  color: #bfd0e4;
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.game-ops-rail article::after {
  background: linear-gradient(90deg, #f43f5e, rgba(96, 165, 250, 0.36));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

#ad-platforms .platform-grid,
#software-scope .grid-3,
#platform-modules .grid-3,
#game-modules .grid-3 {
  align-items: stretch;
}

#ad-platforms .platform-card {
  --platform-accent: #2563eb;
  --platform-label: "CHANNEL";
  --platform-mark: "ADS";
  --platform-slot: "CHANNEL 00";
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--platform-accent) 8%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    #fff;
  border-color: #d7e2ef;
  border-top: 0;
  box-shadow: 0 14px 34px rgba(13, 21, 36, 0.075);
  display: flex;
  flex-direction: column;
  min-height: 356px;
  overflow: hidden;
  padding: 78px 28px 28px;
}

#ad-platforms .platform-card::before {
  background: color-mix(in srgb, var(--platform-accent) 13%, #fff);
  border: 1px solid color-mix(in srgb, var(--platform-accent) 38%, #d7e2ef);
  border-radius: 999px;
  color: var(--platform-accent);
  content: var(--platform-label);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  left: 24px;
  padding: 7px 10px;
  position: absolute;
  top: 22px;
  z-index: 2;
}

#ad-platforms .platform-card::after {
  border-color: color-mix(in srgb, var(--platform-accent) 45%, transparent);
}

#ad-platforms .platform-card h3,
#ad-platforms .platform-card p,
#ad-platforms .platform-factors {
  position: relative;
  z-index: 1;
}

#ad-platforms .platform-card h3 {
  align-items: flex-start;
  font-size: 24px;
  line-height: 1.18;
  min-height: 58px;
}

#ad-platforms .platform-card h3::after {
  color: color-mix(in srgb, var(--platform-accent) 12%, transparent);
  content: var(--platform-mark);
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: -52px;
  white-space: nowrap;
  z-index: -1;
}

#ad-platforms .platform-card p {
  color: #53657b;
  font-size: 15px;
}

#ad-platforms .platform-factors {
  border-top: 1px solid #e2eaf4;
  display: grid;
  gap: 8px;
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
}

#ad-platforms .platform-factors li {
  align-items: center;
  background: color-mix(in srgb, var(--platform-accent) 5%, #fff);
  border: 1px solid color-mix(in srgb, var(--platform-accent) 18%, #d7e2ef);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 42px;
  padding: 0 12px;
}

#ad-platforms .platform-factors span {
  color: color-mix(in srgb, var(--platform-accent) 82%, #0f172a);
  font-size: 12px;
  font-weight: 950;
}

#ad-platforms .platform-factors b {
  color: #203049;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

#ad-platforms .platform-card:nth-child(1) {
  --platform-accent: #4285f4;
  --platform-label: "SEARCH";
  --platform-mark: "GOOGLE";
  --platform-slot: "CHANNEL 01";
}

#ad-platforms .platform-card:nth-child(2) {
  --platform-accent: #0866ff;
  --platform-label: "SOCIAL";
  --platform-mark: "META";
  --platform-slot: "CHANNEL 02";
}

#ad-platforms .platform-card:nth-child(3) {
  --platform-accent: #111827;
  --platform-label: "SHORT VIDEO";
  --platform-mark: "TIKTOK";
  --platform-slot: "CHANNEL 03";
}

#ad-platforms .platform-card:nth-child(4) {
  --platform-accent: #ff6b00;
  --platform-label: "LATAM";
  --platform-mark: "KWAI";
  --platform-slot: "CHANNEL 04";
}

#ad-platforms .platform-card:nth-child(5) {
  --platform-accent: #7c3aed;
  --platform-label: "LIVE / GAME";
  --platform-mark: "BIGO";
  --platform-slot: "CHANNEL 05";
}

#ad-platforms .platform-card:nth-child(6) {
  --platform-accent: #229ed9;
  --platform-label: "COMMUNITY";
  --platform-mark: "TG";
  --platform-slot: "CHANNEL 06";
}

#software-scope .card-accent,
#platform-modules .card-accent,
#game-modules .card-accent {
  --module-accent: #2563eb;
  --module-label: "MODULE";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.99)),
    #fff;
  border-color: #d7e2ef;
  border-top: 0;
  box-shadow: 0 14px 34px rgba(13, 21, 36, 0.07);
  min-height: 246px;
  overflow: hidden;
  padding-top: 66px;
}

#software-scope .card-accent::before,
#platform-modules .card-accent::before,
#game-modules .card-accent::before {
  background: var(--dark);
  border-radius: 8px;
  color: #fff;
  content: var(--module-label);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  left: 24px;
  padding: 7px 10px;
  position: absolute;
  top: 22px;
}

#software-scope .card-accent::after,
#platform-modules .card-accent::after,
#game-modules .card-accent::after {
  border-color: color-mix(in srgb, var(--module-accent) 48%, transparent);
}

#software-scope .card-accent h3,
#platform-modules .card-accent h3,
#game-modules .card-accent h3 {
  align-items: flex-start;
}

#software-scope .card-accent h3::before,
#platform-modules .card-accent h3::before,
#game-modules .card-accent h3::before {
  background: var(--module-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--module-accent) 10%, transparent);
  height: 8px;
  margin-top: 11px;
  opacity: 1;
  width: 8px;
}

#software-scope .card-accent:nth-child(1) {
  --module-accent: #f97316;
  --module-label: "PAGE";
}

#software-scope .card-accent:nth-child(2) {
  --module-accent: #2563eb;
  --module-label: "MAINT";
}

#software-scope .card-accent:nth-child(3) {
  --module-accent: #0f766e;
  --module-label: "OPS";
}

#software-scope .card-accent:nth-child(4) {
  --module-accent: #7c3aed;
  --module-label: "ADMIN";
}

#software-scope .card-accent:nth-child(5) {
  --module-accent: #0284c7;
  --module-label: "DATA";
}

#software-scope .card-accent:nth-child(6) {
  --module-accent: #475569;
  --module-label: "SLA";
}

#software-scope .card-accent {
  --module-mark: "WEB";
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--module-accent) 8%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.99)),
    #fff;
  display: flex;
  flex-direction: column;
  min-height: 336px;
  padding: 72px 28px 28px;
}

#software-scope .card-accent h3,
#software-scope .card-accent p,
#software-scope .software-factors {
  position: relative;
  z-index: 1;
}

#software-scope .card-accent h3 {
  font-size: 24px;
  line-height: 1.18;
  min-height: 58px;
}

#software-scope .card-accent h3::after {
  color: color-mix(in srgb, var(--module-accent) 12%, transparent);
  content: var(--module-mark);
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: -52px;
  white-space: nowrap;
  z-index: -1;
}

#software-scope .card-accent p {
  color: #53657b;
  font-size: 15px;
}

#software-scope .software-factors {
  border-top: 1px solid #e2eaf4;
  display: grid;
  gap: 8px;
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
}

#software-scope .software-factors li {
  align-items: center;
  background: color-mix(in srgb, var(--module-accent) 5%, #fff);
  border: 1px solid color-mix(in srgb, var(--module-accent) 18%, #d7e2ef);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 42px;
  padding: 0 12px;
}

#software-scope .software-factors span {
  color: color-mix(in srgb, var(--module-accent) 82%, #0f172a);
  font-size: 12px;
  font-weight: 950;
}

#software-scope .software-factors b {
  color: #203049;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

#software-scope .card-accent:nth-child(1) {
  --module-mark: "PAGE";
}

#software-scope .card-accent:nth-child(2) {
  --module-mark: "MAINT";
}

#software-scope .card-accent:nth-child(3) {
  --module-mark: "OPS";
}

#software-scope .card-accent:nth-child(4) {
  --module-mark: "ADMIN";
}

#software-scope .card-accent:nth-child(5) {
  --module-mark: "DATA";
}

#software-scope .card-accent:nth-child(6) {
  --module-mark: "SLA";
}

#platform-modules .card-accent:nth-child(1) {
  --module-accent: #2563eb;
  --module-label: "CORE";
}

#platform-modules .card-accent:nth-child(2) {
  --module-accent: #0891b2;
  --module-label: "USER";
}

#platform-modules .card-accent:nth-child(3) {
  --module-accent: #f97316;
  --module-label: "PAY";
}

#platform-modules .card-accent:nth-child(4) {
  --module-accent: #16a34a;
  --module-label: "OPS";
}

#platform-modules .card-accent:nth-child(5) {
  --module-accent: #64748b;
  --module-label: "CLOUD";
}

#platform-modules .card-accent:nth-child(6) {
  --module-accent: #dc2626;
  --module-label: "ADS";
}

#platform-modules .card-accent {
  --module-mark: "BUILD";
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--module-accent) 8%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.99)),
    #fff;
  display: flex;
  flex-direction: column;
  min-height: 336px;
  padding: 72px 28px 28px;
}

#platform-modules .card-accent h3,
#platform-modules .card-accent p,
#platform-modules .platform-factors {
  position: relative;
  z-index: 1;
}

#platform-modules .card-accent h3 {
  font-size: 24px;
  line-height: 1.18;
  min-height: 58px;
}

#platform-modules .card-accent h3::after {
  color: color-mix(in srgb, var(--module-accent) 12%, transparent);
  content: var(--module-mark);
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: -52px;
  white-space: nowrap;
  z-index: -1;
}

#platform-modules .card-accent p {
  color: #53657b;
  font-size: 15px;
}

#platform-modules .platform-factors {
  border-top: 1px solid #e2eaf4;
  display: grid;
  gap: 8px;
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
}

#platform-modules .platform-factors li {
  align-items: center;
  background: color-mix(in srgb, var(--module-accent) 5%, #fff);
  border: 1px solid color-mix(in srgb, var(--module-accent) 18%, #d7e2ef);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 42px;
  padding: 0 12px;
}

#platform-modules .platform-factors span {
  color: color-mix(in srgb, var(--module-accent) 82%, #0f172a);
  font-size: 12px;
  font-weight: 950;
}

#platform-modules .platform-factors b {
  color: #203049;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

#platform-modules .card-accent:nth-child(1) {
  --module-mark: "CORE";
}

#platform-modules .card-accent:nth-child(2) {
  --module-mark: "USER";
}

#platform-modules .card-accent:nth-child(3) {
  --module-mark: "PAY";
}

#platform-modules .card-accent:nth-child(4) {
  --module-mark: "OPS";
}

#platform-modules .card-accent:nth-child(5) {
  --module-mark: "CLOUD";
}

#platform-modules .card-accent:nth-child(6) {
  --module-mark: "ADS";
}

#game-modules .card-accent:nth-child(1) {
  --module-accent: #f43f5e;
  --module-label: "PORTAL";
}

#game-modules .card-accent:nth-child(2) {
  --module-accent: #f97316;
  --module-label: "AD LINK";
}

#game-modules .card-accent:nth-child(3) {
  --module-accent: #7c3aed;
  --module-label: "EVENT";
}

#game-modules .card-accent:nth-child(4) {
  --module-accent: #2563eb;
  --module-label: "OPS";
}

#game-modules .card-accent:nth-child(5) {
  --module-accent: #0f766e;
  --module-label: "DATA";
}

#game-modules .card-accent:nth-child(6) {
  --module-accent: #64748b;
  --module-label: "CLOUD";
}

#game-modules .card-accent {
  --module-mark: "GAME";
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--module-accent) 8%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.99)),
    #fff;
  display: flex;
  flex-direction: column;
  min-height: 336px;
  padding: 72px 28px 28px;
}

#game-modules .card-accent h3,
#game-modules .card-accent p,
#game-modules .game-factors {
  position: relative;
  z-index: 1;
}

#game-modules .card-accent h3 {
  font-size: 24px;
  line-height: 1.18;
  min-height: 58px;
}

#game-modules .card-accent h3::after {
  color: color-mix(in srgb, var(--module-accent) 12%, transparent);
  content: var(--module-mark);
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: -52px;
  white-space: nowrap;
  z-index: -1;
}

#game-modules .card-accent p {
  color: #53657b;
  font-size: 15px;
}

#game-modules .game-factors {
  border-top: 1px solid #e2eaf4;
  display: grid;
  gap: 8px;
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
}

#game-modules .game-factors li {
  align-items: center;
  background: color-mix(in srgb, var(--module-accent) 5%, #fff);
  border: 1px solid color-mix(in srgb, var(--module-accent) 18%, #d7e2ef);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 42px;
  padding: 0 12px;
}

#game-modules .game-factors span {
  color: color-mix(in srgb, var(--module-accent) 82%, #0f172a);
  font-size: 12px;
  font-weight: 950;
}

#game-modules .game-factors b {
  color: #203049;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

#game-modules .card-accent:nth-child(1) {
  --module-mark: "PORTAL";
}

#game-modules .card-accent:nth-child(2) {
  --module-mark: "AD LINK";
}

#game-modules .card-accent:nth-child(3) {
  --module-mark: "EVENT";
}

#game-modules .card-accent:nth-child(4) {
  --module-mark: "OPS";
}

#game-modules .card-accent:nth-child(5) {
  --module-mark: "DATA";
}

#game-modules .card-accent:nth-child(6) {
  --module-mark: "CLOUD";
}

@media (max-width: 640px) {
  .ad-ops-rail {
    grid-template-columns: 1fr;
  }

  .ad-ops-rail article {
    border-left: 0;
    border-top: 1px solid rgba(226, 236, 248, 0.1);
    min-height: 0;
    padding: 20px;
  }

  .ad-ops-rail article:first-child {
    border-top: 0;
  }

  .ad-ops-rail strong {
    font-size: 18px;
    margin-top: 16px;
  }

  .software-ops-rail {
    grid-template-columns: 1fr;
  }

  .software-ops-rail article {
    border-left: 0;
    border-top: 1px solid rgba(226, 236, 248, 0.1);
    min-height: 0;
    padding: 20px;
  }

  .software-ops-rail article:first-child {
    border-top: 0;
  }

  .software-ops-rail strong {
    font-size: 18px;
    margin-top: 16px;
  }

  .platform-ops-rail {
    grid-template-columns: 1fr;
  }

  .platform-ops-rail article {
    border-left: 0;
    border-top: 1px solid rgba(226, 236, 248, 0.1);
    min-height: 0;
    padding: 20px;
  }

  .platform-ops-rail article:first-child {
    border-top: 0;
  }

  .platform-ops-rail strong {
    font-size: 18px;
    margin-top: 16px;
  }

  .game-ops-rail {
    grid-template-columns: 1fr;
  }

  .game-ops-rail article {
    border-left: 0;
    border-top: 1px solid rgba(226, 236, 248, 0.1);
    min-height: 0;
    padding: 20px;
  }

  .game-ops-rail article:first-child {
    border-top: 0;
  }

  .game-ops-rail strong {
    font-size: 18px;
    margin-top: 16px;
  }

  #ad-platforms .section-heading h2 span {
    display: block;
  }

  #software-scope .section-heading h2 span {
    display: block;
  }

  #platform-modules .section-heading h2 span {
    display: block;
  }

  #game-modules .section-heading h2 span {
    display: block;
  }

  #ad-platforms .platform-card,
  #software-scope .card-accent,
  #platform-modules .card-accent,
  #game-modules .card-accent {
    min-height: 0;
    padding-top: 72px;
  }

  #ad-platforms .platform-card h3 {
    min-height: 0;
  }

  #ad-platforms .platform-card h3::after {
    font-size: 32px;
    right: 10px;
    top: -44px;
  }

  #ad-platforms .platform-factors li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  #software-scope .card-accent h3 {
    min-height: 0;
  }

  #software-scope .card-accent h3::after {
    font-size: 32px;
    right: 10px;
    top: -44px;
  }

  #software-scope .software-factors li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  #platform-modules .card-accent h3 {
    min-height: 0;
  }

  #platform-modules .card-accent h3::after {
    font-size: 32px;
    right: 10px;
    top: -44px;
  }

  #platform-modules .platform-factors li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  #game-modules .card-accent h3 {
    min-height: 0;
  }

  #game-modules .card-accent h3::after {
    font-size: 32px;
    right: 10px;
    top: -44px;
  }

  #game-modules .game-factors li {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

/* Delivery lists and conversion panels. */
.section-alt .service-split {
  position: relative;
}

.process-list,
.check-list {
  position: relative;
}

.process-list li,
.check-list li {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035), transparent 52%),
    #fff;
  border: 1px solid #d7e2ef;
  border-left: 0;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(13, 21, 36, 0.055);
  color: #253348;
  min-height: 64px;
  position: relative;
}

.process-list li {
  padding: 18px 20px 18px 72px;
}

.process-list li::before {
  background: linear-gradient(135deg, #f97316, #2563eb);
  border-radius: 999px;
  box-shadow:
    0 0 0 6px rgba(37, 99, 235, 0.08),
    0 12px 22px rgba(37, 99, 235, 0.18);
  height: 32px;
  left: 22px;
  top: 18px;
  width: 32px;
}

.check-list li {
  padding: 18px 20px 18px 64px;
}

.check-list li::before {
  background: #eef6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  content: "";
  height: 28px;
  left: 20px;
  position: absolute;
  top: 18px;
  width: 28px;
}

.check-list li::after {
  border-bottom: 2px solid #2563eb;
  border-right: 2px solid #2563eb;
  content: "";
  height: 10px;
  left: 30px;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
  width: 6px;
}

#cloud-checklist .check-list li::before,
#submit-info .check-list li::before {
  background: #fff7ed;
  border-color: #fed7aa;
}

#cloud-checklist .check-list li::after,
#submit-info .check-list li::after {
  border-color: #f97316;
}

@media (min-width: 981px) {
  .process-list::before {
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.18), rgba(37, 99, 235, 0.18));
    bottom: 22px;
    content: "";
    left: 37px;
    position: absolute;
    top: 22px;
    width: 2px;
    z-index: 0;
  }

  .process-list li {
    z-index: 1;
  }

  .cta-band .section-inner {
    min-height: 260px;
    padding-right: clamp(350px, 36vw, 480px);
    position: relative;
  }

  .cta-band .section-inner::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 42px);
    border: 1px solid rgba(226, 236, 248, 0.18);
    border-top: 3px solid #ff7a1a;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    color: #edf6ff;
    content: "NEXT STEP";
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    padding: 28px 30px 72px;
    position: absolute;
    right: clamp(18px, 4vw, 40px);
    top: 50%;
    transform: translateY(-50%);
    white-space: pre-line;
    width: min(350px, 30vw);
    z-index: 1;
  }

  .cta-band .section-inner::before {
    color: #d9e6f5;
    content: "项目分诊 / 目标市场 / 交付排序 / 上线节奏";
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.55;
    position: absolute;
    right: clamp(18px, 4vw, 40px);
    top: calc(50% + 18px);
    transform: translateY(-50%);
    width: min(290px, 25vw);
    z-index: 2;
  }
}

@media (max-width: 640px) {
  .process-list li,
  .check-list li {
    border-radius: 9px;
    min-height: 0;
  }

  .process-list li {
    padding: 16px 16px 16px 62px;
  }

  .process-list li::before {
    height: 30px;
    left: 17px;
    top: 16px;
    width: 30px;
  }

  .check-list li {
    padding: 16px 16px 16px 56px;
  }

  .check-list li::before {
    left: 16px;
    top: 16px;
  }

  .check-list li::after {
    left: 26px;
    top: 22px;
  }
}

/* Page guide and footer polish. */
.page-guide {
  background:
    linear-gradient(90deg, rgba(249, 115, 22, 0.09), transparent 34%),
    #07111f;
  border-bottom: 1px solid rgba(226, 236, 248, 0.14);
  border-top: 1px solid rgba(226, 236, 248, 0.08);
}

.page-guide-inner {
  align-items: center;
  display: flex;
  gap: 9px;
  min-height: 70px;
}

.page-guide-inner > span {
  align-items: center;
  color: #ffb86b;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
  gap: 8px;
  margin-right: 4px;
}

.page-guide-inner > span::before {
  background: #ffb86b;
  content: "";
  height: 1px;
  width: 26px;
}

.page-guide a {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-radius: 999px;
  color: #d9e6f5;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  text-decoration: none;
}

.page-guide a::before {
  color: #8ec5ff;
  content: "0" counter(page-guide-item);
  counter-increment: page-guide-item;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 950;
}

.page-guide-inner {
  counter-reset: page-guide-item;
}

.page-guide a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 184, 107, 0.42);
  color: #fff;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(249, 115, 22, 0.16), transparent 25rem),
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.18), transparent 22rem),
    #07111f;
  border-top: 1px solid rgba(226, 236, 248, 0.12);
  color: #e5edf7;
  position: relative;
}

.site-footer::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 80%);
  pointer-events: none;
  position: absolute;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  box-shadow:
    0 12px 28px rgba(2, 6, 23, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.footer-inner {
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  padding-bottom: clamp(42px, 6vw, 66px);
  padding-top: clamp(42px, 6vw, 66px);
  position: relative;
  z-index: 1;
}

.footer-note {
  color: #b9c8d9;
  font-size: 15px;
  max-width: 520px;
}

.footer-links {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(226, 236, 248, 0.12);
  border-radius: 12px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.footer-links a {
  align-items: center;
  border-left: 1px solid rgba(226, 236, 248, 0.1);
  border-top: 1px solid rgba(226, 236, 248, 0.1);
  color: #d9e6f5;
  display: inline-flex;
  font-size: 13px;
  min-height: 48px;
  padding: 0 16px;
}

.footer-links a:nth-child(1),
.footer-links a:nth-child(2),
.footer-links a:nth-child(3) {
  border-top: 0;
}

.footer-links a:nth-child(3n + 1) {
  border-left: 0;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 720px) {
  .page-guide {
    overflow: hidden;
  }

  .page-guide-inner {
    align-items: center;
    flex-direction: row;
    min-height: 64px;
    overflow-x: auto;
    padding-bottom: 13px;
    padding-top: 13px;
    scrollbar-width: none;
  }

  .page-guide-inner::-webkit-scrollbar {
    display: none;
  }

  .page-guide a {
    width: auto;
  }

  .footer-inner {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

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

  .footer-links a,
  .footer-links a:nth-child(1),
  .footer-links a:nth-child(2),
  .footer-links a:nth-child(3),
  .footer-links a:nth-child(3n + 1) {
    border-left: 0;
    border-top: 1px solid rgba(226, 236, 248, 0.1);
  }

  .footer-links a:first-child {
    border-top: 0;
  }
}

/* Footer service map redesign. */
.footer-desk {
  align-items: stretch;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.1fr) minmax(280px, 0.7fr);
}

.footer-brand-block {
  align-content: start;
  display: grid;
  gap: 18px;
}

.footer-brand-block .brand {
  width: fit-content;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 520px;
}

.footer-badges span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 236, 248, 0.12);
  border-radius: 999px;
  color: #dce8f7;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  padding: 7px 10px;
}

.footer-service-map {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.045);
  border-radius: 14px;
  grid-template-columns: 1fr;
}

.footer-service-map a,
.footer-service-map a:nth-child(1),
.footer-service-map a:nth-child(2),
.footer-service-map a:nth-child(3),
.footer-service-map a:nth-child(3n + 1) {
  align-items: start;
  border-left: 0;
  border-top: 1px solid rgba(226, 236, 248, 0.1);
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 15px 18px;
}

.footer-service-map a:first-child {
  border-top: 0;
}

.footer-service-map a span {
  color: #ffcf9b;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
}

.footer-service-map a strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 950;
}

.footer-service-map a em {
  color: #aebfd2;
  font-style: normal;
  line-height: 1.45;
}

.footer-contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    linear-gradient(135deg, rgba(255, 122, 26, 0.12), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(226, 236, 248, 0.15);
  border-radius: 14px;
  display: grid;
  gap: 14px;
  padding: 24px;
  position: relative;
}

.footer-contact-card::before {
  background: linear-gradient(90deg, #ff7a1a, #2563eb);
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.footer-contact-card > span {
  color: #ffcf9b;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
}

.footer-contact-card strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
}

.footer-contact-card p {
  color: #b9c8d9;
  line-height: 1.72;
  margin: 0;
}

.footer-contact-card a {
  color: #fff;
  font-weight: 950;
  margin-top: auto;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(226, 236, 248, 0.1);
  color: #8fa2b8;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 18px clamp(18px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

.footer-legal-links {
  align-items: center;
  color: rgba(226, 236, 248, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px 16px;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 clamp(18px, 4vw, 40px) 18px;
  position: relative;
  z-index: 1;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
}

@media (max-width: 1180px) {
  .footer-desk {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .footer-contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .footer-desk {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    grid-column: auto;
  }

  .footer-service-map a {
    min-height: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Home control-page polish. */
.service-selector-section {
  background:
    radial-gradient(circle at 6% 8%, rgba(37, 99, 235, 0.07), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(249, 115, 22, 0.07), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.service-selector-section .section-heading {
  max-width: 980px;
}

.architecture-grid {
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.architecture-item {
  --layer-accent: #60a5fa;
  --layer-code: "OPS";
  overflow: hidden;
}

.architecture-item::after {
  color: rgba(255, 255, 255, 0.045);
  content: var(--layer-code);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 18px;
}

.architecture-item span {
  border-color: color-mix(in srgb, var(--layer-accent) 48%, rgba(255, 255, 255, 0.18));
  color: color-mix(in srgb, var(--layer-accent) 82%, #fff);
}

.architecture-item h3 {
  position: relative;
  z-index: 1;
}

.architecture-item a {
  color: #dbeafe;
  position: relative;
  z-index: 1;
}

.architecture-item:nth-child(1) {
  --layer-accent: #22c55e;
  --layer-code: "CLOUD";
}

.architecture-item:nth-child(2) {
  --layer-accent: #38bdf8;
  --layer-code: "PAGE";
}

.architecture-item:nth-child(3) {
  --layer-accent: #a78bfa;
  --layer-code: "OPS";
}

.architecture-item:nth-child(4) {
  --layer-accent: #fb923c;
  --layer-code: "GROWTH";
}

.service-entry {
  --entry-accent: #2563eb;
  --entry-stage-bg: #07111f;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--entry-accent) 6%, #fff), #fff 44%),
    #fff;
  border-color: #d7e2ef;
  border-top: 0;
  box-shadow: 0 14px 34px rgba(13, 21, 36, 0.065);
  min-height: 410px;
  overflow: hidden;
}

.service-entry::before {
  background: linear-gradient(90deg, var(--entry-accent), color-mix(in srgb, var(--entry-accent) 24%, transparent));
  content: "";
  height: 3px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.service-entry::after {
  border-color: color-mix(in srgb, var(--entry-accent) 48%, transparent);
}

.service-entry-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-entry-label {
  background: color-mix(in srgb, var(--entry-accent) 10%, #fff);
  border-color: color-mix(in srgb, var(--entry-accent) 34%, #d7e2ef);
  border-radius: 8px;
  color: color-mix(in srgb, var(--entry-accent) 82%, #0f172a);
  font-family: var(--font-mono);
  margin: 0;
}

.service-entry-stage {
  background: color-mix(in srgb, var(--entry-stage-bg) 94%, #fff);
  border: 1px solid color-mix(in srgb, var(--entry-accent) 24%, #111827);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.25;
  padding: 6px 9px;
  white-space: nowrap;
}

.service-entry h3 {
  align-items: flex-start;
  font-size: 23px;
  margin-bottom: 14px;
}

.service-entry h3::before {
  background: var(--entry-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--entry-accent) 10%, transparent);
  height: 8px;
  margin-top: 11px;
  opacity: 1;
  width: 8px;
}

.service-entry a {
  color: color-mix(in srgb, var(--entry-accent) 84%, #0f172a);
}

.service-entry-meta {
  border: 1px solid color-mix(in srgb, var(--entry-accent) 18%, #d7e2ef);
  border-radius: 10px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
}

.service-entry-meta span {
  background: color-mix(in srgb, var(--entry-accent) 5%, #fff);
  color: #334155;
  display: grid;
  gap: 4px;
  line-height: 1.35;
  min-height: 72px;
  padding: 13px 14px;
}

.service-entry-meta span + span {
  border-left: 1px solid color-mix(in srgb, var(--entry-accent) 18%, #d7e2ef);
}

.service-entry-meta b {
  color: color-mix(in srgb, var(--entry-accent) 84%, #0f172a);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
}

.service-entry ul {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--entry-accent) 4%, #fff), #fff);
  border: 1px solid color-mix(in srgb, var(--entry-accent) 16%, #d7e2ef);
  border-radius: 10px;
  margin: 18px 0 22px;
  padding: 14px 16px;
}

.service-entry li {
  color: #27364b;
  font-weight: 820;
}

.service-entry li::before {
  background: var(--entry-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--entry-accent) 10%, transparent);
}

.service-entry:nth-child(1) {
  --entry-accent: #f97316;
}

.service-entry:nth-child(2) {
  --entry-accent: #2563eb;
}

.service-entry:nth-child(3) {
  --entry-accent: #7c3aed;
}

.service-entry:nth-child(4) {
  --entry-accent: #f43f5e;
}

.service-entry:nth-child(5) {
  --entry-accent: #16a34a;
}

.service-entry:nth-child(6) {
  --entry-accent: #0f172a;
}

.service-entry-primary {
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(37, 99, 235, 0.08)),
    #fff;
  border-color: rgba(249, 115, 22, 0.5);
}

.service-entry-primary::before {
  background:
    linear-gradient(90deg, #ff7a1a, #2563eb),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(249, 115, 22, 0.18) 18px 19px);
  border-radius: 999px;
  height: 4px;
  top: 18px;
}

.service-entry-primary .service-entry-label {
  background: #07111f;
  border-color: rgba(255, 184, 107, 0.38);
  color: #ffb86b;
}

.section-dark .platform-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.platform-coverage-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 184, 107, 0.18), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(64, 124, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #0d1a2c 48%, #111827 100%);
}

.platform-coverage-section .section-inner {
  position: relative;
  z-index: 1;
}

.platform-coverage-section .section-heading {
  position: relative;
}

.platform-coverage-section .section-heading::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 184, 107, 0.95), transparent),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.24) 18px 19px);
  content: "";
  display: block;
  height: 2px;
  margin: 24px auto 0;
  max-width: 440px;
}

.platform-coverage-section .platform-grid {
  gap: 14px;
  margin-top: 42px;
}

.platform-coverage-section .platform-card {
  --coverage-accent: #4285f4;
  --coverage-label: "SEARCH";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    linear-gradient(135deg, color-mix(in srgb, var(--coverage-accent) 16%, transparent), transparent 46%),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(226, 236, 248, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  min-height: 338px;
  overflow: hidden;
  padding: 76px 24px 25px;
}

.platform-coverage-section .platform-card::before {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--coverage-accent) 20%, #fff), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid color-mix(in srgb, var(--coverage-accent) 46%, rgba(255, 255, 255, 0.16));
  border-radius: 999px;
  color: color-mix(in srgb, var(--coverage-accent) 58%, #fff);
  content: var(--coverage-label);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  left: 24px;
  letter-spacing: 0;
  padding: 7px 10px;
  position: absolute;
  top: 22px;
  z-index: 2;
}

.platform-coverage-section .platform-card::after {
  border-color: color-mix(in srgb, var(--coverage-accent) 68%, rgba(255, 255, 255, 0.2));
}

.platform-coverage-section .platform-card h3 {
  color: #fff;
  font-size: 20px;
  min-height: 42px;
}

.platform-coverage-section .platform-card h3::after {
  background: var(--coverage-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--coverage-accent) 16%, transparent);
  content: "";
  height: 8px;
  margin-left: auto;
  width: 8px;
}

.platform-coverage-section .platform-card p {
  color: rgba(222, 233, 248, 0.82);
  font-size: 15px;
}

.coverage-meta {
  border: 1px solid color-mix(in srgb, var(--coverage-accent) 36%, rgba(226, 236, 248, 0.13));
  border-radius: 10px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
}

.coverage-meta span {
  background: color-mix(in srgb, var(--coverage-accent) 12%, rgba(255, 255, 255, 0.055));
  color: #eaf4ff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.35;
  padding: 10px 11px;
}

.coverage-meta span + span {
  border-left: 1px solid color-mix(in srgb, var(--coverage-accent) 30%, rgba(226, 236, 248, 0.13));
}

.coverage-checks {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
}

.coverage-checks li {
  align-items: start;
  color: #dce8f7;
  display: grid;
  font-size: 14px;
  font-weight: 820;
  gap: 9px;
  grid-template-columns: auto minmax(0, 1fr);
  line-height: 1.45;
  list-style: none;
}

.coverage-checks li::before {
  background: var(--coverage-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--coverage-accent) 14%, transparent);
  content: "";
  height: 7px;
  margin-top: 7px;
  width: 7px;
}

.platform-coverage-section .lucide-mark {
  background: color-mix(in srgb, var(--coverage-accent) 17%, rgba(255, 255, 255, 0.08));
  border-color: color-mix(in srgb, var(--coverage-accent) 42%, rgba(255, 255, 255, 0.16));
  color: color-mix(in srgb, var(--coverage-accent) 52%, #fff);
}

.platform-coverage-section .platform-card:nth-child(1) {
  --coverage-accent: #4285f4;
  --coverage-label: "SEARCH";
}

.platform-coverage-section .platform-card:nth-child(2) {
  --coverage-accent: #0866ff;
  --coverage-label: "SOCIAL";
}

.platform-coverage-section .platform-card:nth-child(3) {
  --coverage-accent: #fe2c55;
  --coverage-label: "SHORT VIDEO";
}

.platform-coverage-section .platform-card:nth-child(4) {
  --coverage-accent: #ff6b00;
  --coverage-label: "LATAM";
}

.platform-coverage-section .platform-card:nth-child(5) {
  --coverage-accent: #7c3aed;
  --coverage-label: "LIVE / GAME";
}

.platform-coverage-section .platform-card:nth-child(6) {
  --coverage-accent: #229ed9;
  --coverage-label: "COMMUNITY";
}

@media (max-width: 720px) {
  .architecture-item::after {
    font-size: 44px;
    right: 14px;
    top: 14px;
  }

  .service-entry {
    min-height: 0;
  }

  .platform-coverage-section .platform-grid {
    gap: 12px;
    margin-top: 30px;
  }

  .platform-coverage-section .platform-card {
    min-height: 0;
    padding: 68px 20px 22px;
  }

  .coverage-meta {
    grid-template-columns: 1fr;
  }

  .coverage-meta span + span {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--coverage-accent) 30%, rgba(226, 236, 248, 0.13));
  }

  .platform-coverage-section .platform-card::before {
    left: 20px;
    top: 20px;
  }
}

/* Contact triage and channel desk. */
#need-triage .triage-grid-four {
  gap: 16px;
}

#need-triage .triage-card {
  --triage-accent: #2563eb;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--triage-accent) 7%, #fff), #fff 48%),
    #fff;
  border-color: #d7e2ef;
  box-shadow: 0 14px 34px rgba(13, 21, 36, 0.065);
  min-height: 340px;
  overflow: hidden;
  padding-top: 78px;
}

#need-triage .triage-card::before {
  background: color-mix(in srgb, var(--triage-accent) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--triage-accent) 36%, #d7e2ef);
  border-radius: 999px;
  color: color-mix(in srgb, var(--triage-accent) 86%, #0f172a);
  content: "PHASE";
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  left: 24px;
  padding: 7px 10px;
  position: absolute;
  top: 22px;
}

#need-triage .triage-card::after {
  border-color: color-mix(in srgb, var(--triage-accent) 44%, transparent);
}

#need-triage .triage-card span {
  background: transparent;
  border: 0;
  color: color-mix(in srgb, var(--triage-accent) 84%, #0f172a);
  font-size: 12px;
  margin-bottom: 16px;
  padding: 0;
}

#need-triage .triage-card h3::before {
  background: var(--triage-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--triage-accent) 10%, transparent);
  height: 8px;
  margin-top: 11px;
  opacity: 1;
  width: 8px;
}

#need-triage .triage-card ul {
  border-top: 1px solid #e5edf7;
  margin-top: 22px;
  padding-top: 16px;
}

#need-triage .triage-card li::before {
  color: var(--triage-accent);
}

#need-triage .triage-card:nth-child(1) {
  --triage-accent: #16a34a;
}

#need-triage .triage-card:nth-child(2) {
  --triage-accent: #f97316;
}

#need-triage .triage-card:nth-child(3) {
  --triage-accent: #2563eb;
}

#need-triage .triage-card:nth-child(4) {
  --triage-accent: #7c3aed;
}

#contact-channels .grid-3 {
  align-items: stretch;
}

#contact-channels .contact-channel {
  --channel-accent: #2563eb;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--channel-accent) 7%, #fff), #fff 50%),
    #fff;
  border-color: #d7e2ef;
  border-top: 0;
  box-shadow: 0 14px 34px rgba(13, 21, 36, 0.065);
  overflow: hidden;
  padding-top: 72px;
}

#contact-channels .contact-channel::before {
  background: var(--channel-accent);
  border-radius: 999px;
  color: #fff;
  content: "FAST";
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  left: 24px;
  padding: 7px 10px;
  position: absolute;
  top: 22px;
}

#contact-channels .contact-channel::after {
  border-color: color-mix(in srgb, var(--channel-accent) 48%, transparent);
}

#contact-channels .contact-channel h3::before {
  background: var(--channel-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--channel-accent) 10%, transparent);
  height: 8px;
  margin-top: 11px;
  opacity: 1;
  width: 8px;
}

#contact-channels .contact-channel h3 {
  justify-content: flex-start;
}

#contact-channels .contact-channel a {
  color: color-mix(in srgb, var(--channel-accent) 84%, #0f172a);
}

#contact-channels .contact-channel p:first-of-type a {
  align-items: center;
  background: color-mix(in srgb, var(--channel-accent) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--channel-accent) 30%, #d7e2ef);
  border-radius: 8px;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 15px;
  gap: 10px;
  margin-top: 2px;
  min-height: 42px;
  padding: 0 12px;
  text-decoration: none;
}

#contact-channels .contact-channel p:first-of-type a::after {
  background: var(--channel-accent);
  border-radius: 999px;
  color: #fff;
  content: "GO";
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 950;
  padding: 4px 6px;
}

#contact-channels .contact-channel:nth-child(1) {
  --channel-accent: #229ed9;
}

#contact-channels .contact-channel:nth-child(1)::before {
  content: "IM";
}

#contact-channels .contact-channel:nth-child(2) {
  --channel-accent: #16a34a;
}

#contact-channels .contact-channel:nth-child(2)::before {
  content: "MOBILE";
}

#contact-channels .contact-channel:nth-child(3) {
  --channel-accent: #f97316;
}

#contact-channels .contact-channel:nth-child(3)::before {
  content: "BRIEF";
}

#related-services .related-card {
  --related-accent: #2563eb;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--related-accent) 6%, #fff), #fff 46%),
    #fff;
  border-color: #d7e2ef;
  box-shadow: 0 14px 34px rgba(13, 21, 36, 0.06);
}

#related-services .related-card span {
  background: color-mix(in srgb, var(--related-accent) 10%, #fff);
  border-color: color-mix(in srgb, var(--related-accent) 34%, #d7e2ef);
  color: color-mix(in srgb, var(--related-accent) 84%, #0f172a);
}

#related-services .related-card h3::before {
  background: var(--related-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--related-accent) 10%, transparent);
  height: 8px;
  margin-top: 11px;
  opacity: 1;
  width: 8px;
}

#related-services .related-card a {
  color: color-mix(in srgb, var(--related-accent) 84%, #0f172a);
}

#related-services .related-card:nth-child(1) {
  --related-accent: #0f172a;
}

#related-services .related-card:nth-child(2) {
  --related-accent: #16a34a;
}

#related-services .related-card:nth-child(3) {
  --related-accent: #f97316;
}

.contact-brief-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(37, 99, 235, 0.08), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(255, 122, 26, 0.08), transparent 22rem),
    linear-gradient(180deg, #f8fbff, #fff 72%);
}

.contact-brief-desk {
  gap: clamp(24px, 4vw, 46px);
}

#submit-info .contact-brief-copy {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 122, 26, 0.22), transparent 16rem),
    radial-gradient(circle at 90% 20%, rgba(37, 99, 235, 0.2), transparent 20rem),
    linear-gradient(135deg, #07111f, #11213a 72%, #17243a);
  border-left-color: #2563eb;
  min-height: 0;
}

#submit-info .contact-brief-copy::after {
  content: "BRIEF";
  font-size: clamp(58px, 6vw, 92px);
}

.brief-status {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.brief-status div {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-radius: 10px;
  display: grid;
  gap: 4px 12px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 13px 14px;
}

.brief-status span {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.24), rgba(37, 99, 235, 0.24));
  border: 1px solid rgba(255, 184, 107, 0.28);
  border-radius: 9px;
  color: #ffcf9b;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 40px;
}

.brief-status strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.brief-status em {
  color: #b9c8d9;
  font-size: 13px;
  font-style: normal;
  grid-column: 2;
  line-height: 1.45;
}

.brief-note {
  border-top: 1px solid rgba(226, 236, 248, 0.13);
  display: grid;
  gap: 7px;
  margin-top: 28px;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.brief-note strong {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 950;
}

.brief-note span {
  color: #c7d5e7;
  line-height: 1.62;
}

.brief-panel {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent 36%),
    #fff;
  border: 1px solid #d7e2ef;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(13, 21, 36, 0.1);
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.brief-panel::before {
  background: linear-gradient(90deg, #ff7a1a, #2563eb, #20c7e8);
  content: "";
  height: 3px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.brief-panel-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 8px 18px;
}

.brief-panel-head span {
  background: #07111f;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  padding: 7px 10px;
}

.brief-panel-head strong {
  color: #0f172a;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
}

#submit-info .brief-panel .check-list {
  counter-reset: brief-item;
  gap: 10px;
}

#submit-info .brief-panel .check-list::after {
  content: none;
}

#submit-info .brief-panel .check-list li {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.045), transparent 48%),
    #fff;
  border: 1px solid #dbe6f3;
  border-left: 0;
  box-shadow: none;
  counter-increment: brief-item;
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 18px 20px 18px 102px;
}

#submit-info .brief-panel .check-list li::before {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.16), rgba(37, 99, 235, 0.12)),
    #fff;
  border: 1px solid #fed7aa;
  border-radius: 9px;
  color: #c2410c;
  content: "0" counter(brief-item);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  left: 22px;
  top: 22px;
  width: 46px;
}

#submit-info .brief-panel .check-list li::after {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.62), rgba(37, 99, 235, 0.22));
  border: 0;
  height: 1px;
  left: 78px;
  top: 40px;
  transform: none;
  width: 18px;
}

#submit-info .brief-panel .check-list strong {
  color: #0f172a;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.25;
}

#submit-info .brief-panel .check-list span {
  color: #536377;
  line-height: 1.65;
}

@media (max-width: 720px) {
  #need-triage .triage-card,
  #contact-channels .contact-channel {
    min-height: 0;
    padding-top: 66px;
  }

  .brief-status {
    margin-top: 22px;
  }

  .brief-panel {
    padding: 14px;
  }
}

@media (max-width: 640px) {
  #submit-info .contact-brief-copy {
    padding: 26px 20px;
  }

  #submit-info .contact-brief-copy::after {
    font-size: 46px;
    right: 14px;
    top: 20px;
  }

  .brief-status div {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 12px;
  }

  .brief-status em {
    grid-column: 1 / -1;
  }

  .brief-note {
    margin-top: 22px;
    padding-top: 18px;
  }

  .brief-panel-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 4px 16px;
  }

  #submit-info .brief-panel .check-list li {
    gap: 5px;
    min-height: 0;
    padding: 16px 16px 16px 72px;
  }

  #submit-info .brief-panel .check-list li::before {
    height: 34px;
    left: 16px;
    top: 18px;
    width: 42px;
  }

  #submit-info .brief-panel .check-list li::after {
    display: none;
  }

  #submit-info .brief-panel .check-list strong {
    font-size: 15px;
  }
}

/* Home upper funnel polish. */
.trust-strip {
  background:
    linear-gradient(90deg, rgba(255, 122, 26, 0.08), transparent 28%),
    linear-gradient(180deg, #08111f, #0b1626);
  border-top: 1px solid rgba(226, 236, 248, 0.08);
}

.trust-strip .section-inner {
  padding-bottom: 14px;
  padding-top: 14px;
}

.trust-grid {
  gap: 10px;
}

.trust-grid > span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 236, 248, 0.13);
  border-left: 1px solid rgba(226, 236, 248, 0.13);
  border-radius: 10px;
  color: #e5edf7;
  justify-content: flex-start;
  min-height: 58px;
  padding: 12px 14px;
  text-align: left;
}

.trust-grid > span:first-child {
  border-left: 1px solid rgba(226, 236, 248, 0.13);
}

.trust-grid > span:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 184, 107, 0.32);
}

.metrics {
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.16), transparent 25rem),
    radial-gradient(circle at 86% 4%, rgba(249, 115, 22, 0.12), transparent 24rem),
    #0b1626;
  border-bottom: 1px solid rgba(226, 236, 248, 0.1);
}

.metrics .section-inner {
  padding-bottom: 42px;
  padding-top: 6px;
}

.metrics-grid {
  gap: 12px;
}

.metric-card {
  --metric-accent: #22c55e;
  --metric-code: "01";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, color-mix(in srgb, var(--metric-accent) 15%, transparent), transparent 52%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 236, 248, 0.13);
  border-left: 1px solid rgba(226, 236, 248, 0.13);
  border-radius: 12px;
  min-height: 156px;
  overflow: hidden;
  padding: 48px 24px 24px;
  position: relative;
}

.metric-card:first-child {
  border-left: 1px solid rgba(226, 236, 248, 0.13);
}

.metric-card::before {
  background: color-mix(in srgb, var(--metric-accent) 18%, rgba(255, 255, 255, 0.08));
  border: 1px solid color-mix(in srgb, var(--metric-accent) 42%, rgba(255, 255, 255, 0.16));
  border-radius: 999px;
  color: color-mix(in srgb, var(--metric-accent) 56%, #fff);
  content: var(--metric-code) " / CHAIN";
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  left: 22px;
  padding: 6px 9px;
  position: absolute;
  top: 16px;
}

.metric-card::after {
  background: linear-gradient(90deg, var(--metric-accent), transparent);
  content: "";
  height: 3px;
  left: 22px;
  opacity: 0.8;
  position: absolute;
  right: 24px;
  top: 0;
}

.metric-card strong {
  font-size: 31px;
  letter-spacing: 0;
}

.metric-card span {
  color: #c6d5e7;
  font-size: 15px;
}

.metric-card:nth-child(1) {
  --metric-accent: #22c55e;
  --metric-code: "01";
}

.metric-card:nth-child(2) {
  --metric-accent: #38bdf8;
  --metric-code: "02";
}

.metric-card:nth-child(3) {
  --metric-accent: #a78bfa;
  --metric-code: "03";
}

.metric-card:nth-child(4) {
  --metric-accent: #fb923c;
  --metric-code: "04";
}

.home-breakpoints-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #fff 38%),
    #fff;
}

.home-breakpoints-section .section-heading {
  max-width: 940px;
}

.home-breakpoints-section .problem-grid {
  border-color: #d7e2ef;
  box-shadow: 0 22px 70px rgba(13, 21, 36, 0.08);
}

.home-breakpoints-section .problem-grid::before {
  display: none;
}

.home-breakpoints-section .problem-card {
  --problem-accent: #16a34a;
  --problem-code: "INFRA";
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--problem-accent) 5%, #fff), #fff 48%);
  box-shadow: inset 0 3px 0 color-mix(in srgb, var(--problem-accent) 84%, #fff);
  overflow: hidden;
}

.home-breakpoints-section .problem-card::before {
  color: color-mix(in srgb, var(--problem-accent) 12%, transparent);
  content: var(--problem-code);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 26px;
  z-index: 0;
}

.home-breakpoints-section .problem-card h3,
.home-breakpoints-section .problem-card p,
.home-breakpoints-section .problem-card a {
  position: relative;
  z-index: 1;
}

.home-breakpoints-section .problem-card > span {
  background: color-mix(in srgb, var(--problem-accent) 14%, #07111f);
  border-color: color-mix(in srgb, var(--problem-accent) 46%, rgba(255, 184, 107, 0.2));
  color: #fff;
  left: 26px;
  position: absolute;
  top: 45px;
  z-index: 1;
}

.home-breakpoints-section .problem-card h3 .lucide-mark {
  height: 34px;
  left: auto;
  position: static;
  top: auto;
  width: 34px;
}

.home-breakpoints-section .problem-card a {
  color: color-mix(in srgb, var(--problem-accent) 82%, #0f172a);
}

.home-breakpoints-section .problem-card:nth-child(1) {
  --problem-accent: #16a34a;
  --problem-code: "INFRA";
}

.home-breakpoints-section .problem-card:nth-child(2) {
  --problem-accent: #2563eb;
  --problem-code: "PAGE";
}

.home-breakpoints-section .problem-card:nth-child(3) {
  --problem-accent: #7c3aed;
  --problem-code: "OPS";
}

.home-breakpoints-section .problem-card:nth-child(4) {
  --problem-accent: #f97316;
  --problem-code: "ADS";
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .metric-card {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  .trust-strip .section-inner {
    padding-bottom: 12px;
    padding-top: 12px;
  }

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

  .trust-grid > span {
    min-height: 48px;
    padding: 10px 12px;
  }

  .metrics .section-inner {
    padding-bottom: 28px;
  }

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

  .metric-card {
    min-height: 0;
    padding: 46px 20px 20px;
  }

  .metric-card strong {
    font-size: 28px;
  }

  .home-breakpoints-section .problem-card::before {
    font-size: 40px;
    right: 16px;
    top: 18px;
  }

  .home-breakpoints-section .problem-card {
    padding: 84px 20px 22px;
  }

  .home-breakpoints-section .problem-card > span {
    left: 20px;
    top: 38px;
  }
}

/* Home delivery runway. */
.home-workflow-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9fe 62%, #eef4fb 100%);
  overflow: hidden;
  position: relative;
}

.home-workflow-section::after {
  background:
    radial-gradient(circle at 22% 20%, rgba(37, 99, 235, 0.08), transparent 26rem),
    radial-gradient(circle at 82% 70%, rgba(249, 115, 22, 0.09), transparent 25rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.home-workflow-section .section-inner {
  position: relative;
  z-index: 1;
}

.home-workflow-section .section-heading {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.44);
  border: 1px solid #dbe6f3;
  border-left: 4px solid #f97316;
  border-radius: 12px;
  box-shadow: 0 18px 52px rgba(13, 21, 36, 0.07);
  padding: clamp(24px, 3vw, 34px);
}

.home-workflow-section .section-heading.center {
  text-align: left;
}

.home-workflow-section .section-heading.center .section-kicker {
  justify-content: flex-start;
}

.home-workflow-section .section-heading h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.06;
}

.home-workflow-section .section-heading h2 span {
  display: block;
}

.home-workflow-section .workflow-map {
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    #07111f;
  border: 1px solid rgba(226, 236, 248, 0.16);
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.2);
  gap: 14px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.home-workflow-section .workflow-map::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  height: auto;
  inset: 0;
  left: auto;
  opacity: 0.72;
  position: absolute;
  right: auto;
  top: auto;
  z-index: 0;
}

.home-workflow-section .workflow-card {
  --flow-accent: #38bdf8;
  --flow-label: "BRIEF";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    linear-gradient(135deg, color-mix(in srgb, var(--flow-accent) 16%, transparent), transparent 46%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-radius: 12px;
  box-shadow: none;
  min-height: 224px;
  overflow: hidden;
  padding: 78px 24px 24px;
  position: relative;
  z-index: 1;
}

.home-workflow-section .workflow-card::before {
  background: linear-gradient(90deg, var(--flow-accent), transparent);
  content: "";
  height: 3px;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 18px;
}

.home-workflow-section .workflow-card::after {
  border: 0;
  color: color-mix(in srgb, var(--flow-accent) 18%, transparent);
  content: var(--flow-label);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 950;
  height: auto;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 34px;
  width: auto;
}

.home-workflow-section .workflow-step {
  background: color-mix(in srgb, var(--flow-accent) 18%, rgba(255, 255, 255, 0.08));
  border: 1px solid color-mix(in srgb, var(--flow-accent) 42%, rgba(255, 255, 255, 0.16));
  border-radius: 999px;
  color: color-mix(in srgb, var(--flow-accent) 60%, #fff);
  height: 34px;
  left: 24px;
  position: absolute;
  top: 34px;
  width: 58px;
  z-index: 2;
}

.home-workflow-section .workflow-card h3 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.home-workflow-section .workflow-card p {
  color: #c5d3e5;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.home-workflow-section .workflow-card .lucide-mark {
  background: color-mix(in srgb, var(--flow-accent) 14%, rgba(255, 255, 255, 0.06));
  border-color: color-mix(in srgb, var(--flow-accent) 36%, rgba(255, 255, 255, 0.14));
  color: color-mix(in srgb, var(--flow-accent) 58%, #fff);
}

.home-workflow-section .workflow-card:nth-child(1) {
  --flow-accent: #38bdf8;
  --flow-label: "BRIEF";
}

.home-workflow-section .workflow-card:nth-child(2) {
  --flow-accent: #a78bfa;
  --flow-label: "SCOPE";
}

.home-workflow-section .workflow-card:nth-child(3) {
  --flow-accent: #22c55e;
  --flow-label: "LAUNCH";
}

.home-workflow-section .workflow-card:nth-child(4) {
  --flow-accent: #fb923c;
  --flow-label: "REVIEW";
}

@media (min-width: 981px) {
  .home-workflow-section .section-inner {
    align-items: stretch;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  }

  .home-workflow-section .section-heading {
    align-content: center;
    display: grid;
    margin: 0;
  }

  .home-workflow-section .workflow-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-workflow-section .section-heading {
    margin-bottom: 22px;
  }
}

@media (max-width: 640px) {
  .home-workflow-section .section-heading {
    padding: 24px 20px;
  }

  .home-workflow-section .workflow-map {
    gap: 12px;
    padding: 12px;
  }

  .home-workflow-section .workflow-card {
    min-height: 0;
    padding: 74px 20px 22px;
  }

  .home-workflow-section .workflow-step {
    left: 20px;
    top: 30px;
  }

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

  .service-entry h3 {
    font-size: 21px;
  }

  .service-entry-meta {
    grid-template-columns: 1fr;
  }

  .service-entry-meta span {
    min-height: 0;
    padding: 12px 14px;
  }

  .service-entry-meta span + span {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--entry-accent) 18%, #d7e2ef);
  }
}

/* Home service entry closing card. */
@media (min-width: 981px) {
  .service-entry.service-entry-primary {
    align-items: start;
    column-gap: 34px;
    display: grid;
    grid-column: span 12;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
    min-height: 0;
    padding: 42px 34px 34px;
  }

  .service-entry-primary::before {
    left: 34px;
    right: 34px;
  }

  .service-entry-primary .service-entry-head,
  .service-entry-primary h3,
  .service-entry-primary > p:not(.service-entry-label),
  .service-entry-primary .service-entry-meta,
  .service-entry-primary > a {
    grid-column: 1;
  }

  .service-entry-primary ul {
    align-self: stretch;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
      rgba(255, 255, 255, 0.5);
    border: 1px solid color-mix(in srgb, #f97316 26%, #d7e2ef);
    border-radius: 12px;
    grid-column: 2;
    grid-row: 1 / span 5;
    margin: 0;
    padding: 22px 22px 20px;
  }

  .service-entry-primary li {
    color: #1d2938;
    font-weight: 850;
  }
}

/* Service page delivery boards. */
.section-alt .service-split {
  align-items: stretch;
}

.section-alt .service-copy {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 26, 0.2), transparent 18rem),
    radial-gradient(circle at 88% 14%, rgba(37, 99, 235, 0.18), transparent 20rem),
    linear-gradient(135deg, #07111f, #101d30);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-left: 4px solid #ff7a1a;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
  display: grid;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  position: sticky;
}

.section-alt .service-copy::after {
  color: rgba(255, 255, 255, 0.045);
  content: "DELIVERY";
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 22px;
}

.section-alt .service-copy .section-kicker,
.section-alt .service-copy h2,
.section-alt .service-copy p {
  position: relative;
  z-index: 1;
}

.section-alt .service-copy .section-kicker {
  color: #ffb86b;
}

.section-alt .service-copy h2 {
  color: #fff;
}

.section-alt .service-copy h2 span {
  display: block;
}

.section-alt .service-copy p {
  color: #c7d5e7;
}

.section-alt .service-split > .process-list,
.section-alt .service-split > .check-list {
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.11), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    #07111f;
  border: 1px solid rgba(226, 236, 248, 0.15);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.13);
  gap: 12px;
  padding: 16px;
}

.section-alt .service-split > .process-list::after,
.section-alt .service-split > .check-list::after {
  color: rgba(255, 255, 255, 0.3);
  content: "CHECK ITEMS";
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  position: absolute;
  right: 22px;
  top: -28px;
}

.section-alt .service-split > .process-list::after {
  content: "PROCESS STEPS";
}

.section-alt .service-split > .process-list li,
.section-alt .service-split > .check-list li {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  border-color: rgba(226, 236, 248, 0.14);
  box-shadow: none;
  color: #dce8f7;
}

.section-alt .service-split > .process-list li::before {
  box-shadow:
    0 0 0 6px rgba(255, 184, 107, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.2);
}

.section-alt .service-split > .check-list li::before {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 184, 107, 0.34);
}

.section-alt .service-split > .check-list li::after {
  border-color: #ffb86b;
}

#cloud-checklist .service-copy::after {
  content: "CLOUD";
}

#ad-flow .service-copy::after {
  content: "GROWTH";
}

#platform-launch .service-copy::after {
  content: "LAUNCH";
}

#game-loop .service-copy::after {
  content: "GAME OPS";
}

#software-maintenance .service-copy::after {
  content: "SYSTEM";
}

@media (max-width: 980px) {
  .section-alt .service-copy {
    min-height: 0;
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .section-alt .service-copy {
    padding: 26px 20px;
  }

  .section-alt .service-copy::after {
    font-size: 42px;
    right: 14px;
    top: 18px;
  }

  .section-alt .service-split > .process-list,
  .section-alt .service-split > .check-list {
    padding: 12px;
  }

  .section-alt .service-split > .process-list::after,
  .section-alt .service-split > .check-list::after {
    display: none;
  }
}

/* Scenario boards. */
.rich-text {
  background:
    radial-gradient(circle at 12% 10%, rgba(249, 115, 22, 0.18), transparent 18rem),
    radial-gradient(circle at 86% 14%, rgba(37, 99, 235, 0.18), transparent 20rem),
    linear-gradient(135deg, #07111f, #101d30);
  border: 1px solid rgba(226, 236, 248, 0.15);
  border-left: 0;
  border-radius: 16px;
  box-shadow: 0 28px 76px rgba(7, 17, 31, 0.18);
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  max-width: 1180px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  position: relative;
}

.rich-text::before {
  color: rgba(255, 255, 255, 0.045);
  content: "SCENARIO";
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 20px;
}

.rich-text::after {
  background: linear-gradient(90deg, #ff7a1a, #2563eb);
  content: "";
  height: 4px;
  left: clamp(28px, 4vw, 46px);
  position: absolute;
  right: clamp(28px, 4vw, 46px);
  top: 0;
}

#game-scenarios .rich-text::before {
  content: "GAME FIT";
}

#software-scenarios .rich-text::before {
  content: "WEB OPS";
}

.rich-text h2,
.rich-text > p,
.rich-text h3,
.rich-text ul {
  position: relative;
  z-index: 1;
}

.rich-text h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  grid-column: 1;
  line-height: 1.08;
  margin: 0;
}

.rich-text > p {
  color: #c7d5e7;
  font-size: 17px;
  grid-column: 1;
  line-height: 1.85;
  margin: 0;
}

.rich-text h3 {
  align-self: start;
  border: 0;
  color: #ffb86b;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 950;
  grid-column: 2;
  grid-row: 1;
  letter-spacing: 0;
  margin: 18px 20px 0;
  padding: 0;
  z-index: 2;
}

.rich-text h3::before {
  background: #ffb86b;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 9px;
  vertical-align: middle;
  width: 22px;
}

.rich-text ul {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(226, 236, 248, 0.14);
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-column: 2;
  grid-row: 1 / span 2;
  list-style: none;
  margin: 0;
  padding: 58px 18px 18px;
}

.rich-text li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 236, 248, 0.13);
  border-radius: 10px;
  color: #dce8f7;
  line-height: 1.65;
  margin: 0;
  padding: 14px 16px 14px 44px;
  position: relative;
}

.rich-text li::before {
  background: rgba(255, 184, 107, 0.13);
  border: 1px solid rgba(255, 184, 107, 0.34);
  border-radius: 8px;
  content: "";
  height: 22px;
  left: 14px;
  position: absolute;
  top: 15px;
  width: 22px;
}

.rich-text li::after {
  border-bottom: 2px solid #ffb86b;
  border-right: 2px solid #ffb86b;
  content: "";
  height: 8px;
  left: 22px;
  position: absolute;
  top: 20px;
  transform: rotate(45deg);
  width: 5px;
}

@media (max-width: 860px) {
  .rich-text {
    grid-template-columns: 1fr;
  }

  .rich-text h2,
  .rich-text > p,
  .rich-text h3,
  .rich-text ul {
    grid-column: 1;
  }

  .rich-text h3,
  .rich-text ul {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .rich-text {
    padding: 28px 18px 18px;
  }

  .rich-text::after {
    left: 18px;
    right: 18px;
  }

  .rich-text::before {
    font-size: 42px;
    right: 14px;
    top: 20px;
  }

  .rich-text h3 {
    margin-left: 0;
  }

  .rich-text ul {
    padding: 52px 12px 12px;
  }
}

/* Conversion CTA desk. */
.cta-band {
  background:
    radial-gradient(circle at 74% 18%, rgba(37, 99, 235, 0.32), transparent 24rem),
    radial-gradient(circle at 18% 82%, rgba(249, 115, 22, 0.18), transparent 22rem),
    linear-gradient(135deg, #07111f 0%, #0d1b2e 58%, #132033 100%);
}

.cta-band .section-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 760px;
  position: relative;
}

.cta-band h2::before {
  background: linear-gradient(90deg, #ff7a1a, #2563eb);
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 22px;
  width: 112px;
}

.cta-band .cta-actions {
  position: relative;
  z-index: 3;
}

.home-cta-band .section-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
}

.home-cta-band .section-inner::before,
.home-cta-band .section-inner::after {
  display: none;
}

.cta-copy {
  min-width: 0;
}

.cta-brief-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(255, 122, 26, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(226, 236, 248, 0.2);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  color: #edf6ff;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.cta-brief-panel::before {
  background:
    linear-gradient(90deg, #ff7a1a, #2563eb),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.22) 18px 19px);
  content: "";
  height: 4px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.cta-brief-panel > span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 184, 107, 0.28);
  border-radius: 999px;
  color: #ffcf9b;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.3;
  padding: 7px 10px;
}

.cta-brief-panel > strong {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
  margin-top: 18px;
}

.cta-brief-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.cta-brief-panel li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 236, 248, 0.13);
  border-radius: 10px;
  display: grid;
  gap: 5px;
  list-style: none;
  padding: 13px 14px;
}

.cta-brief-panel b {
  color: #ffcf9b;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
}

.cta-brief-panel em {
  color: #d8e6f6;
  font-style: normal;
  line-height: 1.45;
}

@media (min-width: 981px) {
  .cta-band .section-inner {
    padding-right: clamp(410px, 38vw, 520px);
  }

  .cta-band .section-inner::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
      linear-gradient(135deg, rgba(255, 122, 26, 0.1), transparent 44%),
      rgba(255, 255, 255, 0.035);
    border-color: rgba(226, 236, 248, 0.2);
    border-radius: 14px;
    content: "REQUEST BRIEF\a 项目阶段   目标市场\a 服务范围   上线节奏";
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.85;
    min-height: 188px;
    padding: 30px 30px 28px;
    width: min(390px, 32vw);
  }

  .cta-band .section-inner::before {
    background:
      linear-gradient(90deg, #ff7a1a, #2563eb),
      repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.22) 18px 19px);
    content: "";
    height: 4px;
    right: calc(clamp(18px, 4vw, 40px) + 30px);
    top: calc(50% - 62px);
    transform: none;
    width: min(330px, 27vw);
    z-index: 3;
  }

  .home-cta-band .section-inner {
    padding-right: clamp(18px, 4vw, 40px);
  }
}

@media (max-width: 980px) {
  .home-cta-band .section-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cta-brief-panel {
    padding: 24px 20px 20px;
  }

  .cta-brief-panel::before {
    left: 20px;
    right: 20px;
  }
}

/* Tail capability cards. */
#ad-review .grid-3,
#cloud-scenarios .grid-3,
#platform-extension .grid-2 {
  gap: 16px;
}

#ad-review .card,
#cloud-scenarios .card,
#platform-extension .card {
  --tail-accent: #2563eb;
  --tail-label: "SUPPORT";
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--tail-accent) 6%, #fff), #fff 50%),
    #fff;
  border-color: #d7e2ef;
  border-top: 0;
  box-shadow: 0 16px 42px rgba(13, 21, 36, 0.07);
  min-height: 230px;
  overflow: hidden;
  padding-top: 76px;
}

#ad-review .card::before,
#cloud-scenarios .card::before,
#platform-extension .card::before {
  background: color-mix(in srgb, var(--tail-accent) 11%, #fff);
  border: 1px solid color-mix(in srgb, var(--tail-accent) 34%, #d7e2ef);
  border-radius: 999px;
  color: color-mix(in srgb, var(--tail-accent) 82%, #0f172a);
  content: var(--tail-label);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 950;
  left: 24px;
  padding: 7px 10px;
  position: absolute;
  top: 22px;
  z-index: 1;
}

#ad-review .card::after,
#cloud-scenarios .card::after,
#platform-extension .card::after {
  border-color: color-mix(in srgb, var(--tail-accent) 48%, transparent);
}

#ad-review .card h3,
#cloud-scenarios .card h3,
#platform-extension .card h3 {
  align-items: flex-start;
}

#ad-review .card h3::before,
#cloud-scenarios .card h3::before,
#platform-extension .card h3::before {
  background: var(--tail-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--tail-accent) 10%, transparent);
  height: 8px;
  margin-top: 11px;
  opacity: 1;
  width: 8px;
}

#ad-review .card:nth-child(1) {
  --tail-accent: #f97316;
  --tail-label: "LANDING";
}

#ad-review .card:nth-child(2) {
  --tail-accent: #7c3aed;
  --tail-label: "CREATIVE";
}

#ad-review .card:nth-child(3) {
  --tail-accent: #2563eb;
  --tail-label: "REVIEW";
}

#platform-extension .card:nth-child(1) {
  --tail-accent: #f97316;
  --tail-label: "GROWTH";
}

#platform-extension .card:nth-child(2) {
  --tail-accent: #16a34a;
  --tail-label: "CLOUD";
}

#cloud-scenarios .card:nth-child(1) {
  --tail-accent: #2563eb;
  --tail-label: "PAGE";
}

#cloud-scenarios .card:nth-child(2) {
  --tail-accent: #7c3aed;
  --tail-label: "DEPLOY";
}

#cloud-scenarios .card:nth-child(3) {
  --tail-accent: #16a34a;
  --tail-label: "RENEW";
}

#cloud-scenarios .feature-strip {
  background:
    linear-gradient(90deg, rgba(249, 115, 22, 0.08), transparent 38%),
    #07111f;
  border: 1px solid rgba(226, 236, 248, 0.12);
  border-radius: 14px;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
}

#cloud-scenarios .mini-tag {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(226, 236, 248, 0.13);
  color: #e5edf7;
}

#cloud-scenarios .mini-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 184, 107, 0.34);
}

#ad-review .section-heading h2 span {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  html.reveal-ready .section-heading,
  html.reveal-ready .service-entry,
  html.reveal-ready .problem-card,
  html.reveal-ready .architecture-item,
  html.reveal-ready .workflow-card,
  html.reveal-ready .platform-card,
  html.reveal-ready .cloud-card,
  html.reveal-ready .card,
  html.reveal-ready .service-brief-card,
  html.reveal-ready .contact-channel,
  html.reveal-ready .triage-card,
  html.reveal-ready .related-card,
  html.reveal-ready .rich-text,
  html.reveal-ready .cta-brief-panel {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  #ad-review .card,
  #cloud-scenarios .card,
  #platform-extension .card {
    min-height: 0;
    padding-top: 68px;
  }

  #ad-review .card::before,
  #cloud-scenarios .card::before,
  #platform-extension .card::before {
    left: 20px;
    top: 20px;
  }
}

/* Wide editorial pass: make desktop layouts feel like a service firm, not a template. */
:root {
  --container-wide: 1360px;
  --container-nav: 1400px;
  --container-reading: 1040px;
  --gutter-wide: clamp(18px, 3.2vw, 56px);
  --panel-line: #d7e2ef;
  --panel-shadow: 0 18px 48px rgba(13, 21, 36, 0.08);
  --panel-shadow-strong: 0 28px 78px rgba(7, 17, 31, 0.16);
}

.section-inner,
.footer-inner {
  max-width: var(--container-wide);
  padding-left: var(--gutter-wide);
  padding-right: var(--gutter-wide);
}

.nav-shell {
  max-width: var(--container-nav);
  padding-left: var(--gutter-wide);
  padding-right: var(--gutter-wide);
}

.section {
  padding: clamp(76px, 7vw, 118px) 0;
}

.section-heading:not(.center) {
  max-width: 1120px;
}

.section-heading.center {
  max-width: 960px;
}

.section-heading h2,
.service-copy h2,
.rich-text h2 {
  font-size: clamp(34px, 3.7vw, 54px);
}

.section-heading > p:not(.section-kicker),
.service-copy p,
.page-hero p,
.cta-band p {
  max-width: var(--container-reading);
}

.card,
.platform-card,
.cloud-card,
.contact-card,
.workflow-card,
.problem-card,
.service-entry,
.related-card,
.triage-card,
.contact-channel,
.handoff-panel,
.hero-command-panel,
.service-brief-card,
.service-brief-head,
.section-alt .service-copy,
.section-alt .service-split > .process-list,
.section-alt .service-split > .check-list,
.rich-text,
.cta-brief-panel,
.footer-contact-card,
.footer-service-map a {
  border-radius: 8px;
}

.card,
.platform-card,
.cloud-card,
.problem-card,
.service-entry,
.related-card,
.triage-card,
.contact-channel,
.workflow-card {
  box-shadow: var(--panel-shadow);
}

.card:hover,
.platform-card:hover,
.cloud-card:hover,
.workflow-card:hover,
.problem-card:hover,
.service-entry:hover,
.related-card:hover,
.triage-card:hover,
.contact-channel:hover {
  box-shadow: 0 24px 62px rgba(13, 21, 36, 0.13);
}

@media (min-width: 981px) {
  .hero .section-inner {
    gap: clamp(46px, 6vw, 96px);
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.72fr);
    max-width: 1420px;
    min-height: 78svh;
  }

  .hero-content {
    max-width: 890px;
  }

  .hero h1 {
    font-size: clamp(54px, 5.2vw, 84px);
    max-width: 13.4ch;
  }

  .hero-lead {
    max-width: 820px;
  }

  .hero-proof-grid {
    max-width: 860px;
  }

  .hero-command-panel {
    padding: 26px;
  }

  .page-hero .section-inner {
    max-width: var(--container-wide);
    min-height: 390px;
    padding-right: clamp(430px, 37vw, 570px);
  }

  .page-hero .section-inner::after {
    right: var(--gutter-wide);
    width: min(430px, 30vw);
  }

  .page-hero .section-inner::before {
    right: calc(var(--gutter-wide) + 30px);
    width: min(360px, 25vw);
  }

  .page-hero h1 {
    font-size: clamp(46px, 4.5vw, 66px);
    max-width: 980px;
  }

  .page-hero p {
    max-width: 900px;
  }

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

  .metrics-grid {
    gap: 14px;
  }

  .metric-card {
    min-height: 168px;
    padding: 52px 28px 26px;
  }

  .home-breakpoints-section .section-heading {
    max-width: 1080px;
  }

  .home-breakpoints-section .problem-grid {
    border: 0;
    box-shadow: none;
    gap: 16px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .home-breakpoints-section .problem-card {
    grid-column: span 3;
    min-height: 360px;
    padding: 108px 28px 30px;
  }

  .home-breakpoints-section .problem-card::before {
    font-size: clamp(42px, 4.4vw, 68px);
    right: 22px;
    top: 26px;
  }

  .architecture-grid {
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 16px;
    overflow: visible;
  }

  .architecture-item {
    border: 1px solid rgba(226, 236, 248, 0.16);
    border-radius: 8px;
    min-height: 330px;
    padding: 32px 28px;
  }

  .architecture-item::after {
    border-radius: 0 8px 0 0;
  }

  .architecture-item span {
    background: rgba(255, 184, 107, 0.11);
    border: 1px solid rgba(255, 184, 107, 0.24);
    border-radius: 999px;
    display: inline-flex;
    margin-bottom: 46px;
    padding: 7px 10px;
    width: fit-content;
  }

  .service-selector-section .section-inner,
  .platform-coverage-section .section-inner,
  .home-workflow-section .section-inner {
    max-width: 1380px;
  }

  .service-entry-grid {
    gap: 16px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .service-entry {
    grid-column: span 4;
    min-height: 404px;
    padding: 32px 28px 30px;
  }

  .service-entry:nth-child(1) {
    grid-column: span 5;
  }

  .service-entry:nth-child(2) {
    grid-column: span 4;
  }

  .service-entry:nth-child(3) {
    grid-column: span 3;
  }

  .service-entry:nth-child(4) {
    grid-column: span 3;
  }

  .service-entry:nth-child(5) {
    grid-column: span 4;
  }

  .service-entry.service-entry-primary {
    display: flex;
    grid-column: span 5;
    min-height: 404px;
    padding: 32px 28px 30px;
  }

  .service-entry-primary .service-entry-head,
  .service-entry-primary h3,
  .service-entry-primary > p:not(.service-entry-label),
  .service-entry-primary .service-entry-meta,
  .service-entry-primary > a,
  .service-entry-primary ul {
    grid-column: auto;
    grid-row: auto;
  }

  .service-entry-primary ul {
    align-self: auto;
    background: transparent;
    border: 0;
    border-top: 1px solid color-mix(in srgb, #f97316 20%, #d7e2ef);
    border-radius: 0;
    margin: 22px 0;
    padding: 18px 0 0;
  }

  .home-workflow-section .section-inner {
    gap: 28px;
    grid-template-columns: minmax(340px, 0.34fr) minmax(0, 0.66fr);
  }

  .home-workflow-section .workflow-map {
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-workflow-section .workflow-card {
    min-height: 300px;
    padding: 84px 22px 24px;
  }

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

  .platform-coverage-section .platform-card {
    grid-column: span 4;
    min-height: 382px;
    padding: 88px 28px 28px;
  }

  .platform-coverage-section .platform-card:nth-child(1),
  .platform-coverage-section .platform-card:nth-child(6) {
    grid-column: span 5;
  }

  .platform-coverage-section .platform-card:nth-child(2),
  .platform-coverage-section .platform-card:nth-child(5) {
    grid-column: span 4;
  }

  .platform-coverage-section .platform-card:nth-child(3),
  .platform-coverage-section .platform-card:nth-child(4) {
    grid-column: span 3;
  }

  .service-brief-section .section-inner {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    max-width: var(--container-wide);
  }

  .service-brief-head {
    padding: 48px 36px;
  }

  .service-brief-card {
    padding: 48px 30px;
  }

  .service-split {
    gap: clamp(44px, 6vw, 78px);
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .section-alt .service-copy {
    top: 112px;
  }

  .grid-3,
  .platform-grid,
  .cloud-grid,
  .related-grid,
  .triage-grid,
  .contact-channel-grid {
    gap: 20px;
  }

  .rich-text {
    max-width: var(--container-wide);
  }

  .contact-layout {
    gap: 34px;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.58fr);
  }

  .home-cta-band .section-inner {
    gap: clamp(36px, 5vw, 78px);
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.5fr);
  }

  .footer-desk {
    gap: 20px;
    grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr) minmax(300px, 0.72fr);
  }
}

@media (min-width: 1280px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .card,
  .cloud-card,
  .related-card,
  .triage-card,
  .contact-channel {
    padding: 30px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .home-breakpoints-section .problem-card,
  .service-entry,
  .service-entry.service-entry-primary,
  .platform-coverage-section .platform-card,
  .platform-coverage-section .platform-card:nth-child(1),
  .platform-coverage-section .platform-card:nth-child(2),
  .platform-coverage-section .platform-card:nth-child(3),
  .platform-coverage-section .platform-card:nth-child(4),
  .platform-coverage-section .platform-card:nth-child(5),
  .platform-coverage-section .platform-card:nth-child(6) {
    grid-column: span 6;
  }

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

  .home-workflow-section .workflow-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .section-inner,
  .nav-shell,
  .footer-inner {
    max-width: none;
    padding-left: clamp(18px, 4.8vw, 34px);
    padding-right: clamp(18px, 4.8vw, 34px);
  }

  .page-hero .section-inner {
    max-width: none;
  }

  .home-workflow-section .section-inner,
  .service-entry-grid,
  .platform-coverage-section .platform-grid {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .service-copy h2,
  .rich-text h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .hero h1 {
    font-size: clamp(40px, 12.2vw, 50px);
    max-width: 100%;
  }

  .hero h1 span:first-child,
  .hero h1 span:nth-child(2),
  .hero-title-accent {
    max-width: 100%;
    white-space: nowrap;
  }

  .hero h1 span:first-child,
  .hero-title-accent {
    font-size: 0.86em;
  }

  .hero-content,
  .hero-command-panel,
  .command-route,
  .command-route article,
  .hero-proof-grid,
  .hero-proof-grid article,
  .service-entry,
  .platform-card,
  .cloud-card,
  .card {
    max-width: 100%;
    min-width: 0;
  }

  .hero-content,
  .hero-command-panel,
  .hero-actions,
  .hero-points,
  .hero-proof-grid {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .command-route strong,
  .command-route em,
  .hero-proof-grid strong,
  .hero-proof-grid span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .page-hero p,
  .section-heading p,
  .service-copy p,
  .cta-band p {
    font-size: 16px;
  }
}

/* Visual scan corrective pass: keep content readable, reduce template feel, and lock mobile width. */
html,
body,
.site-main,
.hero,
.page-hero,
.section,
.section-alt,
.section-dark,
.cta-band {
  max-width: 100%;
}

html.reveal-ready .section-heading,
html.reveal-ready .service-entry,
html.reveal-ready .problem-card,
html.reveal-ready .architecture-item,
html.reveal-ready .workflow-card,
html.reveal-ready .platform-card,
html.reveal-ready .cloud-card,
html.reveal-ready .card,
html.reveal-ready .service-brief-card,
html.reveal-ready .contact-channel,
html.reveal-ready .triage-card,
html.reveal-ready .related-card,
html.reveal-ready .rich-text,
html.reveal-ready .cta-brief-panel {
  opacity: 1;
  transform: none;
}

html.reveal-ready .is-revealed {
  animation: none;
}

.page-hero,
.page-guide,
.trust-strip,
.metrics {
  overflow-x: clip;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.service-copy h2,
.rich-text h2,
.cta-band h2,
.card h3,
.platform-card h3,
.cloud-card h3,
.service-brief-card h3,
.triage-card h3 {
  overflow-wrap: anywhere;
}

@media (min-width: 981px) {
  .hero .section-inner {
    min-height: clamp(820px, calc(100svh - 72px), 980px);
    padding-bottom: clamp(94px, 8vw, 132px);
    padding-top: clamp(86px, 8vw, 122px);
  }

  .hero-content {
    align-self: center;
  }

  .hero-command-panel {
    align-self: center;
  }

  .trust-strip .section-inner {
    padding-bottom: 22px;
    padding-top: 22px;
  }

  .metrics .section-inner {
    padding-top: 32px;
  }
}

@media (min-width: 981px) {
  .page-hero .section-inner::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.052)),
      radial-gradient(circle at 90% 12%, color-mix(in srgb, var(--page-accent) 24%, transparent), transparent 12rem),
      rgba(7, 17, 31, 0.68);
    border: 1px solid rgba(226, 236, 248, 0.2);
    border-left: 4px solid var(--page-accent);
    border-radius: 8px;
    border-top: 0;
    box-shadow: 0 26px 74px rgba(0, 0, 0, 0.28);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 2;
    padding: 28px 30px;
    width: min(420px, 31vw);
  }

  .page-hero-advertising .section-inner::after {
    content: "投放检查板\A \A 01 承接页速度与移动端 CTA\A 02 像素、事件、UTM 追踪\A 03 素材批次与预算节奏\A 04 线索质量和复盘口径\A \A 先验承接条件，再进入测试放量";
  }

  .page-hero-cloud .section-inner::after {
    content: "资源保障面板\A \A 01 网站入口、DNS、证书和入口\A 02 基础设施与资源规格\A 03 资源维护与到期节奏\A 04 资源说明和上线保障\A \A 先把上线资源稳定下来，再承接投放流量";
  }

  .page-hero-contact .section-inner::after {
    content: "需求分诊卡\A \A 01 你现在处在哪个项目阶段\A 02 目标市场和上线时间\A 03 已有页面、后台和基础资源\A 04 当前最卡的交付断点\A \A 先分诊，再安排服务顺序和推进节奏";
  }

  .page-hero-software .section-inner::after {
    content: "产品交付清单\A \A 01 官网、落地页和表单承接\A 02 管理后台、看板和运营入口\A 03 埋点、备份、维护和迭代\A \A 把页面承接和运营工具放在同一条交付链路里";
  }

  .page-hero-platform .section-inner::after {
    content: "上线蓝图\A \A 01 最小可运营版本\A 02 会员、订单、权限和后台\A 03 上线检查、扩展路线和运维\A \A 先跑通业务闭环，再扩展运营模块";
  }

  .page-hero-game .section-inner::after {
    content: "行业运营板\A \A 01 平台入口、内容和活动\A 02 渠道承接、用户路径和留存\A 03 后台工具、数据和复盘\A \A 活动、渠道和运营工具同步规划";
  }

  .page-hero-advertising .section-inner::after {
    background:
      linear-gradient(180deg, rgba(255, 122, 26, 0.18), rgba(255, 255, 255, 0.045)),
      radial-gradient(circle at 88% 8%, rgba(96, 165, 250, 0.22), transparent 13rem),
      rgba(11, 22, 38, 0.72);
  }

  .page-hero-cloud .section-inner::after {
    background:
      linear-gradient(180deg, rgba(34, 197, 94, 0.18), rgba(255, 255, 255, 0.045)),
      radial-gradient(circle at 88% 8%, rgba(56, 189, 248, 0.22), transparent 13rem),
      rgba(8, 26, 30, 0.72);
  }

  .page-hero-contact .section-inner::after {
    background:
      linear-gradient(180deg, rgba(249, 115, 22, 0.16), rgba(255, 255, 255, 0.045)),
      radial-gradient(circle at 88% 8%, rgba(129, 140, 248, 0.22), transparent 13rem),
      rgba(17, 24, 39, 0.72);
  }
}

@media (max-width: 980px) {
  .hero-content,
  .hero-command-panel,
  .page-hero .section-inner,
  .service-brief-head,
  .service-brief-card,
  .section-alt .service-copy,
  .section-alt .service-split > .process-list,
  .section-alt .service-split > .check-list {
    min-width: 0;
  }

  .page-hero .section-inner {
    padding-right: var(--gutter-wide);
  }
}

@media (max-width: 720px) {
  .section-inner,
  .nav-shell,
  .footer-inner {
    width: 100%;
  }

  .hero .section-inner,
  .page-hero .section-inner {
    overflow: hidden;
  }

  .page-hero {
    padding: 48px 0 44px;
  }

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

  .page-hero h1 {
    font-size: clamp(34px, 10.4vw, 44px);
    line-height: 1.08;
    max-width: min(100%, 12ch);
  }

  .page-hero p {
    font-size: 16px;
    line-height: 1.72;
    max-width: 100%;
  }

  .page-hero .hero-actions {
    max-width: 100%;
    width: 100%;
  }

  .page-hero .hero-actions::after {
    display: none;
  }

  .page-guide {
    overflow: visible;
  }

  .page-guide-inner {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 9px;
    min-height: auto;
    overflow: visible;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .page-guide-inner > span {
    flex: 1 0 100%;
    margin-right: 0;
  }

  .page-guide a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    white-space: normal;
  }

  .service-brief-head h2,
  .section-heading h2,
  .service-copy h2,
  .rich-text h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.12;
  }

  .floating-dock {
    bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 8px;
    right: calc(10px + env(safe-area-inset-right));
    transform: none;
  }

  .floating-action {
    height: 38px;
    width: 38px;
  }

  .floating-action-icon,
  .floating-action-icon svg {
    height: 18px;
    width: 18px;
  }
}

@media (max-width: 640px) {
  .hero .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content,
  .hero-command-panel,
  .hero-actions,
  .hero-points,
  .hero-proof-grid {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 50px);
    line-height: 0.98;
  }

  .hero h1 span:first-child,
  .hero h1 span:nth-child(2),
  .hero-title-accent {
    white-space: normal;
  }

  .hero-lead {
    line-height: 1.68;
  }

  .hero-points span,
  .mini-tag {
    max-width: 100%;
    width: auto;
  }

  .button {
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-strip .section-inner {
    padding-bottom: 18px;
    padding-top: 18px;
  }

  .metrics .section-inner {
    padding-top: 24px;
  }
}

@media (max-width: 420px) {
  .page-hero .section-inner,
  .hero .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-guide a {
    flex-basis: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(40px, 11.4vw, 48px);
  }
}

@media (max-width: 640px) {
  #cloud-vendors .provider-lockup {
    gap: 8px;
  }

  #cloud-vendors .provider-lockup .provider-chip {
    min-width: 0;
    width: auto;
  }

  #cloud-vendors .provider-lockup::after {
    flex-basis: 100%;
    margin-left: 0;
    text-align: left;
  }

  #cloud-vendors .vendor-features li,
  #ad-platforms .platform-factors li,
  #platform-modules .platform-factors li {
    align-items: start;
    grid-template-columns: 1fr;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .floating-dock {
    opacity: 0.9;
  }
}
