:root {
  color-scheme: light;
  --ink: #18232f;
  --muted: #5d6978;
  --line: #dbe4ee;
  --soft: #f4f7fb;
  --paper: #ffffff;
  --navy: #11263b;
  --navy-2: #183955;
  --blue: #1f73d6;
  --blue-deep: #174b87;
  --teal: #0f9b8e;
  --amber: #c9932d;
  --coral: #cf6350;
  --green: #4e927d;
  --shadow: 0 18px 50px rgba(24, 35, 47, 0.12);
  --soft-shadow: 0 12px 34px rgba(24, 35, 47, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 228, 238, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 138px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav-links a,
.nav-phone {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #314151;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-phone:hover {
  color: var(--blue);
}

.nav-phone {
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 46%, rgba(233, 246, 250, 0.92) 100%),
    repeating-linear-gradient(90deg, rgba(31, 115, 214, 0.05) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(15, 155, 142, 0.045) 0 1px, transparent 1px 72px);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(201, 147, 45, 0.12), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(31, 115, 214, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 62px;
}

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

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--blue);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 700px;
  color: #344657;
  font-size: 20px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.hero-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #cfe0f5;
  border-radius: 8px;
  background: #ffffff;
  color: #2f4c66;
  font-size: 14px;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(31, 115, 214, 0.28);
}

.button.primary:hover {
  background: #155cb7;
}

.button.secondary {
  color: var(--blue-deep);
  background: #fff;
  border-color: #cfe0f5;
}

.button.secondary:hover {
  border-color: var(--blue);
}

.button.wide {
  width: 100%;
  margin-top: 14px;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  padding: 28px;
  border: 1px solid #d7e4ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 70px rgba(31, 77, 118, 0.16);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.showcase-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.showcase-track {
  display: flex;
  width: 300%;
  animation: showcase-slide 15s infinite;
}

.hero-showcase:hover .showcase-track {
  animation-play-state: paused;
}

.showcase-slide {
  flex: 0 0 33.333333%;
  min-width: 0;
}

@keyframes showcase-slide {
  0%,
  26% {
    transform: translateX(0);
  }

  33%,
  59% {
    transform: translateX(-33.333333%);
  }

  66%,
  92% {
    transform: translateX(-66.666666%);
  }

  100% {
    transform: translateX(0);
  }
}

.showcase-top,
.garment-card,
.fabric-row,
.dashboard-grid {
  position: relative;
  z-index: 1;
}

.showcase-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.mini-label {
  display: block;
  color: #9fd9ff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.showcase-top strong {
  display: block;
  font-size: 22px;
}

.status-pill {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #123225;
  background: #a6ecd1;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.watch {
  color: #342710;
  background: #f4d694;
}

.status-pill.alert {
  color: #3d1710;
  background: #f4b2a3;
}

.garment-card {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.garment-visual {
  position: relative;
  height: 132px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #e8eff8 0%, #c7d8eb 100%);
  overflow: hidden;
}

.garment-visual.woven {
  background:
    linear-gradient(135deg, #edf3f8 0%, #d9e6f1 100%);
}

.garment-visual.woven::before {
  left: 43px;
  top: 20px;
  width: 56px;
  height: 92px;
  border-radius: 8px 8px 10px 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 8px),
    #ffffff;
  border: 1px solid #d6e0e8;
}

.garment-visual::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 22px;
  width: 58px;
  height: 88px;
  border-radius: 18px 18px 10px 10px;
  background: #295f90;
}

.garment-visual.woven .neck {
  left: 57px;
  top: 20px;
  width: 28px;
  height: 20px;
  background: #d9e6f1;
}

.garment-visual .collar {
  position: absolute;
  top: 27px;
  width: 28px;
  height: 22px;
  background: #ffffff;
  border: 1px solid #d6e0e8;
  z-index: 3;
}

.garment-visual .collar.left {
  left: 43px;
  transform: skewY(28deg);
  border-radius: 4px 0 6px 4px;
}

.garment-visual .collar.right {
  right: 43px;
  transform: skewY(-28deg);
  border-radius: 0 4px 4px 6px;
}

.garment-visual .placket {
  position: absolute;
  left: 69px;
  top: 43px;
  width: 4px;
  height: 64px;
  background: #d6e0e8;
  z-index: 3;
}

.garment-visual .placket::before,
.garment-visual .placket::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aebdcc;
}

.garment-visual .placket::before {
  top: 8px;
}

