.organisms-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4.5rem;
  background:
    radial-gradient(circle at 18% 16%, rgba(73, 211, 154, 0.14), transparent 31rem),
    radial-gradient(circle at 84% 18%, rgba(241, 209, 138, 0.13), transparent 34rem),
    radial-gradient(circle at 64% 76%, rgba(155, 89, 245, 0.11), transparent 28rem),
    linear-gradient(135deg, rgba(5, 10, 18, 0.99), rgba(6, 6, 12, 0.98) 52%, rgba(14, 18, 27, 0.96));
}

.organisms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), transparent 82%);
}

.organisms-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  gap: 2.25rem;
  align-items: center;
  min-width: 0;
}

.organisms-hero-layout > * {
  min-width: 0;
}

.organisms-hero-copy {
  max-width: 46rem;
}

#organisms-hero-title {
  max-width: 13ch;
  font-size: 4.45rem;
  letter-spacing: 0;
  line-height: 1;
}

.organisms-hero-copy p {
  max-width: 41rem;
}

.organisms-hero .lab-actions {
  margin-top: 1.55rem;
}

.organisms-hero-console {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(240, 238, 246, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(10, 20, 28, 0.72), rgba(8, 11, 18, 0.86)),
    rgba(8, 13, 18, 0.78);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.organisms-hero-console::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto 1rem;
  height: 268px;
  pointer-events: none;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 22%, rgba(73, 211, 154, 0.15), transparent 10rem),
    radial-gradient(circle at 80% 22%, rgba(241, 209, 138, 0.15), transparent 11rem),
    linear-gradient(120deg, rgba(73, 211, 154, 0.08), transparent 38%, rgba(155, 89, 245, 0.1));
}

.organisms-hero-console-asset {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 268px;
  aspect-ratio: 54 / 38;
  object-fit: cover;
  border: 1px solid rgba(73, 211, 154, 0.2);
  border-radius: 8px;
  background: #050711;
  pointer-events: none;
}

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

.organisms-hero-proof-list a {
  display: grid;
  gap: 0.28rem;
  min-height: 5.75rem;
  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;
}

.organisms-hero-proof-list a:hover,
.organisms-hero-proof-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(73, 211, 154, 0.62);
  background: rgba(73, 211, 154, 0.09);
  outline: none;
}

.organisms-hero-proof-list span {
  color: rgba(73, 211, 154, 0.94);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.organisms-hero-card-mirror span,
.organisms-hero-card-cells span {
  color: rgba(185, 136, 255, 0.94);
}

.organisms-hero-card-web3 span,
.organisms-hero-card-proof span {
  color: rgba(241, 209, 138, 0.94);
}

.organisms-hero-card-research span {
  color: rgba(255, 117, 117, 0.94);
}

.organisms-hero-console-boundary {
  margin: 0.88rem 0 0;
  padding: 0.74rem 0.84rem;
  border: 1px solid rgba(241, 209, 138, 0.22);
  border-radius: 8px;
  color: rgba(240, 238, 246, 0.72);
  background: rgba(241, 209, 138, 0.07);
  font-size: 0.78rem;
  line-height: 1.48;
}

@media (max-width: 1080px) {
  .organisms-hero-layout {
    grid-template-columns: 1fr;
  }

  #organisms-hero-title {
    max-width: 13ch;
    font-size: 3.4rem;
  }

  .organisms-hero-copy {
    max-width: 49rem;
  }

  .organisms-hero-console-asset {
    height: auto;
    object-fit: contain;
  }

  .organisms-hero-console::before {
    height: calc(100% - 1.88rem);
  }
}

@media (max-width: 720px) {
  .organisms-hero-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .organisms-hero .container.organisms-hero-layout {
    width: calc(100vw - 56px);
    max-width: 23rem;
    padding-right: 0;
    padding-left: 0;
  }

  #organisms-hero-title {
    max-width: 11ch;
    font-size: 2.46rem;
    overflow-wrap: break-word;
  }

  .organisms-hero-copy p {
    max-width: 29ch;
  }

  .organisms-hero .lab-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .organisms-hero .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

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

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

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

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

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