:root {
  --ink: #202124;
  --muted: #5f6f77;
  --line: #d9edf8;
  --paper: #ffffff;
  --mist: #f2faff;
  --mint: #f2faff;
  --sky: #7cceff;
  --sky-strong: #4fb8f5;
  --sun: #ffb13b;
  --grass: #79c84a;
  --green: #79c84a;
  --teal: #6fd6cb;
  --blue: #7cceff;
  --amber: #ffb13b;
  --red: #ff6b62;
  --violet: #a58bf1;
  --deep: #202124;
  --deep-2: #33383c;
  --shadow: 0 24px 80px rgba(64, 130, 168, 0.13);
  --container: 1264px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: #f2faff;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow-x: hidden;
  background: transparent;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 206, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 86% 22%, rgba(255, 177, 59, 0.15), transparent 28rem),
    radial-gradient(circle at 72% 78%, rgba(121, 200, 74, 0.13), transparent 26rem),
    linear-gradient(180deg, #f8fcff 0%, #f2faff 48%, #fffaf1 100%);
}

body::after {
  opacity: 0.72;
  background:
    linear-gradient(rgba(124, 206, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 206, 255, 0.1) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.62), transparent 46rem);
  background-size: 72px 72px, 72px 72px, auto;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(217, 237, 248, 0.9);
  box-shadow: 0 12px 42px rgba(64, 130, 168, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--container));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  min-width: 142px;
  white-space: nowrap;
}

.brand-logo {
  width: 190px;
  height: auto;
  max-width: none;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--sky), var(--grass));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--deep);
}

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

.nav-actions,
.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--sun);
  color: var(--ink);
}

.btn-soft {
  background: var(--mint);
  color: var(--deep);
}

.btn-outline {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.btn-light {
  background: white;
  color: var(--deep);
}

.btn-dark {
  background: var(--deep-2);
  color: white;
}

.btn-large {
  min-height: 48px;
  padding: 13px 20px;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.section,
.section-band {
  position: relative;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 88px 0;
}

.section-band {
  background: rgba(247, 250, 247, 0.72);
  backdrop-filter: blur(18px);
}

.hero {
  overflow: hidden;
  padding: 64px 0 44px;
  background:
    linear-gradient(180deg, rgba(247, 250, 247, 0.7), rgba(247, 250, 247, 0.4)),
    transparent;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.soft-slab,
.network-glow,
.human-ribbon,
.panel-ribbon {
  position: absolute;
  pointer-events: none;
}

.soft-slab {
  height: 94px;
  border-radius: 38px;
  opacity: 0.5;
  transform: rotate(7deg);
}

.slab-a {
  right: -42px;
  top: 314px;
  width: 360px;
  background: rgba(232, 245, 242, 0.76);
}

.slab-b {
  left: 96px;
  top: 342px;
  width: 370px;
  background: rgba(232, 247, 250, 0.72);
}

.slab-c {
  left: 43%;
  top: 326px;
  width: 520px;
  background: rgba(242, 245, 229, 0.76);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green);
  padding: 7px 12px;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero h1 {
  max-width: 640px;
  color: var(--ink);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.24;
}

.hero h1 span {
  display: block;
}

.hero-lede,
.section-head p,
.split-hero .section-head p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.55;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 7px 12px;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.35;
}

.pill-row.compact span {
  background: rgba(255, 255, 255, 0.72);
}

.hero-photo-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px 8px 28px 8px;
  background: #eaf3ee;
  box-shadow: var(--shadow);
}

.hero-photo-card::before,
.hero-photo-card::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-photo-card::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 49, 42, 0.04), rgba(21, 49, 42, 0.22)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.52), transparent 32%);
}

