:root {
  --ink: #13252c;
  --ink-2: #2d4650;
  --muted: #657984;
  --faint: #8fa0a7;
  --paper: #f6f8f7;
  --paper-2: #edf3f1;
  --surface: #ffffff;
  --surface-2: #fbfcfb;
  --line: rgba(19, 37, 44, 0.11);
  --line-strong: rgba(19, 37, 44, 0.18);
  --green: #18a982;
  --green-2: #7ed7c7;
  --mint-soft: #dff4ef;
  --steel: #5f7e8b;
  --steel-soft: #dbe6ea;
  --champagne: #b18a55;
  --champagne-soft: #f0e2cb;
  --shadow: 0 18px 54px rgba(35, 54, 60, 0.09);
  --shadow-hover: 0 30px 90px rgba(35, 54, 60, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(19, 37, 44, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 37, 44, 0.024) 1px, transparent 1px),
    radial-gradient(ellipse at 15% 0%, rgba(24, 169, 130, 0.13), transparent 32rem),
    radial-gradient(ellipse at 94% 4%, rgba(95, 126, 139, 0.15), transparent 28rem),
    linear-gradient(135deg, #fbfcfb 0%, #eef4f2 48%, #f8f5ee 100%);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 252, 251, 0.86);
  backdrop-filter: blur(22px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.brand img {
  width: 158px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0;
}

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

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

.nav-links a {
  position: relative;
  border: 1px solid transparent;
  border-radius: 7px;
  color: rgba(23, 39, 45, 0.76);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 13px;
  transition: color 0.24s var(--ease), border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  border-color: rgba(26, 169, 130, 0.24);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 28px rgba(35, 54, 60, 0.06);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

.bg-tension {
  --hero-image: url("https://storage.googleapis.com/cg-webase/media/1779814024366-0cde3f47.jpg");
  --band-image: url("https://storage.googleapis.com/cg-webase/media/1779814024366-0cde3f47.jpg");
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 70px 0 46px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 251, 250, 0.98) 0%, rgba(248, 251, 250, 0.91) 42%, rgba(248, 251, 250, 0.62) 72%, rgba(248, 251, 250, 0.36) 100%),
    linear-gradient(0deg, rgba(248, 251, 250, 0.96) 0%, rgba(248, 251, 250, 0.32) 48%, rgba(248, 251, 250, 0.74) 100%),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.02);
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: end;
}

.hero-content::before {
  position: absolute;
  left: -6px;
  top: -58px;
  z-index: -1;
  content: "JINYE / 05";
  color: rgba(19, 37, 44, 0.045);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-content > div:first-child {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(24, 169, 130, 0.28);
  border-radius: 7px;
  margin-bottom: 22px;
  padding: 7px 11px;
  color: #0d735b;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(35, 54, 60, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.hero h1,
.page-hero h1,
.detail-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1::after {
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 28px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--champagne));
}

.hero-lead {
  max-width: 690px;
  margin-top: 22px;
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #117d65, #20ae8c);
  box-shadow: 0 18px 44px rgba(24, 169, 130, 0.22);
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(26, 169, 130, 0.28);
}

.button.secondary {
  border-color: rgba(23, 39, 45, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(35, 54, 60, 0.08);
}

.button.secondary:hover {
  border-color: rgba(183, 147, 93, 0.5);
  color: #7c5a2f;
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-3px);
}

.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  border-top: 1px solid rgba(24, 169, 130, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(241, 248, 246, 0.72));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0;
  overflow: visible;
  align-self: center;
}

.hero-showcase::before {
  position: absolute;
  inset: -42px -34px auto auto;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 169, 130, 0.14);
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle, rgba(24, 169, 130, 0.1), transparent 62%),
    repeating-radial-gradient(circle, transparent 0 31px, rgba(24, 169, 130, 0.08) 32px 33px);
}

.hero-showcase::after {
  position: absolute;
  left: -30px;
  right: 38px;
  bottom: 88px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(24, 169, 130, 0.42), transparent);
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  min-height: 308px;
  box-shadow: 0 26px 70px rgba(35, 54, 60, 0.15);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 308px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.hero-showcase:hover .showcase-card img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 22%, rgba(11, 29, 36, 0.12) 54%, rgba(11, 29, 36, 0.62) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 42%);
}

