.philosophy-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 2.75rem;
  background:
    radial-gradient(circle at 18% 22%, rgba(241, 209, 138, 0.15), transparent 31rem),
    radial-gradient(circle at 86% 16%, rgba(73, 211, 154, 0.1), transparent 33rem),
    linear-gradient(135deg, rgba(16, 10, 21, 0.96), rgba(6, 6, 12, 0.98) 50%, rgba(6, 20, 22, 0.94));
}

.philosophy-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.026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent);
}

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

.philosophy-hero-grid > * {
  min-width: 0;
}

.philosophy-hero-copy {
  max-width: 44rem;
  min-width: 0;
}

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

.philosophy-hero-copy p {
  max-width: 40rem;
  overflow-wrap: break-word;
}

.philosophy-hero-console {
  position: relative;
  padding: 1rem;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(240, 238, 246, 0.14);
  border-radius: 8px;
  background: rgba(12, 14, 19, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.philosophy-hero-console-asset {
  display: block;
  width: 100%;
  height: 250px;
  aspect-ratio: 54 / 38;
  object-fit: cover;
  border: 1px solid rgba(241, 209, 138, 0.18);
  border-radius: 8px;
  background: #050711;
  pointer-events: none;
}

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

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

.philosophy-hero-proof-list a:hover,
.philosophy-hero-proof-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(241, 209, 138, 0.58);
  background: rgba(241, 209, 138, 0.09);
  outline: none;
}

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

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

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

.philosophy-hero-card-clarity span,
.philosophy-hero-card-proof span {
  color: rgba(73, 211, 154, 0.9);
}

.philosophy-hero-card-authority span,
.philosophy-hero-card-manual span {
  color: rgba(185, 136, 255, 0.94);
}

.philosophy-hero-console-boundary {
  margin: 0.85rem 0 0;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(234, 213, 141, 0.22);
  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: 1120px) {
  .philosophy-hero-proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

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

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

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

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

  .philosophy-hero-copy h1 {
    font-size: 2.42rem;
    overflow-wrap: break-word;
  }

  .philosophy-hero-copy p {
    max-width: 28ch;
  }

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

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

  .philosophy-hero-console {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem;
  }

  .philosophy-hero-console-asset,
  .philosophy-hero-proof-list,
  .philosophy-hero-console-boundary {
    width: 100%;
    max-width: 100%;
  }

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

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

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

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