.hero-photo-card::after {
  right: -80px;
  bottom: 42px;
  width: 340px;
  height: 86px;
  border-radius: 999px;
  background: rgba(234, 248, 242, 0.62);
  transform: rotate(-10deg);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-photo-overlay {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.hero-photo-overlay strong {
  font-size: 1.5rem;
  line-height: 1.28;
}

.hero-photo-overlay span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.hero-floating-tags {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 360px;
}

.hero-floating-tags span {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.8125rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.network-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf3ee;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}

.network-glow {
  top: 24px;
  left: 118px;
  width: 440px;
  height: 76px;
  border-radius: 44px;
  background: linear-gradient(90deg, rgba(124, 206, 255, 0.24), rgba(121, 200, 74, 0.14));
  transform: rotate(-8deg);
}

.network-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.network-heading strong {
  font-size: 1.6875rem;
  line-height: 1.35;
}

.network-heading span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.service-network {
  position: relative;
  width: 100%;
  max-width: 568px;
  height: 400px;
  margin: 12px auto 0;
}

.connector {
  position: absolute;
  width: 88px;
  height: 2px;
  background: rgba(124, 206, 255, 0.55);
  transform-origin: center;
}

.c1 {
  top: 89px;
  left: 170px;
  transform: rotate(-48deg);
}

.c2 {
  top: 89px;
  right: 138px;
  transform: rotate(48deg);
}

.c3 {
  bottom: 86px;
  left: 172px;
  transform: rotate(48deg);
}

.c4 {
  right: 140px;
  bottom: 86px;
  transform: rotate(-48deg);
}

.network-node {
  position: absolute;
  width: 150px;
  min-height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 12px 16px;
  text-align: center;
}

.network-node strong {
  font-size: 1.0625rem;
  line-height: 1.35;
}

.network-node span {
  color: var(--muted);
  font-size: 0.8125rem;
}

.node-property {
  top: 42px;
  left: 14px;
}

.node-robot {
  top: 42px;
  right: 18px;
}

.node-wecom {
  left: 14px;
  bottom: 26px;
}

.node-service {
  right: 18px;
  bottom: 26px;
}

.node-cabin {
  top: 144px;
  left: calc(50% - 80px);
  width: 160px;
  min-height: 136px;
}

.node-family {
  bottom: 8px;
  left: calc(50% - 80px);
  width: 160px;
  min-height: 118px;
}

.mark {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  background: var(--green);
}

.mark::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.mark.green {
  background: var(--green);
}

.mark.teal {
  background: var(--teal);
}

.mark.blue {
  background: var(--blue);
}

.mark.amber {
  background: var(--amber);
}

.mark.red {
  background: var(--red);
}

.mark.violet {
  background: var(--violet);
}

.value-strip {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

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

.value-card,
.capability-row article,
.forces-grid article,
.investor-grid article,
.stakeholder-grid article,
.level-system article,
.scenario-grid article,
.module-grid article,
.mockup-row article,
.member-row article,
.trust-grid article,
.cooperation article,
.human-card,
.proof-grid article,
.team-dna article,
.partner-wall article,
.dd-grid article,
.moat-grid article,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.value-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 22px;
}

.value-card h2,
.value-card h3,
.capability-row h3,
.forces-grid h3,
.stakeholder-grid h3,
.scenario-grid h3,
.module-grid h3,
.mockup-row h3,
.member-row h3,
.trust-grid h3,
.cooperation h3,
.human-card h3,
.model-stack h3,
.proof-grid h3,
.team-dna h3,
.moat-grid h3,
.partner-wall strong,
.dd-grid strong,
.faq-item summary {
  color: var(--ink);
  font-size: 1.375rem;
  line-height: 1.36;
}

.value-card p,
.capability-row p,
.forces-grid p,
.investor-grid p,
.stakeholder-grid p,
.scenario-grid p,
.module-grid p,
.maturity-map p,
.mockup-row p,
.member-row span,
.trust-grid p,
.cooperation p,
.human-card p,
.model-stack p,
.gradient-panel p,
.dark-panel p,
.proof-grid p,
.team-dna p,
.partner-wall span,
.dd-grid span,
.moat-grid p,
.faq-item p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.decision-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 42px;
  overflow: hidden;
  margin-top: 26px;
  border-radius: 8px;
  background: var(--deep);
  color: white;
  padding: 34px 38px;
}

.decision-ribbon::before,
.decision-ribbon::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  transform: rotate(8deg);
  pointer-events: none;
}

.decision-ribbon::before {
  top: -24px;
  left: 34%;
  width: 420px;
  height: 84px;
  background: rgba(124, 206, 255, 0.24);
}

