.content-page {
  background: var(--page);
  color: var(--text);
}

.content-page main {
  overflow: hidden;
}

.content-hero {
  padding: 118px 0 70px;
  background: var(--page-deep);
  color: var(--text);
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(44px, 7vw, 112px);
}

.content-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.content-hero-summary {
  max-width: 640px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.58;
}

.entity-stamp {
  padding: 30px 0 0 30px;
  border-left: 1px solid rgba(239, 238, 226, 0.22);
}

.entity-stamp span,
.entity-stamp small {
  display: block;
  color: var(--muted);
}

.entity-stamp strong {
  display: block;
  margin: 12px 0 18px;
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.25;
}

.entity-stamp small {
  line-height: 1.7;
}

.content-section {
  padding: clamp(68px, 8vw, 112px) 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.content-section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 9vw, 144px);
}

.content-section h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.13;
  letter-spacing: -0.03em;
}

.content-body {
  max-width: 74ch;
}

.content-body > p:first-child {
  margin-top: 0;
  color: var(--text);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.52;
}

.content-body p {
  color: var(--muted);
  line-height: 1.8;
}

.fact-list,
.scope-list,
.action-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fact-list li,
.scope-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.action-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list span,
.scope-list strong {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.fact-list strong,
.scope-list span {
  font-size: 17px;
  line-height: 1.65;
}

.action-list a {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  color: inherit;
  text-decoration: none;
}

.action-list strong {
  font-size: 17px;
  line-height: 1.65;
}

.action-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.action-list a:hover strong,
.action-list a:focus-visible strong {
  color: var(--accent);
}

.fact-scope-note {
  max-width: 68ch;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.boundary-band {
  background: var(--accent);
  color: var(--accent-ink);
}

.boundary-band .content-section-grid {
  align-items: start;
}

.boundary-band p,
.boundary-band .scope-list strong {
  color: rgba(17, 21, 18, 0.72);
}

.boundary-band .content-body > p:first-child {
  color: var(--accent-ink);
}

.boundary-band .scope-list {
  border-color: rgba(17, 21, 18, 0.2);
}

.boundary-band .scope-list li {
  border-color: rgba(17, 21, 18, 0.2);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  padding: clamp(36px, 6vw, 76px);
  background: var(--page-deep);
  color: var(--text);
}

.contact-panel h2 {
  max-width: 750px;
}

.contact-panel p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.breadcrumb {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: inherit;
  text-underline-offset: 4px;
}

.page-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .content-hero {
    padding: 96px 0 58px;
  }

  .content-hero-grid,
  .content-section-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .entity-stamp {
    padding: 28px 0 0;
    border-top: 1px solid rgba(239, 238, 226, 0.22);
    border-left: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .content-hero h1 {
    font-size: clamp(40px, 11vw, 46px);
  }

  .fact-list li,
  .scope-list li,
  .action-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }
}
