:root {
  --ink: #102033;
  --muted: #637186;
  --line: #dce6f1;
  --soft: #f4f8fc;
  --white: #ffffff;
  --navy: #102033;
  --navy-2: #17334d;
  --brand: #1769ff;
  --brand-strong: #0d4fd6;
  --teal: #12b8d8;
  --green: #20b887;
  --gold: #d59a2f;
  --shadow: 0 22px 60px rgba(16, 39, 68, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
}

.site-header.gy-site-header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(22px, 7vw, 96px);
  border-bottom: 1px solid #e8eef7;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.gy-site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  color: #0a2a57;
  font-weight: 900;
  letter-spacing: 0;
}

.gy-site-header .brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, #e60012, #ff4a4a);
  box-shadow: 0 12px 24px rgba(230, 0, 18, 0.2);
  font-size: 18px;
  font-weight: 900;
}

.gy-site-header .brand-text {
  display: block;
  color: #0a2a57;
  font-size: 18px;
  line-height: 1.15;
  white-space: nowrap;
}

.gy-site-header .brand-text small {
  display: block;
  margin-top: 3px;
  color: #6c7d94;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gy-site-header .nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: #3b4d66;
  font-size: 14px;
  font-weight: 800;
}

.gy-site-header .nav a {
  white-space: nowrap;
}

.gy-site-header .nav a:hover {
  color: #0054d9;
}

.gy-site-header .nav a[aria-current="page"] {
  color: #0054d9;
}

.gy-site-header .nav [aria-disabled="true"] {
  cursor: default;
}

.gy-site-header .nav [aria-disabled="true"]:hover {
  color: inherit;
}

.gy-site-header .nav-menu {
  position: relative;
}

.gy-site-header .nav-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
  white-space: nowrap;
}

.gy-site-header .nav-menu summary::-webkit-details-marker {
  display: none;
}

.gy-site-header .nav-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.gy-site-header .nav-menu[open] summary,
.gy-site-header .nav-menu summary:hover {
  color: #0054d9;
}

.gy-site-header .nav-menu[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.gy-site-header .nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: min(360px, 86vw);
  padding: 10px;
  border: 1px solid rgba(216, 224, 228, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(22, 36, 42, 0.14);
  transform: translateX(-50%);
}

.gy-site-header .nav-submenu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(216, 224, 228, 0.9);
  border-top: 1px solid rgba(216, 224, 228, 0.9);
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

.gy-site-header .nav-submenu a {
  position: relative;
  z-index: 1;
  padding: 12px 13px;
  border-radius: 6px;
  color: #0a2a57;
  line-height: 1.35;
  white-space: normal;
}

.gy-site-header .nav-submenu a:hover {
  color: #0054d9;
  background: #f1f6ff;
}

.gy-site-header .product-nav {
  position: static;
}

.gy-site-header .product-mega {
  left: 50%;
  grid-template-columns: minmax(260px, 0.82fr) minmax(520px, 1.18fr);
  gap: 18px;
  width: min(1040px, calc(100vw - 48px));
  padding: 18px;
  transform: translateX(-50%);
}

.gy-site-header .mega-column {
  min-width: 0;
}

.gy-site-header .mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  padding: 0 4px 10px;
  border-bottom: 1px solid #e4edf8;
}

.gy-site-header .mega-head strong {
  color: #071d3b;
  font-size: 15px;
  font-weight: 950;
}

.gy-site-header .mega-head a {
  padding: 0;
  color: #0054d9;
  font-size: 12px;
  font-weight: 900;
}

.gy-site-header .mega-head a:hover {
  background: transparent;
}

.gy-site-header .mega-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gy-site-header .product-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gy-site-header .mega-link {
  display: block;
  min-height: 58px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #10213d;
  background: #ffffff;
}

.gy-site-header .mega-link:hover {
  border-color: #d8e8fb;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
}