.showcase-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #ffffff;
}

.showcase-label span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 850;
}

.showcase-label strong {
  max-width: 390px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
}

.showcase-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: -26px;
  padding: 0 18px;
}

.showcase-flow span {
  position: relative;
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(19, 37, 44, 0.08);
  border-radius: 7px;
  color: #2f4a54;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(35, 54, 60, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.showcase-flow span:not(:last-child)::after {
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 2;
  width: 10px;
  height: 1px;
  content: "";
  background: rgba(24, 169, 130, 0.5);
}

.showcase-notes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px;
}

.showcase-notes div {
  border: 1px solid rgba(19, 37, 44, 0.08);
  border-radius: 7px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(35, 54, 60, 0.08);
}

.showcase-notes strong {
  display: block;
  color: var(--champagne);
  font-size: 26px;
  line-height: 1;
}

.showcase-notes span {
  display: block;
  margin-top: 8px;
  color: #617680;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-panel {
  padding: 24px;
}

.dashboard-panel {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: start;
}

.hero-panel-title {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.radar-dial {
  position: relative;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(19, 37, 44, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(26, 169, 130, 0.2) 0 4px, transparent 5px),
    repeating-radial-gradient(circle, transparent 0 17px, rgba(19, 37, 44, 0.08) 18px 19px),
    conic-gradient(from -30deg, rgba(24, 169, 130, 0.22), rgba(177, 138, 85, 0.2), rgba(95, 126, 139, 0.12), rgba(24, 169, 130, 0.22));
  overflow: hidden;
}

.radar-dial::before,
.radar-dial::after {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(19, 37, 44, 0.15);
}

.radar-dial::after {
  transform: rotate(90deg);
}

.radar-dial span {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(26, 169, 130, 0.4);
}

.radar-dial span:nth-child(1) { left: 67%; top: 20%; }
.radar-dial span:nth-child(2) { left: 26%; top: 34%; }
.radar-dial span:nth-child(3) { left: 58%; top: 66%; }
.radar-dial span:nth-child(4) { left: 78%; top: 54%; }

.metric-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.dashboard-panel .metric-list {
  margin-top: 0;
}

.metric {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 17px 0;
}

.metric strong {
  color: var(--champagne);
  font-size: 28px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 68px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
  border-top: 1px solid rgba(19, 37, 44, 0.12);
  padding-top: 30px;
  margin-bottom: 36px;
}

.section-kicker {
  margin-bottom: 12px;
  color: #0d735b;
  font-size: 12px;
  font-weight: 900;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: 0;
}

.section-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.product-grid,
.blog-grid,
.capability-grid,
.stats-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.product-grid {
  counter-reset: product;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-atlas .section-head {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
}

.atlas-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border: 0;
}

.atlas-grid::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(24, 169, 130, 0.2), transparent);
}

.atlas-grid::after {
  position: absolute;
  right: 4%;
  top: -34px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 169, 130, 0.12);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(24, 169, 130, 0.08), transparent 66%);
}

.atlas-main {
  grid-column: 1 / -1;
  display: block;
  position: relative;
  min-height: 0;
  align-self: start;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 72px rgba(35, 54, 60, 0.08);
}

.atlas-main img {
  width: 100%;
  height: 430px;
  min-height: 0;
  object-fit: cover;
}

.atlas-main .product-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
  gap: 18px 34px;
  align-items: start;
  align-content: end;
  min-height: 52%;
  padding: 34px;
  border-top: 0;
  border-left: 0;
  background:
    linear-gradient(0deg, rgba(9, 28, 35, 0.78), rgba(9, 28, 35, 0.34) 68%, transparent),
    linear-gradient(90deg, rgba(9, 28, 35, 0.32), transparent 60%);
}

.atlas-main .tag-row {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.atlas-main h3 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
}

