:root {
  --pc-ink: #101114;
  --pc-muted: #666b73;
  --pc-line: #e3e5e8;
  --pc-paper: #f6f7f5;
  --pc-card: #fff;
  --pc-green: #bff46b;
  --pc-dark: #101412;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  color: var(--pc-ink);
  background: var(--pc-paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--pc-paper);
}
a {
  color: inherit;
  text-decoration: none;
}
.pc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #ffffff1f;
  background: #101412f2;
  color: #fff;
  backdrop-filter: blur(14px);
}
.pc-header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.pc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.pc-brand img {
  width: 32px;
  height: 32px;
}
.pc-header nav {
  display: flex;
  gap: 24px;
  color: #c6cbc7;
  font-size: 13px;
}
.pc-header nav a:hover {
  color: #fff;
}
.pc-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
}
.pc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pc-green);
  color: #101412 !important;
  padding: 11px 17px;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.pc-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 590px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: center;
}
.pc-hero-copy {
  padding: 90px 0;
}
.pc-eyebrow {
  margin: 0 0 25px;
  color: #177347;
  font:
    750 11px/1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pc-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.pc-lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--pc-muted);
  font-size: 18px;
  line-height: 1.65;
}
.pc-hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 650;
}
.pc-summary {
  border-radius: 26px;
  background: var(--pc-dark);
  color: #fff;
  padding: 30px;
  box-shadow: 0 24px 60px #0b13102b;
}
.pc-summary span {
  color: var(--pc-green);
  font:
    750 10px/1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pc-summary p {
  margin: 38px 0 0;
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.pc-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.pc-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--pc-line);
  padding-top: 20px;
}
.pc-toc strong {
  margin-bottom: 16px;
  font-size: 12px;
}
.pc-toc a {
  border-left: 1px solid var(--pc-line);
  padding: 9px 0 9px 16px;
  color: var(--pc-muted);
  font-size: 12px;
  line-height: 1.35;
}
.pc-toc a:hover {
  border-color: #177347;
  color: var(--pc-ink);
}
.pc-layout > .pc-page-body {
  border-top: 1px solid var(--pc-line);
}
.pc-page-body [id^="section-"] {
  scroll-margin-top: 95px;
}
.pc-section-label,
.pc-value-panel > span,
.pc-guide-step aside > span,
.pc-system-summary > span,
.pc-audience-summary > span,
.pc-comparison-sides > section > span,
.pc-comparison-source > span {
  color: #177347;
  font: 750 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pc-page-body h2,
.pc-page-body h3,
.pc-page-body p {
  overflow-wrap: anywhere;
}
.pc-page-body ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}
.pc-page-body li {
  position: relative;
  padding-left: 20px;
  color: #3f4548;
  font-size: 14px;
  line-height: 1.55;
}
.pc-page-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #177347;
  font-weight: 800;
}