.decision-ribbon::after {
  right: -120px;
  bottom: 12px;
  width: 360px;
  height: 72px;
  background: rgba(255, 177, 59, 0.18);
}

.decision-ribbon > * {
  position: relative;
  z-index: 1;
}

.decision-ribbon .eyebrow {
  background: rgba(234, 248, 242, 0.12);
  color: #b7d9ce;
}

.decision-ribbon h2 {
  max-width: 500px;
  margin-top: 18px;
  font-size: 1.75rem;
  line-height: 1.38;
}

.decision-ribbon ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.decision-ribbon li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.decision-ribbon strong {
  color: white;
  font-size: 1rem;
}

.decision-ribbon span {
  color: #d9e7e1;
  font-size: 0.9375rem;
}

.section-head {
  display: grid;
  gap: 24px;
  max-width: 760px;
}

.section-head.wide {
  max-width: 1120px;
}

.section-head h2,
.section-kicker h2,
.investor-grid h2 {
  color: var(--ink);
  font-size: 2.375rem;
  line-height: 1.35;
}

.cabin-section {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.media-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
  height: 560px;
}

.media-panel {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px;
}

.media-panel img {
  width: 100%;
  flex: 1 1 auto;
  height: 0;
  min-height: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(120deg, #f4fbf7, #ffffff);
}

.media-large {
  height: 560px;
}

.media-large img {
  height: 0;
  min-height: 0;
}

.media-panel figcaption {
  position: static;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 8px 4px;
}

.wecom-panel {
  grid-column: 1 / -1;
  min-height: 0;
  background: linear-gradient(120deg, #f4fbf7, #ffffff);
}

.wecom-panel img {
  min-height: 0;
  object-position: center 52%;
}

.image-bleed {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.image-bleed::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(32, 33, 36, 0.58), rgba(32, 33, 36, 0.16) 52%, rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 22% 22%, rgba(124, 206, 255, 0.22), transparent 28rem);
}

.image-bleed-cabin {
  background-image: url("assets/generated/creative-production/health-cabin-overview.png");
}

.image-bleed-service {
  background-image: url("assets/generated/creative-production/staff-measurement-service.png");
}

.bleed-copy {
  display: grid;
  max-width: 760px;
  gap: 18px;
  padding: 0 0 72px;
  color: white;
}

.bleed-copy .eyebrow {
  width: fit-content;
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
}

.bleed-copy h2 {
  max-width: 720px;
  font-size: 2.75rem;
  line-height: 1.18;
}

.bleed-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
}

.phone-scene {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 8px;
}

.phone-scene::before,
.phone-scene::after {
  position: absolute;
  content: "";
  border-radius: 40px;
  transform: rotate(10deg);
}

.phone-scene::before {
  top: 34px;
  left: -70px;
  width: 70%;
  height: 70px;
  background: linear-gradient(90deg, rgba(121, 200, 74, 0.14), rgba(124, 206, 255, 0.16));
}

.phone-scene::after {
  right: -40px;
  bottom: -8px;
  width: 58%;
  height: 58px;
  background: linear-gradient(90deg, rgba(255, 177, 59, 0.18), rgba(121, 200, 74, 0.12));
}

.phone {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 144px;
  height: 150px;
  transform: translateX(-50%);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 44px rgba(124, 206, 255, 0.20);
}

.phone span {
  position: absolute;
  left: 24px;
  height: 34px;
  border-radius: 14px;
}

.phone span:nth-child(1) {
  top: 32px;
  width: 96px;
  background: var(--green);
}

.phone span:nth-child(2) {
  top: 84px;
  width: 112px;
  background: #f2faff;
}

.phone span:nth-child(3) {
  top: 136px;
  width: 112px;
  background: #fff7ea;
}