.garment-visual .placket::after {
  top: 34px;
}

.garment-visual .neck {
  position: absolute;
  left: 59px;
  top: 22px;
  width: 24px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background: #e8eff8;
  z-index: 2;
}

.garment-visual .sleeve {
  position: absolute;
  top: 38px;
  width: 42px;
  height: 54px;
  background: #3675a7;
}

.garment-visual .sleeve.left {
  left: 15px;
  transform: skewY(-16deg);
  border-radius: 18px 6px 8px 18px;
}

.garment-visual .sleeve.right {
  right: 15px;
  transform: skewY(16deg);
  border-radius: 6px 18px 18px 8px;
}

.garment-visual.woven .sleeve {
  background: #f5f8fb;
  border: 1px solid #d6e0e8;
}

.garment-visual.knit {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 6px),
    linear-gradient(135deg, #dfeeea 0%, #b7d1c7 100%);
}

.garment-visual.knit::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 6px),
    #4e927d;
}

.garment-visual.knit .sleeve {
  background: #5da08c;
}

.garment-visual.knit .neck {
  background: #dfeeea;
}

.garment-visual .rib {
  position: absolute;
  z-index: 3;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 2px, transparent 2px 5px),
    #356f61;
}

.garment-visual .rib.hem {
  left: 45px;
  top: 101px;
  width: 52px;
  height: 10px;
  border-radius: 0 0 8px 8px;
}

.garment-visual .rib.cuff {
  top: 82px;
  width: 22px;
  height: 9px;
  border-radius: 8px;
}

.garment-visual .rib.cuff.left {
  left: 17px;
  transform: rotate(-15deg);
}

.garment-visual .rib.cuff.right {
  right: 17px;
  transform: rotate(15deg);
}

.garment-visual.ski {
  background:
    linear-gradient(135deg, #e9eef4 0%, #c9d5e2 100%);
}

.garment-visual.ski::before {
  left: 41px;
  top: 30px;
  width: 60px;
  height: 82px;
  border-radius: 16px 16px 10px 10px;
  background: #253f62;
}

.garment-visual.ski .hood {
  position: absolute;
  left: 48px;
  top: 11px;
  width: 46px;
  height: 44px;
  border-radius: 24px 24px 16px 16px;
  background: #1d324f;
  z-index: 1;
}

.garment-visual.ski .zip {
  position: absolute;
  left: 70px;
  top: 43px;
  width: 4px;
  height: 61px;
  background: #e38341;
  z-index: 4;
}

.garment-visual.ski .pocket {
  position: absolute;
  top: 77px;
  width: 18px;
  height: 11px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 4;
}

.garment-visual.ski .pocket.left {
  left: 49px;
}

.garment-visual.ski .pocket.right {
  right: 49px;
}

.garment-visual.ski .sleeve {
  background: #315276;
}

.garment-card h2 {
  margin-bottom: 8px;
  font-size: 26px;
}

.garment-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.progress {
  height: 10px;
  border-radius: 8px;
  background: #e8eef5;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

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

.fabric-row div {
  min-height: 112px;
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.fabric-row strong,
.fabric-row small {
  display: block;
}

.fabric-row small {
  margin-top: 5px;
  color: var(--muted);
}

.swatch {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.swatch-blue {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.24) 0 4px, transparent 4px 8px),
    #4d7fae;
}

.swatch-green {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 3px, transparent 3px 7px),
    #639b88;
}

.swatch-gold {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 3px, transparent 3px 7px),
    #c9932d;
}

.swatch-pearl {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), transparent 38%),
    #dce4ec;
}

.swatch-navy {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 3px, transparent 3px 7px),
    #253f62;
}

.swatch-orange {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 3px, transparent 3px 8px),
    #d9783b;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.dashboard-grid div {
  min-height: 92px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #dbe4ee;
}

.dashboard-grid span,
.dashboard-grid strong {
  display: block;
}

.dashboard-grid span {
  color: var(--muted);
  font-size: 13px;
}

.dashboard-grid strong {
  margin-top: 8px;
  color: var(--blue-deep);
  font-size: 20px;
}

.showcase-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.showcase-dots span {
  width: 26px;
  height: 4px;
  border-radius: 8px;
  background: #c9d8e8;
}

.showcase-dots span:nth-child(1) {
  animation: dot-one 15s infinite;
}

.showcase-dots span:nth-child(2) {
  animation: dot-two 15s infinite;
}