/* Feature pages: discovery, system, execution and audit each use a different reading pattern. */
.pc-feature-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 44px;
  padding: 54px 0;
  border-bottom: 1px solid var(--pc-line);
}
.pc-feature-lead h2,
.pc-audit-intro > h2 {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.pc-feature-lead > div > p,
.pc-audit-intro > p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--pc-muted);
  font-size: 17px;
  line-height: 1.75;
}
.pc-value-panel {
  align-self: stretch;
  border-radius: 24px;
  background: var(--pc-dark);
  color: #fff;
  padding: 30px;
}
.pc-value-panel h3 {
  margin: 34px 0 0;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.pc-value-panel p {
  margin: 16px 0 0;
  color: #bdc5bf;
  font-size: 14px;
  line-height: 1.7;
}
.pc-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 0 0;
}
.pc-feature-card {
  min-height: 370px;
  border: 1px solid var(--pc-line);
  border-radius: 22px;
  background: var(--pc-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.pc-feature-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 300px;
}
.pc-feature-card h2 {
  margin: 44px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.pc-feature-card > p {
  margin: 18px 0 0;
  color: var(--pc-muted);
  line-height: 1.7;
}
.pc-value-inline {
  margin-top: auto;
  border-top: 1px solid var(--pc-line);
  padding-top: 22px;
}
.pc-value-inline h3 {
  margin: 0;
  color: #176f48;
  font-size: 16px;
  line-height: 1.35;
}
.pc-value-inline p {
  margin: 10px 0 0;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.65;
}
.pc-system-loop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--pc-line);
}
.pc-system-loop > section {
  min-height: 390px;
  background: var(--pc-paper);
  padding: 42px;
  display: flex;
  flex-direction: column;
}
.pc-system-loop > section:nth-child(1),
.pc-system-loop > section:nth-child(4) {
  background: #eef4e9;
}
.pc-system-loop h2 {
  margin: 64px 0 0;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.pc-system-loop > section > p {
  margin: 18px 0 0;
  color: var(--pc-muted);
  line-height: 1.7;
}
.pc-system-summary,
.pc-audience-summary {
  margin-top: 14px;
  border-radius: 24px;
  background: var(--pc-dark);
  color: #fff;
  padding: 32px;
}
.pc-system-summary p,
.pc-audience-summary p {
  max-width: 780px;
  margin: 26px 0 0;
  font-size: clamp(21px, 2.8vw, 33px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.pc-execution-flow > section {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--pc-line);
}
.pc-execution-stage {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pc-execution-stage span {
  color: #177347;
  font: 750 32px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pc-execution-stage b {
  color: #7c847e;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pc-execution-flow h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.pc-execution-flow section > div:last-child > p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--pc-muted);
  line-height: 1.72;
}
.pc-audit-intro {
  padding: 54px 0;
}
.pc-audit-intro > .pc-value-panel {
  margin-top: 34px;
  max-width: 760px;
}
.pc-audit-stack > section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid var(--pc-line);
}
.pc-audit-stack h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.pc-audit-stack section > div > p {
  margin: 16px 0 0;
  color: var(--pc-muted);
  line-height: 1.7;
}

/* Audience pages read like work situations, not feature specifications. */
.pc-audience-heading {
  padding: 48px 0 28px;
}
.pc-audience-heading h2 {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.pc-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pc-audience-card {
  min-height: 420px;
  border: 1px solid var(--pc-line);
  border-radius: 22px;
  background: var(--pc-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.pc-audience-card--outcome {
  background: #eef4e9;
}
.pc-audience-card h2 {
  margin: 50px 0 0;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.pc-audience-card > p {
  margin: 18px 0 0;
  color: var(--pc-muted);
  line-height: 1.7;
}
.pc-audience-value {
  margin-top: auto;
  border-top: 1px solid var(--pc-line);
  padding-top: 22px;
}
.pc-audience-value h3 {
  margin: 0;
  color: #176f48;
  font-size: 16px;
  line-height: 1.35;
}
.pc-audience-value p {
  margin: 10px 0 0;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Guides keep a procedural shape; hub, integrations and troubleshooting are separate variants. */
.pc-guide-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--pc-line);
}
.pc-guide-index span,
.pc-diagnostic-node {
  color: #177347;
  font: 750 28px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pc-guide-copy h2,
.pc-diagnostic-path h2,
.pc-integration-checklist h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.pc-guide-copy > p,
.pc-diagnostic-path section > div > p,
.pc-integration-checklist > section > p {
  margin: 18px 0 0;
  color: var(--pc-muted);
  line-height: 1.72;
}
.pc-guide-step aside {
  border-radius: 18px;
  background: #eef4e9;
  padding: 22px;
}
.pc-guide-step aside h3 {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.35;
}
.pc-guide-step aside p {
  margin: 12px 0 0;
  color: #555e57;
  font-size: 14px;
  line-height: 1.65;
}
.pc-guide-result {
  margin-top: 14px;
  border-radius: 24px;
  background: var(--pc-dark);
  color: #fff;
  padding: 32px;
}
.pc-guide-result > span {
  color: var(--pc-green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.pc-guide-result h2 {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(25px, 3.4vw, 42px);
  line-height: 1.2;
}
.pc-docs-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 34px;
  padding: 50px 0;
}
.pc-docs-intro > h2,
.pc-docs-intro > p {
  grid-column: 1;
}
.pc-docs-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.pc-docs-intro > p {
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.72;
}
.pc-docs-intro .pc-value-panel {
  grid-column: 2;
  grid-row: 1 / span 3;
}
.pc-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.pc-docs-grid > section {
  min-height: 340px;
  border: 1px solid var(--pc-line);
  border-radius: 20px;
  background: var(--pc-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.pc-docs-grid h2 {
  margin: 38px 0 0;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.pc-docs-grid section > p {
  margin: 16px 0 0;
  color: var(--pc-muted);
  line-height: 1.65;
}
.pc-diagnostic-path {
  position: relative;
}
.pc-diagnostic-path::before {
  content: "";
  position: absolute;
  top: 64px;
  bottom: 64px;
  left: 25px;
  width: 1px;
  background: #a9c8b5;
}
.pc-diagnostic-path > section {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(260px, .8fr);
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--pc-line);
}
.pc-diagnostic-node {
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pc-paper);
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px #a9c8b5;
}
.pc-integration-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 12px;
}
.pc-integration-checklist > section {
  min-height: 410px;
  border: 1px solid var(--pc-line);
  border-radius: 22px;
  background: var(--pc-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.pc-integration-checklist header span {
  color: #177347;
  font: 750 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pc-integration-checklist header h2 {
  margin-top: 36px;
}

/* Comparison pages present two product centers before the choice scenarios. */
.pc-comparison-sides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 0;
}
.pc-comparison-sides > section {
  min-height: 470px;
  border: 1px solid var(--pc-line);
  border-radius: 24px;
  background: var(--pc-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.pc-comparison-sides > section:first-child {
  border-color: var(--pc-dark);
  background: var(--pc-dark);
  color: #fff;
}
.pc-comparison-sides > section:first-child > span {
  color: var(--pc-green);
}
.pc-comparison-sides h2 {
  margin: 48px 0 0;
  font-size: clamp(29px, 3.5vw, 46px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.pc-comparison-sides > section > p {
  margin: 20px 0 0;
  color: var(--pc-muted);
  line-height: 1.72;
}
.pc-comparison-sides > section:first-child > p,
.pc-comparison-sides > section:first-child .pc-comparison-value p {
  color: #bdc5bf;
}
.pc-comparison-value {
  margin-top: auto;
  border-top: 1px solid #87908755;
  padding-top: 22px;
}
.pc-comparison-value h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}
.pc-comparison-value p {
  margin: 10px 0 0;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.65;
}
.pc-comparison-choice {
  padding: 48px 0 20px;
}
.pc-comparison-choice > div {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: 42px;
  padding: 38px 0;
  border-bottom: 1px solid var(--pc-line);
}
.pc-comparison-choice h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.pc-comparison-choice > div > p {
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.75;
}
.pc-comparison-choice .pc-value-inline {
  grid-column: 2;
}
.pc-comparison-source {
  margin: 24px 0 0;
  border-radius: 16px;
  background: #eef4e9;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pc-comparison-source a {
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pc-section {
  scroll-margin-top: 95px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  padding: 58px 0;
  border-bottom: 1px solid var(--pc-line);
}
.pc-number {
  color: #879087;
  font:
    700 11px/1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}
.pc-section h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.pc-section p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--pc-muted);
  font-size: 16px;
  line-height: 1.75;
}
.pc-section ul {
  max-width: 760px;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}
.pc-section li {
  border-radius: 14px;
  background: var(--pc-card);
  padding: 14px 16px;
  color: #32373a;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: inset 0 0 0 1px var(--pc-line);
}
.pc-section li:before {
  content: "✓";
  margin-right: 8px;
  color: #177347;
  font-weight: 800;
}
.pc-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 80px;
  border-radius: 30px;
  background: var(--pc-dark);
  color: #fff;
  padding: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.pc-cta h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.pc-cta p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #aeb6b0;
  line-height: 1.65;
}
.pc-footer {
  border-top: 1px solid var(--pc-line);
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  color: var(--pc-muted);
  font-size: 12px;
}
.pc-footer > div p {
  max-width: 520px;
  line-height: 1.55;
}
.pc-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.pc-footer nav a[aria-current="page"] {
  color: var(--pc-ink);
  font-weight: 750;
}
.pc-footer > span {
  grid-column: 2;
}
@media (max-width: 850px) {
  .pc-header-inner {
    height: 64px;
  }
  .pc-header nav {
    display: none;
  }
  .pc-actions > a:first-child {
    display: none;
  }
  .pc-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pc-hero-copy {
    padding: 74px 0 45px;
  }
  .pc-summary {
    margin-bottom: 70px;
  }
  .pc-layout {
    grid-template-columns: 1fr;
  }
  .pc-toc {
    display: none;
  }
  .pc-section {
    grid-template-columns: 42px 1fr;
  }
  .pc-section ul {
    grid-template-columns: 1fr;
  }
  .pc-feature-lead,
  .pc-docs-intro {
    grid-template-columns: 1fr;
  }
  .pc-docs-intro .pc-value-panel {
    grid-column: 1;
    grid-row: auto;
  }
  .pc-system-loop,
  .pc-audience-grid,
  .pc-comparison-sides,
  .pc-integration-checklist {
    grid-template-columns: 1fr;
  }
  .pc-guide-step,
  .pc-audit-stack > section,
  .pc-diagnostic-path > section {
    grid-template-columns: 54px minmax(0, 1fr);
  }
  .pc-guide-step aside,
  .pc-audit-stack .pc-value-inline,
  .pc-diagnostic-path .pc-value-inline {
    grid-column: 2;
  }
  .pc-docs-grid {
    grid-template-columns: 1fr;
  }
  .pc-comparison-choice > div {
    grid-template-columns: 1fr;
  }
  .pc-comparison-choice .pc-value-inline {
    grid-column: 1;
  }
  .pc-cta {
    padding: 38px;
    align-items: flex-start;
    flex-direction: column;
  }
  .pc-footer {
    grid-template-columns: 1fr;
  }
  .pc-footer nav {
    justify-content: flex-start;
  }
  .pc-footer > span {
    grid-column: 1;
  }
}
@media (max-width: 540px) {
  .pc-header-inner,
  .pc-hero,
  .pc-layout,
  .pc-cta,
  .pc-footer {
    width: min(100% - 28px, 1180px);
  }
  .pc-brand strong {
    display: none;
  }
  .pc-hero h1 {
    font-size: 44px;
  }
  .pc-lead {
    font-size: 16px;
  }
  .pc-summary p {
    font-size: 20px;
  }
  .pc-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 42px 0;
  }
  .pc-feature-grid {
    grid-template-columns: 1fr;
  }
  .pc-feature-card:nth-child(3) {
    grid-column: auto;
  }
  .pc-system-loop > section,
  .pc-feature-card,
  .pc-audience-card,
  .pc-integration-checklist > section {
    min-height: 0;
    padding: 26px;
  }
  .pc-execution-flow > section,
  .pc-guide-step,
  .pc-audit-stack > section,
  .pc-diagnostic-path > section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pc-guide-step aside,
  .pc-audit-stack .pc-value-inline,
  .pc-diagnostic-path .pc-value-inline {
    grid-column: 1;
  }
  .pc-diagnostic-path::before {
    display: none;
  }
  .pc-comparison-source {
    align-items: flex-start;
    flex-direction: column;
  }
  .pc-cta {
    border-radius: 22px;
    padding: 28px;
  }
  .pc-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.pc-section .pc-detail {
  color: #3f4544;
}

.pc-faq-list {
  max-width: 760px;
  margin-top: 30px;
  border-top: 1px solid var(--pc-line);
}

.pc-faq-list details {
  border-bottom: 1px solid var(--pc-line);
  padding: 0 2px;
}

.pc-faq-list summary {
  cursor: pointer;
  padding: 20px 34px 20px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.pc-faq-list details p {
  margin: -4px 0 22px;
  font-size: 15px;
}

.pc-example dl {
  max-width: 760px;
  margin: 30px 0 0;
  display: grid;
  gap: 10px;
}

.pc-example dl > div {
  border: 1px solid var(--pc-line);
  border-radius: 16px;
  background: var(--pc-card);
  padding: 18px 20px;
}

.pc-example dt {
  color: #177347;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pc-example dd {
  margin: 9px 0 0;
  color: var(--pc-muted);
  font-size: 15px;
  line-height: 1.65;
}

.pc-related {
  width: min(1180px, calc(100% - 40px));
  margin: -40px auto 110px;
  border-top: 1px solid var(--pc-line);
  padding-top: 50px;
}

.pc-related > div h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.045em;
}

.pc-related > div p {
  max-width: 720px;
  color: var(--pc-muted);
  line-height: 1.7;
}

.pc-related nav {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pc-related nav a {
  min-height: 190px;
  border: 1px solid var(--pc-line);
  border-radius: 20px;
  background: var(--pc-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.pc-related nav span {
  color: #177347;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.pc-related nav strong {
  margin-top: 12px;
  font-size: 20px;
}

.pc-related nav small {
  margin-top: 12px;
  color: var(--pc-muted);
  font-size: 13px;
  line-height: 1.55;
}

.pc-related nav b {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12px;
}

@media (max-width: 700px) {
  .pc-related {
    width: min(100% - 28px, 1180px);
  }
  .pc-related nav {
    grid-template-columns: 1fr;
  }
}
