.hydra-labs {
  --hydra-labs-bg: #f5f5f5;
  --hydra-labs-panel: #ffffff;
  --hydra-labs-text: #090909;
  --hydra-labs-muted: #5f5f5f;
  --hydra-labs-line: #d9d9d9;
  --hydra-labs-accent: #00c853;

  background: radial-gradient(circle at 8% 0%, #fefefe 0%, var(--hydra-labs-bg) 52%, #ececec 100%);
  color: var(--hydra-labs-text);
  font-family: Inter, sans-serif;
  padding: 72px 0;
}

.hydra-labs *,
.hydra-labs *::before,
.hydra-labs *::after {
  box-sizing: border-box;
}

.hydra-labs__shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.hydra-labs__header {
  margin: 0 0 28px;
}

.hydra-labs__kicker {
  margin: 0 0 12px;
  color: var(--hydra-labs-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hydra-labs__header h2 {
  margin: 0;
  color: #000;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.92;
}

.hydra-labs__section,
.hydra-labs__cta,
.hydra-labs__ideas {
  border: 1px solid var(--hydra-labs-line);
  border-radius: 8px;
  background: var(--hydra-labs-panel);
}

.hydra-labs__section {
  margin: 0 0 16px;
  padding: 24px;
}

.hydra-labs__section--working {
  border-color: #111;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.hydra-labs__section--working h3 {
  font-size: 22px;
}

.hydra-labs__section--working .hydra-labs__list li {
  font-size: 18px;
  line-height: 1.38;
}

.hydra-labs__section h3,
.hydra-labs__cta h3,
.hydra-labs__ideas h3 {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.hydra-labs__section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hydra-labs__indicator,
.hydra-labs__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--hydra-labs-accent);
  flex: 0 0 10px;
}

.hydra-labs__indicator--pulse {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.52);
  animation: hydraLabsPulse 1.7s ease-out infinite;
}

.hydra-labs__indicator--next {
  background: #fff;
  border: 2px solid var(--hydra-labs-accent);
}

.hydra-labs__indicator--release {
  position: relative;
  background: #111;
}

.hydra-labs__indicator--release::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 3px;
  height: 6px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.hydra-labs__list,
.hydra-labs__idea-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hydra-labs__list li,
.hydra-labs__idea-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.42;
}

.hydra-labs__dot {
  margin-top: 7px;
}

.hydra-labs__section--release .hydra-labs__dot {
  background: #111;
}

.hydra-labs__history-divider {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hydra-labs__history-divider::before,
.hydra-labs__history-divider::after {
  content: "";
  height: 1px;
  background: #111;
}

.hydra-labs__sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.hydra-labs__cta {
  background: #000;
  border-color: #000;
  color: #fff;
  padding: 24px;
}

.hydra-labs__cta h3 {
  color: #fff;
  font-size: 24px;
}

.hydra-labs__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #000;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.hydra-labs__ideas {
  padding: 22px;
}

.hydra-labs__ideas h3 {
  font-size: 16px;
}

.hydra-labs__idea-list li {
  font-size: 14px;
}

.hydra-labs__empty {
  margin: 16px 0 0;
  color: var(--hydra-labs-muted);
  font-size: 14px;
  font-weight: 650;
}

@keyframes hydraLabsPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.52);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 200, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hydra-labs__indicator--pulse {
    animation: none;
  }
}

@media (max-width: 900px) {
  .hydra-labs {
    padding: 48px 0;
  }

  .hydra-labs__shell {
    grid-template-columns: 1fr;
  }

  .hydra-labs__sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .hydra-labs__shell {
    width: min(100% - 24px, 1180px);
  }

  .hydra-labs__section,
  .hydra-labs__cta,
  .hydra-labs__ideas {
    padding: 18px;
  }
}
