.specifications-hero {
  align-items: stretch;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-32);
}

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

.hero-actions {
  margin-top: var(--space-24);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.hero-media-desc {
  margin-top: var(--space-16);
}

.hero-media-title {
  font-size: var(--font-size-xl);
}

.breadcrumbs {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: var(--space-8);
  color: var(--color-text-muted);
}

.section-header {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.spec-block .spec-link,
.spec-block .spec-links-inline .spec-link {
  font-size: var(--font-size-sm);
}

.spec-link-separator {
  color: var(--color-text-muted);
}

.spec-table-wrap,
.comparison-table .spec-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.spec-table,
.comparison-table {
  width: 100%;
  font-size: var(--font-size-sm);
}

.spec-table th,
.spec-table td,
.comparison-table th,
.comparison-table td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--color-border-subtle);
  text-align: left;
}

.spec-table thead th,
.comparison-table thead th {
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

.spec-table tbody tr:nth-child(even),
.comparison-table tbody tr:nth-child(even) {
  background-color: rgba(15, 23, 42, 0.7);
}

.spec-list {
  list-style: none;
  display: grid;
  gap: var(--space-12);
  padding-left: 0;
}

.spec-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-text-muted);
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-cyan));
}

.review-card .review-meta {
  font-size: var(--font-size-xs);
}

.faq-accordion {
  display: grid;
  gap: var(--space-12);
}

.faq-trigger {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background-color: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  cursor: pointer;
  font-size: var(--font-size-sm);
}

.faq-trigger span:first-child {
  text-align: left;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-accent-silver);
  border-radius: 999px;
}

.faq-icon::before {
  width: 55%;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px;
  height: 55%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[data-open="true"] .faq-icon::after {
  opacity: 0;
}

.faq-panel {
  padding: 0 1rem 1rem 1rem;
  font-size: var(--font-size-sm);
}

.docs-cta {
  border-style: dashed;
}

.comparison-grid,
.components-grid {
  align-items: stretch;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .spec-table th,
  .spec-table td,
  .comparison-table th,
  .comparison-table td {
    padding-inline: 0.6rem;
  }
}
