.page-buyer {
  --accent: var(--color-buyer);
}

.buyer-hero {
  background: radial-gradient(circle at 50% 78%, rgba(0, 113, 227, 0.08), transparent 34%), var(--color-white);
}

.proof-title {
  margin-bottom: 0;
  color: var(--color-black);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.network-visual {
  border: 0.5px solid var(--color-hairline);
  border-radius: 28px;
  background: linear-gradient(180deg, #fbfbfd, #ffffff);
  overflow: hidden;
}

.network-visual svg {
  width: 100%;
  height: auto;
}

.map-line {
  fill: none;
  stroke: rgba(110, 110, 115, 0.18);
  stroke-width: 1.2;
}

.map-line-soft {
  stroke: rgba(0, 113, 227, 0.16);
}

.network-links path {
  fill: none;
  stroke: var(--color-buyer);
  stroke-width: 1.5;
  opacity: 0.24;
  animation: pulseLink 2s ease-in-out infinite;
}

.network-links path:nth-child(2) {
  animation-delay: 650ms;
}

.nodes circle {
  fill: var(--color-white);
  stroke: var(--color-buyer);
  stroke-width: 2;
  filter: drop-shadow(0 0 16px rgba(0, 113, 227, 0.18));
  transform-box: fill-box;
  transform-origin: center;
  animation: nodePulse 2s ease-in-out infinite;
}

.nodes circle:nth-child(2) { animation-delay: 160ms; }
.nodes circle:nth-child(3) { animation-delay: 320ms; fill: var(--color-buyer); }
.nodes circle:nth-child(4) { animation-delay: 480ms; }
.nodes circle:nth-child(5) { animation-delay: 640ms; }
.nodes circle:nth-child(6) { animation-delay: 800ms; }
.nodes circle:nth-child(7) { animation-delay: 960ms; }

.node-labels text {
  fill: var(--color-gray);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@keyframes pulseLink {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.82; }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.18); opacity: 1; }
}

.api-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
}

.api-copy {
  text-align: left;
}

.api-steps {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.api-steps p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: var(--color-gray);
  font-size: 17px;
  line-height: 1.5;
}

.api-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(0, 113, 227, 0.22);
  border-radius: 50%;
  color: var(--color-buyer);
  font-size: 13px;
  font-weight: 600;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
}

.pricing-featured {
  border-width: 2px;
  border-color: var(--color-buyer);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: var(--radius-pill);
  background: rgba(0, 113, 227, 0.08);
  color: var(--color-buyer);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-plan {
  margin: 0 0 16px;
  color: var(--color-gray);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-price {
  margin-bottom: 26px;
  color: var(--color-black);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.pricing-price span {
  color: var(--color-gray);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.45;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
}

.pricing-card li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-buyer);
  content: "";
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.buyer-final-cta {
  background: var(--color-buyer);
  color: var(--color-white);
}

.buyer-final-cta .subline {
  color: rgba(255, 255, 255, 0.85);
}

.page-buyer .feature-grid .feature-card,
.page-buyer .use-card {
  background: var(--color-white);
}

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

  .api-copy {
    text-align: center;
  }

  .api-steps {
    max-width: 560px;
    margin-inline: auto;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .network-visual {
    border-radius: 22px;
  }

  .node-labels text {
    display: none;
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-links path,
  .nodes circle {
    animation: none !important;
  }
}
