:root {
  --gw-bg: #f7fbfd;
  --gw-surface: rgba(255, 255, 255, 0.9);
  --gw-surface-solid: #ffffff;
  --gw-ink: #102438;
  --gw-muted: #667d91;
  --gw-line: rgba(74, 112, 142, 0.17);
  --gw-line-strong: rgba(55, 105, 141, 0.28);
  --gw-blue: #2e6be6;
  --gw-blue-deep: #184cba;
  --gw-cyan: #18a7bd;
  --gw-teal: #0d9a81;
  --gw-success: #0c9b72;
  --gw-warning: #bc7921;
  --gw-blocked: #8a5961;
  --gw-radius: 24px;
  --gw-shadow: 0 24px 70px rgba(40, 83, 113, 0.12);
  --gw-shadow-soft: 0 12px 36px rgba(45, 81, 109, 0.09);
  --gw-font: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --gw-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--gw-ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(61, 159, 215, 0.12), transparent 27rem),
    radial-gradient(circle at 8% 30%, rgba(66, 198, 174, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--gw-bg) 45%, #ffffff 100%);
  font-family: var(--gw-font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(64, 113, 148, 0.12) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
  content: "";
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(46, 107, 230, 0.35);
  outline-offset: 3px;
}

.gw-skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--gw-blue-deep);
  text-decoration: none;
  transition: top 0.2s ease;
}

.gw-skip:focus {
  top: 12px;
}

.gw-nav {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 20px;
  width: min(1340px, calc(100% - 32px));
  min-height: 72px;
  margin: 12px auto 0;
  padding: 10px 14px;
  border: 1px solid var(--gw-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--gw-shadow-soft);
  backdrop-filter: blur(22px);
}

.gw-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.gw-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 8px 20px rgba(44, 80, 112, 0.12);
}

.gw-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
}

.gw-nav-links a {
  color: var(--gw-muted);
  font-size: 13px;
  font-weight: 740;
  text-decoration: none;
  white-space: nowrap;
}

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

.gw-nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.gw-language {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  background: rgba(246, 250, 253, 0.9);
}

.gw-language button {
  min-width: 38px;
  height: 34px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: var(--gw-muted);
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.gw-language button[aria-pressed="true"] {
  color: #fff;
  background: var(--gw-blue);
  box-shadow: 0 6px 18px rgba(46, 107, 230, 0.24);
}

.gw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--gw-line-strong);
  border-radius: 999px;
  color: var(--gw-ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 820;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(41, 78, 109, 0.06);
  transition: transform 0.24s var(--gw-ease), border-color 0.24s ease, box-shadow 0.24s ease;
}

.gw-button:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 107, 230, 0.42);
  box-shadow: 0 14px 32px rgba(41, 78, 109, 0.12);
}

.gw-button-primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--gw-cyan), var(--gw-blue));
  box-shadow: 0 14px 30px rgba(46, 107, 230, 0.22);
}

.gw-button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 12px;
  white-space: nowrap;
}

.gw-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  width: min(1340px, calc(100% - 40px));
  margin: clamp(54px, 7vw, 104px) auto 0;
}

.gw-eyebrow {
  margin: 0 0 18px;
  color: var(--gw-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.gw-hero h1,
.gw-section h2,
.gw-cta h2 {
  margin: 0;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.gw-hero h1 {
  max-width: 770px;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 760;
  line-height: 0.99;
}

.gw-hero-lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--gw-muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.72;
}

.gw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gw-boundary-list {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.gw-boundary-list li {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--gw-line);
}

.gw-boundary-list b {
  color: var(--gw-ink);
  font-size: 12px;
}

.gw-boundary-list span {
  color: var(--gw-muted);
  font-size: 12px;
}

.gw-hero-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--gw-line);
  border-radius: 34px;
  background: #edf7fb;
  box-shadow: var(--gw-shadow);
  transform: perspective(1200px) rotateX(calc(var(--gw-tilt-y, 0) * 1deg)) rotateY(calc(var(--gw-tilt-x, 0) * 1deg));
  transform-style: preserve-3d;
  transition: transform 0.28s var(--gw-ease);
}