.gy-site-header .mega-link strong {
  display: block;
  color: #0a2a57;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 950;
}

.gy-site-header .mega-link span {
  display: block;
  margin-top: 4px;
  color: #66788f;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.gy-site-header .nav-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: #1688ff;
  border: 1px solid rgba(22, 136, 255, 0.55);
  border-radius: 4px;
  background: #f7fbff;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 22%, rgba(18, 184, 216, 0.18), transparent 34%),
    radial-gradient(circle at 16% 76%, rgba(23, 105, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 48%, #eaf5ff 100%),
    repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.055) 0 1px, transparent 1px 96px);
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "GYCLOUD";
  position: absolute;
  left: -8px;
  bottom: -46px;
  z-index: -1;
  color: rgba(23, 105, 255, 0.045);
  font-size: clamp(72px, 9vw, 132px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(23, 105, 255, 0.10) 47% 48%, transparent 48% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--brand-strong);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-strong);
}

.hero .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
}

.hero h1 {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #526174;
  font-size: 18px;
  line-height: 1.86;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button {
  padding: 0 24px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 18px 38px rgba(23, 105, 255, 0.24);
}

.secondary-button {
  padding: 0 22px;
  color: #24405e;
  border: 1px solid rgba(23, 105, 255, 0.18);
  background: rgba(255, 255, 255, 0.76);
}

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

.platform-window {
  position: relative;
  min-height: 424px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(23, 105, 255, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 76% 20%, rgba(18, 184, 216, 0.16), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(23, 105, 255, 0.10), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.82));
  box-shadow: 0 34px 80px rgba(26, 73, 118, 0.16);
}

.platform-window::before {
  content: "";
  position: absolute;
  inset: 62px 18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 105, 255, 0.22), transparent);
}

.platform-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(23, 105, 255, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  mix-blend-mode: multiply;
  opacity: 0.42;
}

.window-bar {
  position: relative;
  z-index: 1;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  color: #5a6b7e;
  border: 1px solid rgba(23, 105, 255, 0.12);
  border-radius: 8px;
  background: rgba(244, 249, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.window-bar strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 12px;
}

.window-bar strong i,
.data-stream span {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(32, 184, 135, 0.42);
}

.console-status-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.console-status-row span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #31506f;
  border: 1px solid rgba(23, 105, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.console-hero {
  position: relative;
  z-index: 1;
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr 122px;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(23, 105, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.10), transparent 48%),
    rgba(255, 255, 255, 0.78);
}

.console-hero span,
.bar-head span,
.console-metrics span {
  display: block;
  color: #647488;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.console-hero strong {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.console-hero em {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.console-orbit {
  position: relative;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(23, 105, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(18, 184, 216, 0.22) 0 18%, transparent 19%),
    radial-gradient(circle, rgba(23, 105, 255, 0.10), transparent 58%);
}

.console-orbit::before,
.console-orbit::after {
  content: "";
  position: absolute;
  inset: 19px;
  border: 1px solid rgba(23, 105, 255, 0.14);
  border-radius: 50%;
}

.console-orbit::after {
  inset: 39px;
  background: rgba(18, 184, 216, 0.14);
}

.console-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(18, 184, 216, 0.46);
}

.console-orbit i:nth-child(1) {
  left: 18px;
  top: 30px;
}

.console-orbit i:nth-child(2) {
  right: 20px;
  top: 22px;
}

.console-orbit i:nth-child(3) {
  right: 26px;
  bottom: 22px;
}

