.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
  min-height: 670px;
  padding-block: 76px 96px;
}

.hero h1,
.page-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.7vw, 6.25rem);
}

.hero h1 em {
  display: block;
  color: var(--green);
  font-weight: inherit;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.trust-line {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.78rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(23 106 70 / 12%);
}

.matter-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgb(17 25 20 / 13%);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgb(17 25 20 / 12%);
  rotate: 1deg;
}

.matter-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-label {
  color: var(--green);
}

.matter-card h2 {
  max-width: 410px;
  margin-bottom: 24px;
  font-size: 1.7rem;
}

.answer-line {
  width: 78%;
  height: 7px;
  margin: 9px 0;
  background: #e0e4dd;
  border-radius: 8px;
}

.answer-line.wide {
  width: 100%;
}

.answer-line.short {
  width: 53%;
  margin-bottom: 28px;
}

.source-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.source-row > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--green-dark);
  background: #e1efd7;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.source-row strong,
.source-row small {
  display: block;
}

.source-row strong {
  font-size: 0.78rem;
}

.source-row small {
  color: var(--muted);
  font-size: 0.65rem;
}

.source-row b {
  color: var(--green);
  font-size: 0.74rem;
}

.review-chip {
  width: fit-content;
  margin: 22px 0 0 auto;
  padding: 7px 10px;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 3px;
  font-size: 0.67rem;
  font-weight: 800;
}

.proof-band {
  border-block: 1px solid var(--line);
  background: rgb(255 254 249 / 56%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-card {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 18px 28px;
  border-left: 1px solid var(--line);
}

.proof-card:last-child {
  border-right: 1px solid var(--line);
}

.proof-card strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.proof-card span {
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.3;
}

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

  .matter-card {
    max-width: 620px;
    rotate: 0deg;
  }

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

@media (max-width: 620px) {
  .hero {
    gap: 42px;
    min-height: auto;
  }

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

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

  .proof-card,
  .proof-card:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .matter-card {
    padding: 22px;
  }
}