.gw-hero-visual::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%, rgba(47, 148, 195, 0.08));
  pointer-events: none;
  content: "";
}

.gw-hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
}

.gw-signal-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gw-signal-overlay path {
  fill: none;
  stroke: rgba(28, 175, 201, 0.18);
  stroke-width: 2;
}

.gw-signal-overlay .gw-flow-line {
  stroke: url("#gw-signal-gradient");
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 14 22;
  filter: drop-shadow(0 0 7px rgba(27, 184, 201, 0.7));
  animation: gw-signal-flow 2.9s linear infinite;
}

.gw-signal-overlay .gw-flow-b {
  animation-duration: 3.8s;
  animation-direction: reverse;
}

.gw-signal-overlay .gw-flow-c {
  animation-duration: 3.3s;
  animation-delay: -1.2s;
}

.gw-signal-nodes circle {
  fill: #2bcbd2;
  transform-box: fill-box;
  transform-origin: center;
  animation: gw-signal-node-pulse 2.4s ease-in-out infinite;
}

.gw-signal-nodes circle:nth-child(3n + 2) {
  animation-delay: -0.8s;
}

.gw-signal-nodes circle:nth-child(3n) {
  animation-delay: -1.6s;
}

.gw-travel-dot {
  fill: #1fd0dd;
  filter: drop-shadow(0 0 8px rgba(24, 167, 189, 0.9));
}

.gw-travel-dot-b {
  fill: #2e6be6;
}

.gw-travel-dot-c {
  fill: #0d9a81;
}

@keyframes gw-signal-flow {
  to { stroke-dashoffset: -72; }
}

@keyframes gw-signal-node-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.7); }
  48% { opacity: 1; transform: scale(1.36); }
}

.gw-live-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(81, 127, 159, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(47, 80, 108, 0.12);
  backdrop-filter: blur(18px);
}

.gw-live-card small {
  display: block;
  color: var(--gw-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.gw-live-card strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.gw-live-card a {
  padding: 7px 10px;
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  color: var(--gw-blue);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.gw-live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gw-success);
  box-shadow: 0 0 0 0 rgba(12, 155, 114, 0.35);
  animation: gw-live-pulse 2.4s infinite;
}

@keyframes gw-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(12, 155, 114, 0.32); }
  50% { box-shadow: 0 0 0 9px rgba(12, 155, 114, 0); }
}

.gw-proof-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: 64px auto 0;
  overflow: hidden;
  border: 1px solid var(--gw-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--gw-shadow-soft);
}

.gw-proof-rail article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px 22px;
}

.gw-proof-rail article + article {
  border-left: 1px solid var(--gw-line);
}

.gw-proof-rail strong {
  color: var(--gw-blue);
  font-size: 30px;
  line-height: 1;
}

.gw-proof-rail span {
  color: var(--gw-muted);
  font-size: 12px;
  line-height: 1.45;
}

.gw-section {
  width: min(1240px, calc(100% - 40px));
  margin: clamp(100px, 12vw, 168px) auto 0;
  scroll-margin-top: 112px;
}

.gw-section-heading {
  max-width: 830px;
}

.gw-section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.gw-section h2,
.gw-cta h2 {
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 720;
  line-height: 1.04;
}

.gw-section-heading > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--gw-muted);
  font-size: 16px;
}

.gw-section-heading-centered > p:last-child {
  margin-inline: auto;
}

.gw-buyer-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 18px;
  margin-top: 44px;
}

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

.gw-buyer-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--gw-shadow-soft);
}

.gw-buyer-card::after {
  position: absolute;
  right: -40px;
  bottom: -74px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(38, 140, 175, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 160, 196, 0.1), transparent 66%);
  content: "";
}