.atlas-main p {
  align-self: end;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.atlas-main .card-link {
  align-self: end;
  margin-top: 12px;
  color: #ffffff;
}

.atlas-main .tag {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
}

.atlas-main .tag.hot {
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
  background: rgba(177, 138, 85, 0.32);
}

.atlas-node {
  display: grid;
  grid-template-rows: 220px auto;
  min-height: 0;
}

.atlas-node img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.atlas-node .product-body {
  display: grid;
  min-height: 260px;
  align-content: start;
  padding: 24px;
}

.atlas-node-top {
  transform: none;
}

.atlas-node-bottom {
  transform: none;
}

.atlas-node-top:hover,
.atlas-node:hover {
  transform: translateY(-8px);
}

.atlas-node-bottom:hover {
  transform: translateY(-8px);
}

.atlas-node:not(.atlas-node-top):not(.atlas-node-bottom):hover {
  transform: translateY(-6px);
}

.page-hero + .product-atlas .atlas-node-top,
.page-hero + .product-atlas .atlas-node-bottom {
  transform: none;
}

.page-hero + .product-atlas .atlas-node-top:hover,
.page-hero + .product-atlas .atlas-node-bottom:hover {
  transform: translateY(-6px);
}

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

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

.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.product-card,
.blog-card,
.capability-card,
.stat-card,
.contact-panel,
.form-panel,
.spec-panel,
.timeline-item,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  transition: transform 0.42s var(--ease), box-shadow 0.42s var(--ease), border-color 0.42s var(--ease), background 0.42s var(--ease);
}

.product-card,
.blog-card {
  overflow: hidden;
}

.product-card {
  position: relative;
  counter-increment: product;
  border-top: 0;
  border-left: 0;
}

.product-card::before {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  content: "0" counter(product);
  border-radius: 7px;
  color: rgba(19, 37, 44, 0.72);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.64);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.product-card:hover,
.blog-card:hover,
.capability-card:hover,
.stat-card:hover,
.timeline-item:hover,
.value-card:hover,
.contact-panel:hover,
.form-panel:hover,
.spec-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 169, 130, 0.26);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-hover);
}

.product-card img,
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: grayscale(0.08) saturate(0.92) contrast(1.02);
  transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.045);
  filter: grayscale(0) saturate(1.04) contrast(1.03);
}

.product-body,
.blog-body {
  padding: 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  border: 1px solid rgba(23, 39, 45, 0.14);
  border-radius: 7px;
  padding: 4px 8px;
  color: #586f79;
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.tag.hot {
  border-color: rgba(183, 147, 93, 0.34);
  color: #806039;
  background: rgba(183, 147, 93, 0.11);
}

.product-card h3,
.blog-card h3,
.capability-card h3,
.value-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.product-card.atlas-main h3,
.product-card.atlas-main h3 a {
  color: #ffffff;
}

.product-card p,
.blog-card p,
.capability-card p,
.value-card p {
  color: #5f737c;
  font-size: 14px;
  font-weight: 600;
}

.product-card.atlas-main p {
  color: rgba(255, 255, 255, 0.86);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: #0d735b;
  font-size: 14px;
  font-weight: 900;
  transition: color 0.24s var(--ease), transform 0.24s var(--ease);
}

.product-card.atlas-main .card-link {
  color: #ffffff;
}

.product-card.atlas-main .card-link:hover {
  color: var(--green-2);
}

.card-link:hover {
  color: #7c5a2f;
  transform: translateX(5px);
}

.industrial-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(248, 251, 250, 0.96), rgba(248, 251, 250, 0.86), rgba(248, 251, 250, 0.64)),
    var(--band-image, none);
  background-position: center;
  background-size: cover;
}

.industrial-band::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(19, 37, 44, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 37, 44, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 82%);
}

/* End of core layout */

.process-strip {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.5);
}

.system-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(24, 169, 130, 0.18);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(225, 241, 237, 0.92), rgba(236, 242, 241, 0.96), rgba(241, 235, 225, 0.9));
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-right: 1px solid rgba(19, 37, 44, 0.1);
  padding: 0 28px;
  color: #415a64;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.ticker-track span:nth-child(3n) {
  color: #0d735b;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.runway-strip {
  position: relative;
  background:
    linear-gradient(90deg, rgba(19, 37, 44, 0.045) 0 1px, transparent 1px),
    rgba(255, 255, 255, 0.56);
  background-size: 80px 100%;
}