.showcase-dots span:nth-child(3) {
  animation: dot-three 15s infinite;
}

@keyframes dot-one {
  0%,
  26%,
  100% {
    background: var(--blue);
  }

  33%,
  92% {
    background: #c9d8e8;
  }
}

@keyframes dot-two {
  0%,
  26%,
  66%,
  100% {
    background: #c9d8e8;
  }

  33%,
  59% {
    background: var(--blue);
  }
}

@keyframes dot-three {
  0%,
  59%,
  100% {
    background: #c9d8e8;
  }

  66%,
  92% {
    background: var(--blue);
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-track,
  .showcase-dots span {
    animation: none;
  }
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 46px 0 0;
}

.hero-facts div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.hero-facts dt {
  color: var(--blue-deep);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section.compact {
  padding-top: 74px;
}

.section.band {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, #f6f9fc 0%, #eef4f9 100%);
  border-block: 1px solid var(--line);
}

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

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.fact-grid,
.module-grid,
.value-grid,
.pain-list,
.workflow,
.role-grid {
  display: grid;
  gap: 16px;
}

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

.fact-grid article,
.module-grid article,
.value-grid article,
.pain-list article,
.workflow article,
.role-grid article,
.customer-panel,
.contact-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.fact-grid article,
.module-grid article,
.value-grid article,
.workflow article,
.role-grid article {
  padding: 24px;
}

.fact-grid article {
  border-top: 4px solid #d8b15d;
}

.fact-grid article:nth-child(2) {
  border-top-color: var(--blue);
}

.fact-grid article:nth-child(3) {
  border-top-color: var(--teal);
}

.fact-grid article:nth-child(4) {
  border-top-color: var(--coral);
}

.fact-grid p,
.module-grid p,
.value-grid p,
.pain-list p,
.workflow p,
.role-grid p,
.split-copy p,
.contact-card p,
.footer p,
.note {
  color: var(--muted);
}

.atelier {
  padding-top: 0;
}

.workflow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: workflow;
}

.workflow article {
  position: relative;
  min-height: 238px;
}

.workflow article::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 47px;
  width: 16px;
  height: 1px;
  background: var(--line);
}

.workflow article:last-child::after {
  display: none;
}

.workflow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-2);
  font-weight: 900;
}

.workflow article:nth-child(2) span {
  background: var(--blue);
}

.workflow article:nth-child(3) span {
  background: var(--teal);
}

.workflow article:nth-child(4) span {
  background: var(--amber);
}

.workflow article:nth-child(5) span {
  background: var(--coral);
}

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

.pain-list article {
  padding: 26px;
  min-height: 248px;
}

.pain-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #fff;
  background: var(--blue-deep);
  border-radius: 8px;
  font-weight: 900;
}

.pain-list article:nth-child(2) span {
  background: var(--teal);
}

.pain-list article:nth-child(3) span {
  background: var(--amber);
}

.pain-list article:nth-child(4) span {
  background: var(--coral);
}

.ai-agent {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  color: var(--ink);
  background:
    linear-gradient(135deg, #ffffff 0%, #f2f9fc 48%, #edf8f6 100%),
    repeating-linear-gradient(90deg, rgba(31, 115, 214, 0.045) 0 1px, transparent 1px 82px);
  border-block: 1px solid var(--line);
}

.ai-agent .eyebrow {
  color: var(--teal);
}

.ai-agent .section-head p:not(.eyebrow) {
  color: var(--muted);
}

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

.ai-agent-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.agent-source,
.agent-output {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.agent-label {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 8px;
  color: #0f283d;
  background: #b9f0e7;
  font-weight: 900;
  font-size: 13px;
}

.source-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.source-lines p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
  color: #344657;
  background: #f7fafc;
}

.agent-flow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-flow span {
  position: relative;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0f283d;
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(31, 77, 118, 0.14);
}

.agent-flow span::before,
.agent-flow span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #b8cadb;
}

.agent-flow span::before {
  right: 66px;
}

