/* Compact public product information pages. Uses the landing design tokens. */
.info-doc {
  padding-bottom: 42px;
}

.info-hero {
  position: relative;
  overflow: hidden;
  margin: 10px 0 24px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(67, 226, 175, .25);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 229, 171, .2), transparent 32%),
    linear-gradient(145deg, rgba(7, 32, 24, .96), rgba(3, 16, 12, .92));
  box-shadow: 0 30px 90px -54px rgba(41, 232, 171, .8);
}

.info-kicker {
  color: #53e9b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 18ch;
  margin: 10px 0 12px;
  color: #f1fff8;
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.info-hero p {
  max-width: 66ch;
  margin: 0;
  color: rgba(225, 246, 237, .75);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

.info-actions,
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.info-button,
.info-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid rgba(83, 233, 184, .27);
  border-radius: 999px;
  color: #dffff3;
  background: rgba(10, 48, 36, .72);
  text-decoration: none;
}

.info-button.primary {
  border-color: transparent;
  color: #012319;
  background: linear-gradient(135deg, #6cf2c5, #20c996);
  font-weight: 800;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 28px;
}

.info-card,
.info-section,
.status-overview {
  border: 1px solid rgba(83, 233, 184, .18);
  border-radius: 22px;
  background: rgba(6, 25, 19, .78);
  box-shadow: 0 24px 70px -58px rgba(41, 232, 171, .95);
}

.info-card {
  padding: 20px;
}

.info-card h2,
.info-card h3 {
  margin: 0 0 8px;
  color: #effff8;
}

.info-card p,
.info-card li,
.info-section p,
.info-section li {
  color: rgba(220, 242, 233, .72);
  line-height: 1.6;
}

.info-card ul,
.info-section ul {
  padding-left: 20px;
}

.info-section {
  margin: 14px 0;
  padding: clamp(20px, 4vw, 30px);
}

.info-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(83, 233, 184, .18);
  border-radius: 20px;
}

.info-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(4, 20, 15, .82);
}

.info-table th,
.info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(83, 233, 184, .12);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  color: #65eec0;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.info-table td {
  color: rgba(229, 249, 240, .78);
  line-height: 1.5;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(83, 233, 184, .22);
  border-radius: 999px;
  color: #cffff0;
  background: rgba(32, 201, 150, .09);
  font-size: 12px;
}

.info-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49e6b2;
  content: "";
}

.info-badge.research::before {
  background: #f4c96b;
}

.status-overview {
  padding: clamp(20px, 4vw, 30px);
}

.status-summary {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.status-light {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #8aa29a;
  box-shadow: 0 0 0 7px rgba(138, 162, 154, .1);
}

.status-light.ok {
  background: #42e7af;
  box-shadow: 0 0 0 7px rgba(66, 231, 175, .12);
}

.status-light.bad {
  background: #ff7d77;
  box-shadow: 0 0 0 7px rgba(255, 125, 119, .12);
}

.status-list {
  display: grid;
  gap: 8px;
}

.status-row {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(83, 233, 184, .1);
}

.status-value {
  color: #a7bcb4;
  text-align: right;
}

.status-value.ok {
  color: #58e9b9;
}

.status-value.bad {
  color: #ff918b;
}

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

  .info-hero {
    border-radius: 22px;
  }

  .status-row {
    align-items: flex-start;
  }
}