.gw-buyer-card-featured {
  min-height: 518px;
  align-content: space-between;
  background:
    radial-gradient(circle at 78% 18%, rgba(46, 107, 230, 0.13), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 248, 251, 0.94));
}

.gw-buyer-card > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gw-line);
  border-radius: 13px;
  color: var(--gw-cyan);
  background: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 900;
}

.gw-buyer-card small {
  color: var(--gw-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.gw-buyer-card h3 {
  max-width: 700px;
  margin: 12px 0 0;
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.gw-buyer-card:not(.gw-buyer-card-featured) h3 {
  font-size: clamp(22px, 1.9vw, 30px);
}

.gw-buyer-card p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--gw-muted);
  font-size: 14px;
}

.gw-buyer-card a {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: end;
  width: max-content;
  color: var(--gw-blue);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.gw-architecture {
  width: min(1320px, calc(100% - 40px));
}

.gw-architecture-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 620px;
  margin-top: 48px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid var(--gw-line);
  border-radius: 34px;
  background:
    linear-gradient(rgba(47, 117, 152, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 117, 152, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: 34px 34px;
  box-shadow: var(--gw-shadow);
}

.gw-architecture-map::before,
.gw-architecture-map::after {
  position: absolute;
  top: 45%;
  width: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gw-cyan));
  content: "";
  animation: gw-line-flow 3s linear infinite;
}

.gw-architecture-map::before {
  left: 27%;
}

.gw-architecture-map::after {
  right: 27%;
  transform: scaleX(-1);
}

@keyframes gw-line-flow {
  0% { opacity: 0.25; background-position: -100px 0; }
  50% { opacity: 1; }
  100% { opacity: 0.25; background-position: 100px 0; }
}

.gw-architecture-lane {
  position: relative;
  z-index: 2;
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--gw-shadow-soft);
}

.gw-architecture-lane small {
  color: var(--gw-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.gw-architecture-lane h3 {
  margin: 14px 0 0;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.gw-architecture-lane ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--gw-muted);
  list-style: none;
}

.gw-architecture-lane li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
}

.gw-architecture-lane li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gw-cyan);
  border-radius: 50%;
  content: "";
}

.gw-architecture-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(46, 107, 230, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 25%, rgba(222, 244, 249, 0.95) 100%);
  box-shadow: 0 24px 80px rgba(29, 112, 159, 0.2);
  text-align: center;
}

.gw-architecture-core img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: contain;
}

.gw-architecture-core small {
  margin-top: 14px;
  color: var(--gw-cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.gw-architecture-core strong {
  max-width: 170px;
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.2;
}

.gw-architecture-core > span {
  margin-top: 8px;
  color: var(--gw-muted);
  font-size: 11px;
}

.gw-core-orbit,
.gw-core-orbit::before,
.gw-core-orbit::after {
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(24, 167, 189, 0.18);
  border-radius: 50%;
  content: "";
}

.gw-core-orbit {
  animation: gw-orbit 10s linear infinite;
}

.gw-core-orbit::before {
  inset: 10px -20px;
}

.gw-core-orbit::after {
  inset: -22px 18px;
}

@keyframes gw-orbit {
  to { transform: rotate(360deg); }
}

.gw-core-orbit i {
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gw-cyan);
  box-shadow: 0 0 18px rgba(24, 167, 189, 0.8);
}

.gw-flow-steps {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 34px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gw-flow-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 9px 11px;
  border: 1px solid var(--gw-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
}

.gw-flow-steps b {
  color: var(--gw-cyan);
  font-size: 10px;
}

.gw-flow-steps span {
  font-size: 10px;
  font-weight: 800;
}

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

.gw-provider-card {
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--gw-shadow-soft);
  transition: transform 0.28s var(--gw-ease), border-color 0.28s ease;
}

.gw-provider-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 107, 230, 0.28);
}

