.build-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 2.75rem;
  background:
    linear-gradient(135deg, rgba(6, 18, 26, 0.94), rgba(6, 6, 12, 0.98) 46%, rgba(16, 10, 29, 0.92)),
    linear-gradient(90deg, rgba(102, 227, 255, 0.1), rgba(155, 89, 245, 0.08), rgba(73, 211, 154, 0.08));
}

.build-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
}

.build-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: 2.25rem;
  align-items: center;
}

.build-hero-copy {
  max-width: 43rem;
}

.build-hero-copy h1 {
  max-width: 12ch;
  font-size: 4.65rem;
  letter-spacing: 0;
  line-height: 1.02;
}

.build-hero-copy p {
  max-width: 40rem;
}

.build-hero-console {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(240, 238, 246, 0.14);
  border-radius: 8px;
  background: rgba(8, 15, 24, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.build-hero-console-asset {
  display: block;
  width: 100%;
  height: 250px;
  aspect-ratio: 54 / 38;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(102, 227, 255, 0.14);
  background: #07111d;
}

.build-hero-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.build-hero-proof-list a {
  display: grid;
  gap: 0.28rem;
  min-height: 4.85rem;
  padding: 0.68rem;
  border: 1px solid rgba(240, 238, 246, 0.12);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.build-hero-proof-list a:hover,
.build-hero-proof-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(102, 227, 255, 0.58);
  background: rgba(102, 227, 255, 0.095);
  outline: none;
}

.build-hero-proof-list span {
  color: rgba(102, 227, 255, 0.82);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.build-hero-proof-list strong {
  color: var(--text-primary);
  font-size: 0.84rem;
  line-height: 1.2;
}

.build-hero-proof-list em {
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.35;
}

.build-hero-card-protocol span,
.build-hero-card-user span {
  color: rgba(73, 211, 154, 0.9);
}

.build-hero-card-investor span,
.build-hero-card-subscriber span {
  color: rgba(234, 213, 141, 0.92);
}

.build-hero-card-collaborator span {
  color: rgba(185, 136, 255, 0.94);
}

.build-hero-console-boundary {
  margin: 0.85rem 0 0;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(234, 213, 141, 0.2);
  border-radius: 8px;
  color: rgba(240, 238, 246, 0.72);
  background: rgba(234, 213, 141, 0.075);
  font-size: 0.78rem;
  line-height: 1.48;
}

@media (max-width: 980px) {
  .build-hero {
    padding: 7rem 0 3rem;
  }

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

  .build-hero-copy h1 {
    max-width: 12ch;
    font-size: 3.4rem;
  }

  .build-hero-console-asset {
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}

@media (max-width: 640px) {
  .build-hero {
    padding: 6.25rem 0 2.5rem;
  }

  .build-hero-copy h1 {
    font-size: 2.55rem;
  }

  .build-hero-console {
    padding: 0.75rem;
  }

  .build-hero-proof-list {
    grid-template-columns: 1fr;
  }

  .build-hero-proof-list a {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .build-hero-proof-list a {
    transition: none;
  }

  .build-hero-proof-list a:hover,
  .build-hero-proof-list a:focus-visible {
    transform: none;
  }
}