.runway-strip::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(24, 169, 130, 0.22) 0 18px, transparent 18px 34px);
}

.process-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.process-inner div {
  position: relative;
  min-height: 104px;
  border-right: 1px solid var(--line);
  padding: 22px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.process-inner div::after {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--green);
  border-radius: 50%;
  content: "";
  background: var(--surface);
  box-shadow: 0 0 0 5px rgba(24, 169, 130, 0.09);
  transform: translateY(-50%);
}

.process-inner div:hover {
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-3px);
}

.process-inner span {
  display: block;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 900;
}

.process-inner strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

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

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

.feature-list li {
  border-bottom: 1px solid var(--line);
  padding: 16px 0 16px 22px;
  color: var(--ink-2);
  background: linear-gradient(90deg, rgba(24, 169, 130, 0.08), transparent 42%);
  font-weight: 700;
}

.capability-card,
.stat-card,
.value-card {
  padding: 26px;
}

.capability-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(24, 169, 130, 0.26);
  border-radius: 8px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(24, 169, 130, 0.17), rgba(177, 138, 85, 0.09)),
    repeating-linear-gradient(45deg, transparent 0 5px, rgba(19, 37, 44, 0.045) 5px 6px);
}

.stat-card {
  border-top: 1px solid rgba(24, 169, 130, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(249, 252, 251, 0.72)),
    radial-gradient(circle at 90% 0%, rgba(24, 169, 130, 0.13), transparent 52%);
}

.stat-card strong {
  display: block;
  color: var(--champagne);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: #5f737c;
  font-weight: 800;
}

.page-hero,
.detail-hero {
  position: relative;
  padding: 78px 0 56px;
  border-bottom: 1px solid var(--line-strong);
  isolation: isolate;
}

.page-hero::before,
.detail-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 251, 250, 0.97), rgba(248, 251, 250, 0.86), rgba(248, 251, 250, 0.58)),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
  filter: saturate(0.84) contrast(1.04);
}

.page-hero h1,
.detail-hero h1 {
  font-size: clamp(42px, 5.5vw, 74px);
}

.page-hero p,
.detail-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: #263e47;
  font-size: 17px;
  font-weight: 700;
}

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

.breadcrumb a {
  color: #0d735b;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 13px;
  color: #5f737c;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.filter-chip:hover,
.filter-chip.active {
  border-color: rgba(26, 169, 130, 0.35);
  color: #0d735b;
  background: rgba(24, 169, 130, 0.09);
  transform: translateY(-2px);
}

.form-panel,
.contact-panel {
  padding: 30px;
}

.form-panel h2,
.contact-panel h2,
.spec-panel h2,
.article-body h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 39, 45, 0.16);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(26, 169, 130, 0.58);
  outline: 0;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(26, 169, 130, 0.11);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.article-body {
  color: var(--ink-2);
  font-weight: 600;
}

.article-body img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 0 30px;
  object-fit: cover;
  filter: grayscale(0.08) saturate(0.92) contrast(1.02);
  transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.article-body img:hover {
  transform: scale(1.012);
  filter: grayscale(0) saturate(1.02) contrast(1.04);
}

.article-body p {
  margin-bottom: 18px;
}

.article-body h2 {
  border-top: 1px solid var(--line-strong);
  padding-top: 28px;
  margin-top: 40px;
}

.article-body h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 21px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.spec-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
}

.spec-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
}

.spec-row dt {
  color: var(--muted);
  font-weight: 800;
}

.spec-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 22px 0 30px;
  background: rgba(255, 255, 255, 0.56);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 15px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  background: rgba(24, 169, 130, 0.08);
  font-size: 13px;
  font-weight: 900;
}

td {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
}

tr:last-child td {
  border-bottom: 0;
}