.gw-provider-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.gw-provider-card img {
  width: 108px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.gw-provider-card h3 {
  margin: 22px 0 0;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.gw-provider-card p {
  margin: 12px 0 0;
  color: var(--gw-muted);
  font-size: 13px;
}

.gw-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  color: var(--gw-muted);
  background: rgba(247, 250, 252, 0.9);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gw-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.gw-provider-card[data-runtime="live"] .gw-status {
  color: var(--gw-success);
  border-color: rgba(12, 155, 114, 0.2);
  background: rgba(228, 248, 241, 0.8);
}

.gw-provider-card[data-runtime="blocked"] .gw-status {
  color: var(--gw-blocked);
  border-color: rgba(138, 89, 97, 0.18);
  background: rgba(250, 241, 243, 0.82);
}

.gw-provider-card[data-runtime="unknown"] .gw-status {
  color: var(--gw-warning);
  background: rgba(252, 247, 235, 0.8);
}

.gw-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  margin-top: 44px;
}

.gw-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 28px;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--gw-shadow-soft);
}

.gw-plan-featured {
  border-color: rgba(46, 107, 230, 0.34);
  background:
    radial-gradient(circle at 78% 0%, rgba(48, 145, 216, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 70px rgba(46, 107, 230, 0.16);
}

.gw-plan-badge {
  position: absolute;
  right: 20px;
  top: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--gw-cyan), var(--gw-blue));
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gw-plan > small {
  color: var(--gw-cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.gw-plan h3 {
  min-height: 68px;
  margin: 17px 0 0;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.gw-plan > strong {
  margin-top: 20px;
  color: var(--gw-blue);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.gw-plan > p {
  min-height: 116px;
  margin: 20px 0 0;
  color: var(--gw-muted);
  font-size: 13px;
}

.gw-plan ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--gw-line);
  list-style: none;
}

.gw-plan li {
  position: relative;
  padding-left: 23px;
  color: var(--gw-muted);
  font-size: 12px;
}

.gw-plan li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  color: var(--gw-cyan);
  font-weight: 900;
  content: "✓";
}

.gw-plan .gw-button {
  width: 100%;
  margin-top: auto;
}

.gw-integration {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  width: min(1320px, calc(100% - 40px));
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid var(--gw-line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 5%, rgba(46, 107, 230, 0.12), transparent 22rem),
    rgba(255, 255, 255, 0.85);
  box-shadow: var(--gw-shadow);
}

.gw-integration-copy h2 {
  font-size: clamp(38px, 4.4vw, 62px);
}

.gw-integration-copy > p:not(.gw-eyebrow) {
  margin: 22px 0 0;
  color: var(--gw-muted);
  font-size: 15px;
}

.gw-contract-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.gw-contract-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--gw-line);
}

.gw-contract-list dt {
  color: var(--gw-muted);
  font-size: 11px;
}

.gw-contract-list dd {
  min-width: 0;
  margin: 0;
}

.gw-contract-list code {
  color: var(--gw-blue-deep);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.gw-code-panel {
  overflow: hidden;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  background: rgba(246, 250, 253, 0.94);
  box-shadow: var(--gw-shadow-soft);
}

.gw-code-head,
.gw-code-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--gw-line);
  color: var(--gw-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gw-code-head button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  color: var(--gw-blue);
  background: #fff;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.gw-code-panel pre {
  max-height: 520px;
  margin: 0;
  padding: 24px;
  overflow: auto;
  color: #1c4662;
  background:
    linear-gradient(rgba(67, 120, 153, 0.045) 1px, transparent 1px),
    #f8fcfe;
  background-size: 100% 28px;
  font: 12px/1.75 Consolas, "SFMono-Regular", monospace;
  tab-size: 2;
}

.gw-code-foot {
  border-top: 1px solid var(--gw-line);
  border-bottom: 0;
  letter-spacing: 0;
  font-weight: 700;
}

.gw-code-foot b {
  color: var(--gw-blue);
}

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

.gw-case-grid > article {
  min-height: 570px;
  padding: 24px;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--gw-shadow-soft);
}