.capability-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.capability-row article {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.human-section {
  position: relative;
  overflow: hidden;
  background: rgba(247, 250, 247, 0.72);
  backdrop-filter: blur(18px);
}

.human-ribbon {
  top: 64px;
  left: calc(50% - 560px);
  width: 520px;
  height: 130px;
  border-radius: 64px;
  background: linear-gradient(90deg, rgba(255, 177, 59, 0.20), rgba(124, 206, 255, 0.16));
  opacity: 0.52;
  transform: rotate(10deg);
}

.human-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.human-card {
  min-height: 310px;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.span-6 {
  grid-column: span 6;
  min-height: 430px;
}

.human-card:not(.span-6) {
  grid-column: span 4;
}

.human-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(120deg, #f5fbf8, #edf7ff);
}

.mini-scene {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.photo-visual {
  margin: 0;
}

.photo-visual img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.human-card:nth-child(1) .photo-visual img {
  object-position: center 44%;
}

.human-card:nth-child(2) .photo-visual img {
  object-position: center 48%;
}

.person,
.service-desk,
.status-card,
.measure-console,
.checkline,
.mini-scene::before,
.mini-scene::after {
  position: absolute;
}

.person {
  width: 64px;
  height: 86px;
  border-radius: 32px 32px 8px 8px;
  background: var(--green);
}

.person::before {
  position: absolute;
  top: -42px;
  left: 10px;
  width: 44px;
  height: 44px;
  content: "";
  border-radius: 50%;
  background: #f6c49d;
}

.staff {
  background: var(--amber);
}

.person-a {
  left: 82px;
  bottom: 58px;
}

.person-b {
  right: 88px;
  bottom: 58px;
}

.person-c {
  left: 112px;
  bottom: 52px;
}

.person-d {
  right: 116px;
  bottom: 52px;
  background: var(--teal);
}

.service-desk {
  left: 184px;
  right: 184px;
  bottom: 58px;
  height: 120px;
  border-radius: 30px;
  background: white;
  box-shadow: 0 20px 60px rgba(21, 49, 42, 0.08);
}

.service-desk::before,
.service-desk::after {
  position: absolute;
  top: 36px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--blue);
}

.service-desk::before {
  left: 46%;
}

.service-desk::after {
  left: 56%;
}

.status-card {
  top: 48px;
  right: 42px;
  width: 102px;
  height: 80px;
  border-radius: 8px;
  background: #ffe7e1;
}

.status-card::before,
.status-card::after {
  position: absolute;
  content: "";
  background: var(--red);
}

.status-card::before {
  top: 35px;
  left: 36px;
  width: 30px;
  height: 8px;
}

.status-card::after {
  top: 24px;
  left: 47px;
  width: 8px;
  height: 30px;
}

.measure-console {
  top: 64px;
  left: 48%;
  width: 120px;
  height: 146px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 20px 60px rgba(124, 206, 255, 0.20);
}

.measure-console::before {
  position: absolute;
  top: 26px;
  left: 22px;
  width: 76px;
  height: 44px;
  content: "";
  border-radius: 8px;
  background: var(--blue);
}

.checkline {
  right: 56px;
  bottom: 32px;
  left: 56px;
  height: 18px;
  border-radius: 999px;
  background: #dff2ea;
}

.tint-green {
  background: #f3faef;
}

.tint-blue {
  background: #f2faff;
}

.tint-amber {
  background: #fff7ea;
}

.measurement-mini::before {
  top: 42px;
  left: 42px;
  width: 72px;
  height: 86px;
  content: "";
  border-radius: 14px;
  background: var(--blue);
}

.measurement-mini::after {
  right: 46px;
  bottom: 34px;
  width: 74px;
  height: 68px;
  content: "";
  border-radius: 22px 22px 8px 8px;
  background: var(--green);
}

.robot-mini::before {
  top: 38px;
  left: calc(50% - 38px);
  width: 76px;
  height: 92px;
  content: "";
  border-radius: 26px;
  background: white;
  box-shadow: 0 18px 44px rgba(124, 206, 255, 0.22);
}

.robot-mini::after {
  top: 70px;
  left: calc(50% - 16px);
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 24px 0 0 var(--blue);
}

.wecom-mini::before {
  top: 32px;
  left: calc(50% - 56px);
  width: 112px;
  height: 104px;
  content: "";
  border-radius: 22px;
  background: white;
}

.wecom-mini::after {
  top: 70px;
  left: calc(50% - 36px);
  width: 72px;
  height: 28px;
  content: "";
  border-radius: 12px;
  background: var(--green);
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 56px;
  align-items: center;
}

.signal-panel,
.stack-panel,
.trust-badge {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(234, 248, 242, 0.9), rgba(232, 244, 255, 0.9));
  padding: 34px;
  box-shadow: var(--shadow);
}

.signal-panel {
  display: grid;
  align-content: center;
  gap: 16px;
}

.signal-panel strong {
  font-size: 2rem;
  line-height: 1.28;
}

.signal-panel p {
  color: var(--muted);
}

.forces-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.forces-grid article {
  min-height: 230px;
  padding: 22px;
}

.forces-grid span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--green);
  font-weight: 900;
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.investor-grid h2 {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

.investor-grid article {
  min-height: 140px;
  padding: 24px;
}

.proof-section {
  background: rgba(247, 250, 247, 0.72);
  backdrop-filter: blur(18px);
}

.proof-grid,
.team-dna,
.partner-wall,
.dd-grid,
.moat-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.proof-grid,
.team-dna,
.partner-wall,
.moat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.proof-grid article,
.team-dna article,
.partner-wall article,
.dd-grid article,
.moat-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.proof-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 250, 255, 0.86)),
    white;
}