.timeline {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.timeline-item {
  position: relative;
  counter-increment: step;
  padding: 24px 24px 24px 86px;
}

.timeline-item::before {
  position: absolute;
  left: 24px;
  top: 24px;
  content: "0" counter(step);
  color: var(--champagne);
  font-size: 16px;
  font-weight: 900;
}

.timeline-item strong {
  display: block;
  color: #0d735b;
  font-size: 13px;
  font-weight: 900;
}

.timeline-item h3 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 22px;
}

.timeline-item p,
.contact-panel p {
  color: #5f737c;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: block;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: var(--ink);
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line-strong);
  padding: 34px 0;
  background: linear-gradient(90deg, rgba(229, 238, 236, 0.94), rgba(242, 238, 230, 0.88));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #536872;
  font-size: 13px;
  font-weight: 700;
}

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

.status-message {
  display: none;
  margin-top: 14px;
  border: 1px solid rgba(26, 169, 130, 0.28);
  border-radius: 7px;
  padding: 10px 12px;
  color: #0d735b;
  background: rgba(26, 169, 130, 0.09);
  font-size: 13px;
  font-weight: 800;
}

.status-message.show {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal.slide-left {
  transform: translate3d(-38px, 0, 0);
}

.reveal.slide-right {
  transform: translate3d(38px, 0, 0);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1100px) {
  .hero-content,
  .section-head,
  .split,
  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .capability-grid,
  .stats-grid,
  .process-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-showcase,
  .hero-panel,
  .spec-panel {
    position: static;
  }

  .atlas-main {
    display: block;
  }

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

  .atlas-main img {
    height: 390px;
    min-height: 0;
  }

  .atlas-main .product-body {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 132px;
    height: 38px;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    right: 14px;
    top: 68px;
    display: none;
    width: min(280px, calc(100vw - 28px));
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: rgba(246, 249, 247, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 11px 12px;
  }

  .hero {
    min-height: 640px;
    padding: 70px 0 44px;
  }

  .hero-content {
    gap: 34px;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .hero-lead,
  .page-hero p,
  .detail-hero p {
    font-size: 16px;
  }

  .hero-panel {
    padding: 22px;
  }

  .hero-showcase {
    padding: 0;
  }

  .showcase-card,
  .showcase-card img {
    min-height: 240px;
  }

  .showcase-flow,
  .showcase-notes,
  .dashboard-panel {
    grid-template-columns: 1fr;
  }

  .showcase-flow {
    margin-top: -16px;
  }

  .showcase-flow span:not(:last-child)::after,
  .radar-dial {
    display: none;
  }

  .metric {
    grid-template-columns: 84px 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section.compact {
    padding: 48px 0;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 26px;
  }

  .product-grid,
  .blog-grid,
  .capability-grid,
  .stats-grid,
  .form-grid,
  .process-inner {
    grid-template-columns: 1fr;
  }

  .product-card img,
  .blog-card img {
    height: 220px;
  }

  .page-hero,
  .detail-hero {
    padding: 64px 0 48px;
  }

  .form-panel,
  .contact-panel {
    padding: 22px;
  }

  .atlas-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .atlas-grid::before,
  .atlas-grid::after {
    display: none;
  }

  .atlas-main,
  .atlas-node {
    display: block;
    min-height: 0;
    transform: none;
  }

  .atlas-main .product-body {
    position: static;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px;
    min-height: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 248, 0.82)),
      radial-gradient(circle at 100% 0%, rgba(24, 169, 130, 0.12), transparent 46%);
  }

  .atlas-main h3 {
    color: var(--ink);
  }

  .atlas-main p {
    color: #4f6873;
  }

  .atlas-main .card-link {
    color: #0d735b;
  }

  .atlas-main .tag {
    border-color: rgba(23, 39, 45, 0.14);
    color: #586f79;
    background: rgba(255, 255, 255, 0.7);
  }

  .atlas-main .tag.hot {
    border-color: rgba(183, 147, 93, 0.34);
    color: #806039;
    background: rgba(183, 147, 93, 0.11);
  }

  .atlas-node img {
    width: 100%;
    height: 220px;
  }

  .atlas-main .product-body {
    display: block;
  }

  .timeline-item {
    padding-left: 70px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.slide-left,
  .reveal.slide-right {
    opacity: 1;
    transform: none;
  }
}