.gw-case-grid > article > small {
  color: var(--gw-cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.gw-case-grid h3 {
  margin: 20px 0 0;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.gw-case-visual {
  position: relative;
  height: 190px;
  margin-top: 17px;
  overflow: hidden;
  border: 1px solid var(--gw-line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(61, 116, 151, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 116, 151, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, #f8fcfe, #e8f6fa);
  background-size: 24px 24px, 24px 24px, auto;
}

.gw-case-visual i {
  position: absolute;
  border: 1px solid rgba(46, 107, 230, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(44, 86, 115, 0.12);
  animation: gw-case-float 5s var(--gw-ease) infinite alternate;
}

.gw-case-visual i:nth-child(1) {
  left: 8%;
  top: 24%;
  width: 32%;
  height: 52%;
}

.gw-case-visual i:nth-child(2) {
  left: 38%;
  top: 13%;
  width: 26%;
  height: 38%;
  animation-delay: -1.3s;
}

.gw-case-visual i:nth-child(3) {
  right: 8%;
  top: 30%;
  width: 28%;
  height: 48%;
  animation-delay: -2.2s;
}

.gw-case-visual i:nth-child(4) {
  left: 36%;
  bottom: 8%;
  width: 32%;
  height: 25%;
  animation-delay: -3s;
}

.gw-case-visual-cross i {
  border-color: rgba(13, 154, 129, 0.26);
}

.gw-case-visual-enterprise i {
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #eff6f8);
}

@keyframes gw-case-float {
  to { transform: translateY(-8px); }
}

.gw-case-grid dl {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
}

.gw-case-grid dl div {
  padding: 14px 0;
  border-top: 1px solid var(--gw-line);
}

.gw-case-grid dt {
  color: var(--gw-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.gw-case-grid dd {
  margin: 6px 0 0;
  color: var(--gw-muted);
  font-size: 12px;
}

.gw-trust {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid var(--gw-line);
  border-radius: 34px;
  background: rgba(245, 251, 252, 0.88);
  box-shadow: var(--gw-shadow-soft);
}

.gw-trust-main h2 {
  font-size: clamp(36px, 4.1vw, 56px);
}

.gw-trust-main > p:not(.gw-eyebrow) {
  margin: 20px 0 0;
  color: var(--gw-muted);
  font-size: 14px;
}

.gw-trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.gw-trust-actions a {
  padding: 8px 11px;
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  color: var(--gw-blue-deep);
  background: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}

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

.gw-trust-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--gw-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.gw-trust-grid span {
  color: var(--gw-cyan);
  font-size: 10px;
  font-weight: 900;
}

.gw-trust-grid h3 {
  margin: 14px 0 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.gw-trust-grid p {
  margin: 10px 0 0;
  color: var(--gw-muted);
  font-size: 12px;
}

.gw-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  width: min(1240px, calc(100% - 40px));
  margin: clamp(100px, 12vw, 168px) auto 110px;
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid var(--gw-line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 94% 8%, rgba(46, 107, 230, 0.15), transparent 20rem),
    radial-gradient(circle at 10% 100%, rgba(24, 167, 189, 0.1), transparent 20rem),
    #fff;
  box-shadow: var(--gw-shadow);
}

.gw-cta h2 {
  max-width: 820px;
  font-size: clamp(38px, 4.5vw, 62px);
}

.gw-cta .gw-actions {
  flex-direction: column;
  min-width: 230px;
  margin: 0;
}

.gw-cta .gw-button {
  width: 100%;
}

site-footer {
  display: block;
}

[data-gw-reveal] {
  opacity: 1;
  transform: none;
}

[data-gw-reveal].is-visible {
  animation: gw-reveal-in 0.7s var(--gw-ease) both;
}

@keyframes gw-reveal-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .gw-nav {
    grid-template-columns: auto 1fr auto;
  }

  .gw-nav-links {
    gap: 11px;
  }

  .gw-nav-links a {
    font-size: 11px;
  }

  .gw-hero {
    grid-template-columns: 1fr;
    max-width: 940px;
  }

  .gw-hero-copy {
    max-width: 860px;
  }

  .gw-hero-visual {
    min-height: 540px;
  }

  .gw-hero-visual > img {
    min-height: 540px;
  }

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

  .gw-proof-rail article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--gw-line);
  }

  .gw-proof-rail article:nth-child(4) {
    border-top: 1px solid var(--gw-line);
  }

  .gw-architecture-map {
    grid-template-columns: 1fr;
    padding-bottom: 132px;
  }

  .gw-architecture-map::before,
  .gw-architecture-map::after {
    display: none;
  }

  .gw-architecture-core {
    width: 260px;
    justify-self: center;
    grid-row: 2;
  }

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

  .gw-integration {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .gw-nav {
    grid-template-columns: 1fr auto;
  }

  .gw-nav-links {
    display: none;
  }

  .gw-nav-actions {
    grid-column: 2;
  }

  .gw-buyer-layout,
  .gw-trust {
    grid-template-columns: 1fr;
  }

  .gw-buyer-card-featured {
    min-height: 390px;
  }

  .gw-provider-grid,
  .gw-plan-grid,
  .gw-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gw-plan-featured {
    grid-row: span 1;
  }

  .gw-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gw-cta .gw-actions {
    flex-direction: row;
    min-width: 0;
  }
}

@media (max-width: 650px) {
  .gw-nav {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 64px;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 20px;
  }

  .gw-brand span {
    display: none;
  }

  .gw-language button {
    min-width: 34px;
    padding-inline: 7px;
  }

  .gw-button-small {
    display: none;
  }

  .gw-hero,
  .gw-section,
  .gw-architecture,
  .gw-integration,
  .gw-cta {
    width: calc(100% - 20px);
  }

  .gw-hero {
    margin-top: 42px;
  }

  .gw-hero h1 {
    font-size: clamp(42px, 12.2vw, 58px);
    line-height: 1.01;
    overflow-wrap: anywhere;
  }

  .gw-hero-lead {
    font-size: 16px;
  }

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

  .gw-button {
    width: 100%;
  }

  .gw-boundary-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gw-hero-visual,
  .gw-hero-visual > img {
    min-height: 430px;
  }

  .gw-hero-visual {
    border-radius: 24px;
  }

  .gw-hero-visual > img {
    object-position: 49% center;
  }

  .gw-live-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .gw-proof-rail {
    grid-template-columns: 1fr;
    width: calc(100% - 20px);
  }

  .gw-proof-rail article + article {
    border-left: 0;
    border-top: 1px solid var(--gw-line);
  }

  .gw-section {
    margin-top: 94px;
  }

  .gw-section h2,
  .gw-cta h2 {
    font-size: clamp(36px, 10.6vw, 50px);
    overflow-wrap: anywhere;
  }

  .gw-buyer-card,
  .gw-buyer-card-featured {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 22px;
  }

  .gw-buyer-card a {
    grid-column: 1 / -1;
  }

  .gw-architecture-map {
    min-height: 0;
    padding: 20px 20px 220px;
    border-radius: 24px;
  }

  .gw-architecture-core {
    width: 220px;
    min-height: 220px;
  }

  .gw-flow-steps {
    left: 20px;
    right: 20px;
    bottom: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gw-provider-grid,
  .gw-plan-grid,
  .gw-case-grid,
  .gw-trust-grid {
    grid-template-columns: 1fr;
  }

  .gw-plan {
    min-height: 0;
  }

  .gw-plan h3,
  .gw-plan > p {
    min-height: 0;
  }

  .gw-integration,
  .gw-trust,
  .gw-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .gw-code-panel pre {
    max-height: 420px;
    padding: 18px;
    font-size: 10px;
  }

  .gw-contract-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gw-cta .gw-actions {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .gw-signal-overlay {
    display: none;
  }
}