.proof-grid article::after {
  position: absolute;
  right: -36px;
  bottom: 26px;
  width: 148px;
  height: 38px;
  content: "";
  border-radius: 999px;
  background: rgba(124, 206, 255, 0.18);
  transform: rotate(-10deg);
}

.proof-grid span {
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 900;
}

.team-dna .section-kicker,
.partner-wall .section-kicker,
.dd-grid .section-kicker,
.moat-grid .section-kicker {
  margin-bottom: 0;
}

.team-dna article,
.moat-grid article {
  grid-template-rows: auto auto 1fr;
}

.partner-wall article,
.dd-grid article {
  min-height: 168px;
  align-content: center;
  background: linear-gradient(135deg, #ffffff, #f5fbf8);
}

.partner-wall strong,
.dd-grid strong {
  display: block;
}

.solution-section {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding: 34px 0;
}

.process-track::before {
  position: absolute;
  top: 63px;
  right: 6%;
  left: 6%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(124, 206, 255, 0), rgba(124, 206, 255, 0.55), rgba(121, 200, 74, 0));
}

.process-track article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.process-track span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: 1.625rem;
  font-weight: 900;
}

.process-track strong {
  min-height: 50px;
  display: grid;
  align-items: center;
  font-size: 1rem;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.section-kicker {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  margin-bottom: 10px;
}

.stakeholder-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.level-system {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.level-system article {
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 250, 255, 0.86)),
    white;
}

.level-system span {
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 900;
}

.level-system strong {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.3;
}

.level-system em {
  color: var(--muted);
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.45;
}

.story-board {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 18px;
  margin-top: 70px;
}

.story-copy {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
}

.story-copy h2 {
  max-width: 850px;
  font-size: 2.25rem;
  line-height: 1.35;
}

.story-large {
  grid-row: span 2;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 8px;
}

.story-large img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.story-large figcaption,
.story-card figcaption {
  font-weight: 800;
}

.story-large figcaption {
  padding: 12px 10px 4px;
  text-align: center;
}

.story-card {
  position: relative;
  min-height: 206px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 8px;
}

.story-card img {
  width: 100%;
  height: 166px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.story-card figcaption {
  padding: 12px 10px 4px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.scenario-grid article {
  min-height: 220px;
  padding: 24px;
}

.scenario-grid span {
  display: inline-flex;
  margin: 10px 8px 0 0;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green);
  padding: 6px 9px;
  font-size: 0.8125rem;
  font-weight: 800;
}

.product-section {
  background: rgba(247, 250, 247, 0.72);
  backdrop-filter: blur(18px);
}

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

.stack-panel span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 900;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.module-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.maturity-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.maturity-map .section-kicker {
  margin-bottom: 0;
}

.maturity-map article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.maturity-map article::before {
  position: absolute;
  top: 32px;
  right: -32px;
  width: 118px;
  height: 34px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 206, 255, 0.20), rgba(124, 206, 255, 0.20));
  transform: rotate(8deg);
}