.bar-panel {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 15px 18px 16px;
  border: 1px solid rgba(23, 105, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
}

.bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bar-head strong {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.bar-chart {
  height: 130px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
  align-items: end;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(23, 105, 255, 0.10);
}

.bar-chart span {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  align-items: end;
}

.bar-chart i {
  width: 100%;
  min-height: 32px;
  display: block;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #bfefff 0%, #38c7e3 42%, rgba(23, 105, 255, 0.30) 100%);
  box-shadow: 0 0 24px rgba(18, 184, 216, 0.18);
}

.bar-chart span:nth-child(1) i {
  height: 54px;
}

.bar-chart span:nth-child(2) i {
  height: 82px;
}

.bar-chart span:nth-child(3) i {
  height: 68px;
}

.bar-chart span:nth-child(4) i {
  height: 100px;
}

.bar-chart span:nth-child(5) i {
  height: 86px;
}

.bar-chart span:nth-child(6) i {
  height: 104px;
  background: linear-gradient(180deg, #ffffff 0%, #7bdcff 35%, rgba(23, 105, 255, 0.32) 100%);
}

.bar-chart em {
  color: #66778a;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
  text-align: center;
}

.console-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.console-metrics div {
  min-height: 64px;
  padding: 11px 14px;
  border: 1px solid rgba(23, 105, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.70);
}

.console-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.data-stream {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.data-stream div {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #516276;
  border: 1px solid rgba(23, 105, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.data-stream code {
  color: var(--brand-strong);
  font-family: "Consolas", "SFMono-Regular", "Menlo", monospace;
  font-size: 12px;
  font-weight: 900;
}

.hero-signal {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  overflow: hidden;
  border-top: 1px solid rgba(23, 105, 255, 0.14);
  border-bottom: 1px solid rgba(23, 105, 255, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.hero-signal-track {
  width: max-content;
  display: flex;
  gap: 0;
  padding: 16px 0;
  animation: signal-marquee 30s linear infinite;
}

.hero-signal span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  color: #31506f;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero-signal span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 28px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(18, 184, 216, 0.5);
}

@keyframes signal-marquee {
  from {
    transform: translateX(0);
  }

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

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(23, 105, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.metric {
  min-height: 126px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.88);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.metric span {
  display: block;
  margin-top: 14px;
  color: #5d6d80;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.section {
  padding: 94px 0;
  scroll-margin-top: 96px;
}

.problem {
  background:
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%),
    repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.035) 0 1px, transparent 1px 88px);
}

.problem-shell {
  padding: 34px;
  border: 1px solid rgba(23, 105, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(18, 184, 216, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 56px rgba(20, 73, 130, 0.08);
}

.problem-shell .section-heading {
  max-width: 760px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(23, 105, 255, 0.12);
  border-radius: 8px;
  background: rgba(23, 105, 255, 0.12);
}

.problem-card {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
}

.problem-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  color: var(--brand);
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 999px;
  background: rgba(23, 105, 255, 0.07);
  font-size: 13px;
  font-weight: 900;
}

.problem-card h3 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.problem-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.section-heading {
  max-width: 580px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading.compact {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-kicker::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.36;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.intro {
  padding: 68px 0 74px;
  background: #fffffa;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.intro .section-heading {
  max-width: none;
}

.intro .section-heading h2 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(34px, 3vw, 44px);
  white-space: normal;
}

.intro-lead {
  max-width: 1040px;
  margin: 0;
  color: #354033;
  font-size: 17px;
  line-height: 1.88;
}

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

.intro-focus article {
  position: relative;
  min-height: 214px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf5;
}

.intro-focus span {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(62, 125, 43, 0.1);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.intro-focus h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.intro-focus p {
  margin: 8px 0 0;
  color: #5a6556;
  font-size: 15px;
  line-height: 1.68;
}

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

.intro-facts div {
  min-height: 138px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf5;
}

.intro-facts strong {
  display: block;
  color: var(--brand);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.intro-facts span {
  display: block;
  margin-top: 14px;
  color: #4d584b;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
}

.values {
  background:
    linear-gradient(180deg, #f4f7f0 0%, #edf4e8 100%);
}

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

.value-card,
.capability-card,
.advantage-card {
  border-radius: 8px;
}

.value-card {
  min-height: 214px;
  padding: 26px;
  border: 1px solid rgba(210, 226, 194, 0.96);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(36, 58, 29, 0.07);
}

.value-card span,
.advantage-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  color: var(--brand);
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 999px;
  background: rgba(23, 105, 255, 0.07);
  font-size: 13px;
  font-weight: 900;
}

.value-card h3,
.capability-card h3,
.advantage-card h3,
.honor-card h4 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.35;
  font-weight: 900;
}

.value-card p,
.capability-card p,
.advantage-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.capability {
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 16%, rgba(18, 184, 216, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%),
    repeating-linear-gradient(0deg, rgba(23, 105, 255, 0.04) 0 1px, transparent 1px 82px);
}

.capability .section-heading h2,
.capability .section-heading p {
  color: var(--ink);
}

.capability .section-heading {
  max-width: none;
}

.capability .section-heading h2 {
  font-size: clamp(30px, 3.45vw, 38px);
  white-space: nowrap;
}

.capability .section-heading p {
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.capability-card {
  min-height: 292px;
  padding: 32px;
  border: 1px solid rgba(23, 105, 255, 0.12);
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 46px rgba(20, 73, 130, 0.08);
}

.capability-index {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  font-size: 22px;
  font-weight: 900;
}

.capability-card h3 {
  color: var(--ink);
  font-size: 26px;
}

.capability-card p {
  color: var(--muted);
  font-size: 16px;
}

.honors {
  background:
    linear-gradient(180deg, #f7faf4 0%, #edf4e8 100%);
}

.honors-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 248px;
  gap: 56px;
  align-items: end;
}

.honors-summary {
  min-height: 132px;
  padding: 24px 26px;
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 16%, rgba(18, 184, 216, 0.18), transparent 36%),
    linear-gradient(135deg, #1769ff, #12b8d8),
    #1769ff;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(23, 105, 255, 0.16);
}

.honors-summary strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.honors-summary span {
  display: block;
  margin-top: 14px;
  color: rgba(250, 255, 238, 0.82);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
}

.honor-board {
  display: grid;
  gap: 36px;
  margin-top: 46px;
}

.honor-group {
  padding: 34px;
  border: 1px solid rgba(210, 226, 194, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(36, 58, 29, 0.08);
}

.honor-group-title {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 26px;
}

.honor-group-title > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  border: 1px solid rgba(23, 105, 255, 0.20);
  border-radius: 50%;
  background: rgba(23, 105, 255, 0.07);
  font-size: 15px;
  font-weight: 900;
}

.honor-group-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.honor-group-title p {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

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

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

.honor-card {
  min-height: 336px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(210, 226, 194, 0.86);
  border-radius: 8px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.honor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 105, 255, 0.24);
  box-shadow: 0 22px 46px rgba(20, 73, 130, 0.12);
}

.honor-thumb {
  height: 194px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #fbfdf7 0%, #edf4e8 100%);
  border: 1px solid rgba(220, 230, 214, 0.96);
}

.honor-thumb.narrow {
  background: #fbfdf7;
}

.honor-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.honor-card h4 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.honor-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.advantages {
  background: #fffffa;
}

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

.advantage-card {
  min-height: 254px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffffa, #f8fbf1);
}

.advantage-card:nth-child(2) span {
  color: var(--teal);
  border-color: rgba(57, 240, 189, 0.24);
  background: rgba(57, 240, 189, 0.10);
}

.advantage-card:nth-child(3) span {
  color: var(--green);
  border-color: rgba(126, 230, 95, 0.22);
  background: rgba(126, 230, 95, 0.10);
}

.advantage-card:nth-child(4) span {
  color: var(--gold);
  border-color: rgba(255, 215, 106, 0.32);
  background: rgba(255, 215, 106, 0.12);
}

.cta {
  padding: 70px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(18, 184, 216, 0.24), transparent 30%),
    linear-gradient(135deg, #1769ff, #12b8d8),
    linear-gradient(90deg, transparent 0 70%, rgba(255, 255, 255, 0.16) 70% 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: 34px;
  line-height: 1.3;
  font-weight: 900;
}

.cta p {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.cta .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.primary-button.light {
  color: var(--brand);
  background: var(--white);
  box-shadow: none;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 28px 0;
  color: #596456;
  background: #fffffa;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.footer-inner img {
  width: 158px;
}

@media (max-width: 1080px) {
  .gy-site-header .nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
  }

  .gy-site-header .product-nav {
    position: relative;
  }

  .gy-site-header .product-mega {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 110px);
    overflow: auto;
  }

  .gy-site-header .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro {
    padding: 58px 0 64px;
  }

  .intro-focus {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .intro-focus article {
    padding: 22px;
  }

  .intro-focus h3 {
    font-size: 18px;
  }

  .intro-focus p {
    font-size: 14px;
  }

  .hero h1 {
    max-width: 780px;
    font-size: 48px;
  }

  .hero-visual {
    max-width: 620px;
  }

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

  .honors-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .honors-summary {
    max-width: 320px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header.gy-site-header {
    height: auto;
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 6vw;
  }

  .gy-site-header .brand {
    min-width: 0;
  }

  .gy-site-header .brand-text {
    font-size: 16px;
  }

  .gy-site-header .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 0 0 3px;
    font-size: 13px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .gy-site-header .nav::-webkit-scrollbar {
    display: none;
  }

  .gy-site-header .nav a {
    flex: 0 0 auto;
    padding: 0;
    white-space: nowrap;
  }

  .gy-site-header .product-mega {
    left: 16px;
    right: 16px;
    width: auto;
    padding: 14px;
    transform: none;
  }

  .gy-site-header .product-list {
    grid-template-columns: 1fr;
  }

  .gy-site-header .nav-consult {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    padding: 64px 0 0;
  }

  .hero-grid {
    min-height: 0;
  }

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

  .hero-lead {
    font-size: 16px;
    line-height: 1.76;
  }

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

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

  .console-orbit {
    display: none;
  }

  .hero-metrics,
  .problem-grid,
  .capability-grid,
  .intro-focus,
  .intro-facts,
  .value-grid,
  .advantage-grid,
  .honor-grid,
  .honor-grid.two-columns {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading.compact {
    display: block;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .honor-group {
    padding: 24px;
  }

  .honor-group-title {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .honor-group-title h3 {
    font-size: 24px;
  }

  .cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .capability .section-heading h2 {
    white-space: normal;
  }
}

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

  .gy-site-header .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .gy-site-header .brand-text {
    font-size: 14px;
  }

  .gy-site-header .brand-text small {
    font-size: 10px;
  }

  .gy-site-header .nav-consult {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .platform-window {
    min-height: auto;
    padding: 14px;
    overflow: hidden;
  }

  .console-status-row span {
    width: 100%;
  }

  .window-bar {
    height: auto;
    min-height: 40px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }

  .console-hero {
    padding: 20px;
  }

  .console-hero strong {
    font-size: 38px;
  }

  .bar-chart {
    gap: 8px;
  }

  .bar-chart em {
    font-size: 11px;
  }

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

  .metric {
    min-height: 110px;
    padding: 22px;
  }

  .metric strong,
  .intro-facts strong {
    font-size: 36px;
  }

  .intro-focus article {
    padding: 18px;
  }

  .intro-focus span {
    position: static;
    margin-bottom: 12px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .capability .section-heading h2 {
    white-space: normal;
  }

  .problem-shell {
    padding: 22px;
  }

  .problem-card {
    min-height: 0;
    padding: 22px;
  }

  .value-card,
  .capability-card,
  .advantage-card {
    padding: 22px;
  }

  .honors-summary {
    max-width: none;
  }

  .honor-group {
    padding: 20px;
  }

  .honor-thumb {
    height: 184px;
  }

  .cta h2 {
    font-size: 27px;
  }
}