.agent-flow span::after {
  left: 66px;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.output-grid div {
  min-height: 112px;
  padding: 16px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.output-grid strong,
.output-grid small {
  display: block;
}

.output-grid strong {
  color: var(--blue-deep);
}

.output-grid small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

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

.agent-benefits div {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.agent-benefits strong,
.agent-benefits span {
  display: block;
}

.agent-benefits span {
  margin-top: 8px;
  color: var(--muted);
}

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

.module-grid article {
  position: relative;
  min-height: 198px;
  overflow: hidden;
}

.module-grid article::before {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--blue);
}

.module-grid article:nth-child(2)::before,
.module-grid article:nth-child(5)::before {
  background: var(--teal);
}

.module-grid article:nth-child(3)::before,
.module-grid article:nth-child(6)::before {
  background: var(--amber);
}

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

.role-grid article {
  min-height: 228px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.role-grid span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-2);
  font-weight: 900;
}

.role-grid article:nth-child(2) span {
  background: var(--blue);
}

.role-grid article:nth-child(3) span {
  background: var(--teal);
}

.role-grid article:nth-child(4) span {
  background: var(--amber);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 52px;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-copy {
  min-width: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #344657;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.solution-visual {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.solution-visual img {
  border-radius: 6px;
}

.solution-visual figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

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

.value-grid article {
  min-height: 190px;
  border-top: 4px solid var(--blue);
}

.value-grid article:nth-child(2) {
  border-top-color: var(--teal);
}

.value-grid article:nth-child(3) {
  border-top-color: var(--amber);
}

.value-grid article:nth-child(4) {
  border-top-color: var(--coral);
}

.pricing-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.pricing-row {
  display: grid;
  grid-template-columns: 170px 1fr 190px;
}

.pricing-row > div {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.pricing-row > div + div {
  border-left: 1px solid var(--line);
}

.pricing-row:last-child > div {
  border-bottom: 0;
}

.pricing-head {
  color: #fff;
  background: var(--navy-2);
  font-weight: 900;
}

.pricing-row strong {
  color: var(--blue-deep);
}

.pricing-head strong {
  color: #fff;
}

.note {
  margin: 16px 0 0;
  font-size: 14px;
}

.link-row a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-deep);
  font-weight: 800;
}

.link-row a:hover {
  border-color: var(--blue);
}

.customer-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.customer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: #344657;
}

.customer-list li {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eef3f7;
}

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

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 22px;
}

.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #eef7ff 0%, #f7fbff 54%, #fff8ec 100%);
  border: 1px solid #cfe0f5;
  box-shadow: var(--soft-shadow);
}

.contact-card {
  padding: 26px;
  background: #fff;
}

.contact-card p {
  margin-bottom: 10px;
}

.contact-card a:not(.button) {
  color: var(--blue);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
  gap: 28px;
  padding: 44px max(20px, calc((100% - 1180px) / 2));
  color: var(--ink);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

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

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

.footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #344657;
}

.beian {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.beian p {
  margin-bottom: 6px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .nav {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-facts,
  .fact-grid,
  .pain-list,
  .module-grid,
  .value-grid,
  .workflow,
  .role-grid,
  .agent-benefits,
  .split,
  .split.reverse,
  .cta,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .workflow article::after {
    display: none;
  }

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

  .agent-flow span::before,
  .agent-flow span::after {
    display: none;
  }

  .split-copy,
  .solution-visual,
  .cta > div {
    grid-column: 1 / -1;
  }

  .pricing-row {
    grid-template-columns: 140px 1fr 150px;
  }
}

@media (max-width: 700px) {
  .nav,
  .hero-content,
  .section,
  .cta {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 118px;
  }

  .nav-phone {
    font-size: 13px;
  }

  .hero-content {
    padding: 52px 0 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-showcase {
    padding: 18px;
  }

  .garment-card {
    grid-template-columns: 1fr;
  }

  .garment-visual {
    width: 142px;
  }

  .fabric-row,
  .dashboard-grid,
  .hero-facts,
  .fact-grid,
  .pain-list,
  .module-grid,
  .value-grid,
  .workflow,
  .role-grid,
  .agent-benefits,
  .split,
  .split.reverse,
  .cta,
  .footer,
  .customer-list {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .pain-list article,
  .module-grid article,
  .value-grid article,
  .workflow article,
  .role-grid article,
  .agent-benefits div {
    min-height: auto;
  }

  .agent-source,
  .agent-output {
    min-height: auto;
    padding: 22px;
  }

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

  .section,
  .section.compact,
  .section.band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .atelier {
    padding-top: 0;
  }

  .pricing-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }

  .pricing-row > div,
  .pricing-row > div + div {
    border-left: 0;
  }

  .pricing-head {
    display: none;
  }

  .cta {
    padding: 28px;
    margin-bottom: 48px;
  }

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