.maturity-map span {
  display: inline-flex;
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 900;
}

.maturity-map h3 {
  margin-top: 54px;
  color: var(--ink);
  font-size: 1.375rem;
  line-height: 1.36;
}

.maturity-map p {
  margin-top: 10px;
}

.mockup-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.mockup-row article {
  min-height: 420px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f2f8f6);
}

.screen-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  border-radius: 8px;
  background: white;
  padding: 18px;
}

.screen-lines span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(90deg, #f3faef, #f2faff);
  color: var(--ink);
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.35;
}

.member-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.member-row article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.92), rgba(242, 250, 255, 0.92)),
    white;
}

.member-row strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.screen-lines span:nth-child(1) {
  width: 92%;
}

.screen-lines span:nth-child(2) {
  width: 82%;
}

.screen-lines span:nth-child(3) {
  width: 72%;
}

.screen-lines span:nth-child(4) {
  width: 62%;
}

.business-section {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.business-split {
  display: grid;
  grid-template-columns: minmax(0, 496px) minmax(0, 1fr);
  gap: 26px;
  margin-top: 38px;
}

.gradient-panel,
.dark-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 36px;
}

.gradient-panel {
  min-height: 430px;
  background: linear-gradient(135deg, #f3faef, #ffffff 58%, #fff7ea);
}

.gradient-panel h3,
.dark-panel h3 {
  position: relative;
  z-index: 1;
  margin-top: 150px;
  font-size: 2rem;
  line-height: 1.32;
}

.gradient-panel p,
.dark-panel p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
}

.panel-ribbon {
  top: 42px;
  left: 42px;
  width: 330px;
  height: 110px;
  border-radius: 54px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(10deg);
}

.model-stack {
  display: grid;
  gap: 18px;
}

.model-stack article {
  min-height: 124px;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.model-stack article h3,
.model-stack article p {
  grid-column: 2;
}

.model-stack article .mark {
  grid-row: 1 / span 2;
}

.growth-path {
  margin-top: 64px;
}

.growth-path ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 42px 0 0;
  margin: 0;
  list-style: none;
}

.growth-path ol::before {
  position: absolute;
  top: 118px;
  right: 8%;
  left: 8%;
  height: 34px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(121, 200, 74, 0.14), rgba(121, 200, 74, 0.16), rgba(255, 177, 59, 0.18));
}

.growth-path li {
  position: relative;
  min-height: 158px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-align: center;
}

.growth-path span {
  color: var(--green);
  font-weight: 900;
}

.growth-path em {
  max-width: 124px;
  color: var(--muted);
  font-size: 0.8125rem;
  font-style: normal;
  line-height: 1.45;
}

.trust-section {
  background: rgba(247, 250, 247, 0.72);
  backdrop-filter: blur(18px);
}

.trust-badge {
  min-height: 230px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.trust-badge strong {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.trust-split {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 26px;
  margin-top: 46px;
}

.dark-panel {
  min-height: 450px;
  background: var(--deep);
  color: white;
}

.dark-panel .panel-ribbon {
  background: rgba(255, 255, 255, 0.12);
}

.dark-panel h3 {
  color: white;
}

.dark-panel p {
  color: #d9e7e1;
}

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

.trust-grid article {
  min-height: 216px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.cooperation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.cooperation article {
  min-height: 225px;
  display: grid;
  align-content: end;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f0f8f5);
}

.faq-section {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

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

.faq-item {
  min-height: 146px;
  padding: 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 14px;
}

.footer-cta {
  background: var(--deep);
  color: white;
  padding: 56px 0;
}

.footer-cta .container {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.footer-cta .eyebrow {
  background: transparent;
  color: #b7d9ce;
  padding: 0;
}

.footer-cta h2 {
  max-width: 900px;
  font-size: 2.25rem;
  line-height: 1.35;
}

.footer-cta p:not(.eyebrow) {
  max-width: 900px;
  color: #d9e7e1;
  font-size: 1.125rem;
}

.icp-link {
  color: #b7d9ce;
  font-size: 0.875rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 200px auto auto;
  }

  .nav-menu {
    gap: 16px;
  }

  .hero-grid,
  .media-bento,
  .business-split,
  .trust-split {
    grid-template-columns: 1fr;
  }

  .media-stack,
  .media-large {
    height: auto;
  }

  .media-panel img,
  .media-large img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .media-large img {
    aspect-ratio: 4 / 3;
  }

  .hero {
    min-height: auto;
  }

  .network-card {
    max-width: 720px;
  }

  .hero-photo-card {
    max-width: 760px;
  }

  .value-grid,
  .capability-row,
  .forces-grid,
  .proof-grid,
  .team-dna,
  .partner-wall,
  .dd-grid,
  .stakeholder-grid,
  .level-system,
  .scenario-grid,
  .module-grid,
  .maturity-map,
  .member-row,
  .moat-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-track::before,
  .growth-path ol::before {
    display: none;
  }

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

  .story-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

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

  .nav-menu {
    position: fixed;
    top: 72px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

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

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

  .nav-actions {
    display: none;
  }

  .hero h1 {
    font-size: 2.625rem;
    line-height: 1.28;
  }

  .split-hero,
  .decision-ribbon,
  .investor-grid,
  .mockup-row,
  .cooperation,
  .dd-grid {
    grid-template-columns: 1fr;
  }

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

  .span-6,
  .human-card:not(.span-6) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 46px 0 34px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1,
  .section-head h2,
  .section-kicker h2,
  .investor-grid h2,
  .footer-cta h2,
  .story-copy h2 {
    font-size: 2rem;
    line-height: 1.34;
  }

  .hero-lede,
  .section-head p,
  .footer-cta p:not(.eyebrow) {
    font-size: 1rem;
  }

  .value-grid,
  .capability-row,
  .forces-grid,
  .proof-grid,
  .team-dna,
  .partner-wall,
  .dd-grid,
  .stakeholder-grid,
  .level-system,
  .scenario-grid,
  .module-grid,
  .maturity-map,
  .member-row,
  .moat-grid,
  .faq-grid,
  .media-stack,
  .trust-grid,
  .growth-path ol {
    grid-template-columns: 1fr;
  }

  .decision-ribbon {
    padding: 28px 24px;
  }

  .decision-ribbon h2 {
    font-size: 1.5rem;
  }

  .decision-ribbon li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .maturity-map h3 {
    margin-top: 38px;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 380px;
  }

  .image-bleed {
    min-height: 440px;
    background-attachment: scroll;
  }

  .bleed-copy {
    padding-bottom: 48px;
  }

  .bleed-copy h2 {
    font-size: 2rem;
    line-height: 1.28;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track article {
    grid-template-columns: 58px 1fr;
    justify-items: start;
    text-align: left;
  }

  .process-track strong {
    min-height: auto;
  }

  .story-board {
    grid-template-columns: 1fr;
  }

  .network-card {
    min-height: 620px;
    padding: 22px 14px;
  }

  .service-network {
    height: 500px;
  }

  .network-node {
    width: 140px;
  }

  .node-property {
    top: 28px;
    left: 4px;
  }

  .node-robot {
    top: 28px;
    right: 4px;
  }

  .node-cabin {
    top: 170px;
  }

  .node-wecom {
    bottom: 126px;
    left: 4px;
  }

  .node-service {
    right: 4px;
    bottom: 126px;
  }

  .node-family {
    bottom: 0;
  }

  .connector {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 150px;
  }

  .brand-logo {
    width: 150px;
  }

  .hero-actions,
  .footer-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero h1,
  .section-head h2,
  .section-kicker h2,
  .investor-grid h2,
  .footer-cta h2,
  .story-copy h2 {
    font-size: 1.75rem;
  }

  .pill-row span {
    white-space: normal;
  }

  .network-card {
    display: none;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 330px;
  }

  .hero-photo-overlay {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .hero-photo-overlay strong {
    font-size: 1.125rem;
  }

  .hero-floating-tags {
    top: 12px;
    left: 12px;
    gap: 8px;
  }

  .human-visual {
    height: 230px;
  }

  .service-desk {
    left: 130px;
    right: 130px;
  }

  .human-card {
    padding: 18px;
  }
}
