/* pcl-pages.css — Page-specific layouts and section patterns */

/* ===== HERO SECTIONS ===== */

/* Homepage hero */
.pcl-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: var(--pcl-ink);
  position: relative;
  overflow: hidden;
}

.pcl-hero__content {
  padding: calc(var(--pcl-nav-height) + var(--pcl-space-2xl)) clamp(1rem, 4vw, 2.5rem) var(--pcl-space-2xl);
  padding-left: max(clamp(1rem, 4vw, 2.5rem), calc((100vw - var(--pcl-container-max)) / 2 + clamp(1rem, 4vw, 2.5rem)));
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1;
}

.pcl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pcl-amber);
}

.pcl-hero__eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--pcl-amber);
}

.pcl-hero__headline {
  font-family: var(--pcl-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--pcl-fg-on-ink);
  max-width: 540px;
}

.pcl-hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--pcl-fg-muted-on-ink);
  max-width: 460px;
}

.pcl-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.pcl-hero__media {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.pcl-hero__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,1) 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,1) 50%);
}

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

  .pcl-hero__content {
    padding: calc(var(--pcl-nav-height) + 3rem) clamp(1rem, 4vw, 2.5rem) 2.5rem;
  }

  .pcl-hero__media {
    min-height: 280px;
    height: 280px;
    position: relative;
  }

  .pcl-hero__media-img {
    mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 40%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 40%);
  }
}

/* Sub-page hero (dark-top) */
.pcl-sub-hero {
  background-color: var(--pcl-ink);
  padding-top: calc(var(--pcl-nav-height) + var(--pcl-space-2xl));
  padding-bottom: var(--pcl-space-2xl);
  position: relative;
  overflow: hidden;
}

.pcl-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(232, 168, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pcl-sub-hero__inner {
  position: relative;
  z-index: 1;
}

.pcl-sub-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pcl-sub-hero__headline {
  font-family: var(--pcl-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pcl-fg-on-ink);
  margin-bottom: 1.25rem;
}

.pcl-sub-hero__subhead {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--pcl-fg-muted-on-ink);
  margin-bottom: 2rem;
}

.pcl-sub-hero__media {
  border-radius: var(--pcl-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.pcl-sub-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sub-page hero without media (visual ornament) */
.pcl-sub-hero--text-plus-ornament .pcl-sub-hero__grid {
  align-items: start;
}

.pcl-sub-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@media (max-width: 768px) {
  .pcl-sub-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Light-top sub-page hero */
.pcl-page-header--light {
  background-color: var(--pcl-parchment);
  padding-top: calc(var(--pcl-nav-height) + var(--pcl-space-2xl));
  padding-bottom: var(--pcl-space-xl);
}

.pcl-page-header--light .pcl-page-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pcl-amber-muted);
  margin-bottom: 0.875rem;
}

.pcl-page-header--light .pcl-page-header__headline {
  font-family: var(--pcl-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pcl-fg-on-parchment);
  margin-bottom: 1rem;
  max-width: 640px;
}

.pcl-page-header--light .pcl-page-header__subhead {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--pcl-fg-muted-on-parchment);
  max-width: 560px;
}

/* ===== HOMEPAGE SECTIONS ===== */

/* Problem statement */
.pcl-problem-section {
  padding: var(--pcl-space-2xl) 0;
  background-color: var(--pcl-ink);
}

.pcl-problem-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pcl-problem-section__headline {
  font-family: var(--pcl-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--pcl-fg-on-ink);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.pcl-problem-section__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--pcl-fg-muted-on-ink);
  font-weight: 300;
}

@media (max-width: 768px) {
  .pcl-problem-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Bar chart SVG section */
.pcl-bar-chart {
  background-color: var(--pcl-ink-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--pcl-radius-lg);
  padding: 2rem;
}

.pcl-bar-chart__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pcl-fg-muted-on-ink);
  margin-bottom: 1rem;
}

/* 3-step section */
.pcl-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .pcl-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature grid 6-col */
.pcl-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .pcl-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pcl-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials grid */
.pcl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .pcl-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PLATFORM PAGES ===== */
.pcl-feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pcl-feature-detail--reverse {
  direction: rtl;
}

.pcl-feature-detail--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .pcl-feature-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pcl-feature-detail--reverse {
    direction: ltr;
  }
}

.pcl-feature-detail__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pcl-amber);
  margin-bottom: 0.875rem;
}

.pcl-feature-detail__headline {
  font-family: var(--pcl-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--pcl-fg-on-ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pcl-feature-detail__body {
  font-size: 1.0rem;
  line-height: 1.7;
  color: var(--pcl-fg-muted-on-ink);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.pcl-feature-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--pcl-amber);
  text-decoration: none;
  transition: gap var(--pcl-transition), color var(--pcl-transition);
}

.pcl-feature-detail__link:hover {
  gap: 0.625rem;
  color: var(--pcl-amber-light);
}

.pcl-feature-detail__visual {
  border-radius: var(--pcl-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background-color: var(--pcl-ink-surface);
}

.pcl-feature-detail__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature list with icons */
.pcl-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pcl-feature-list__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--pcl-ink-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--pcl-radius-md);
  align-items: flex-start;
}

.pcl-feature-list__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(232, 168, 74, 0.1);
  border-radius: var(--pcl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pcl-amber);
  font-size: 1rem;
  flex-shrink: 0;
}

.pcl-feature-list__content {
  flex: 1;
}

.pcl-feature-list__label {
  font-family: var(--pcl-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pcl-fg-on-ink);
  margin-bottom: 0.375rem;
}

.pcl-feature-list__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--pcl-fg-muted-on-ink);
}

/* Metric feature block */
.pcl-metric-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .pcl-metric-block {
    grid-template-columns: 1fr;
  }
}

.pcl-metric-item {
  padding: 2rem;
  background-color: var(--pcl-ink-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--pcl-radius-lg);
}

.pcl-metric-item__value {
  font-family: var(--pcl-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pcl-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pcl-metric-item__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pcl-fg-on-ink);
  margin-bottom: 0.5rem;
}

.pcl-metric-item__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--pcl-fg-muted-on-ink);
}

/* Two-col explainer */
.pcl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .pcl-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pcl-two-col__heading {
  font-family: var(--pcl-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pcl-fg-on-ink);
  margin-bottom: 1rem;
}

.pcl-two-col__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pcl-fg-muted-on-ink);
}

.pcl-two-col__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
  list-style: none;
}

.pcl-two-col__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--pcl-fg-muted-on-ink);
}

.pcl-two-col__list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--pcl-amber);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* Integrations grid */
.pcl-integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 560px) {
  .pcl-integrations-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE ===== */
.pcl-about-hero {
  padding-top: calc(var(--pcl-nav-height) + var(--pcl-space-2xl));
  padding-bottom: var(--pcl-space-xl);
  background-color: var(--pcl-parchment);
}

.pcl-about-hero__ornament {
  margin-top: 2.5rem;
  background-color: var(--pcl-ink);
  border-radius: var(--pcl-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/6;
}

.pcl-about-hero__ornament img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
  color: transparent;
}

.pcl-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .pcl-team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pcl-contact-minimal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pcl-contact-minimal__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--pcl-fg-on-parchment);
}

.pcl-contact-minimal__item a {
  color: var(--pcl-fg-accent-on-parchment);
  text-decoration: none;
  transition: color var(--pcl-transition);
}

.pcl-contact-minimal__item a:hover {
  color: var(--pcl-ink);
}

.pcl-contact-minimal__icon {
  color: var(--pcl-amber-muted);
  margin-top: 0.125rem;
  width: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.pcl-contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .pcl-contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.pcl-contact-info-panel {
  background-color: var(--pcl-parchment);
  padding: 2rem;
  border-radius: var(--pcl-radius-lg);
  border: 1px solid var(--pcl-parchment-alt);
}

.pcl-contact-info-panel__title {
  font-family: var(--pcl-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pcl-fg-on-parchment);
  margin-bottom: 1.5rem;
}

.pcl-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.pcl-contact-info-item__icon {
  width: 36px;
  height: 36px;
  background-color: rgba(140, 98, 40, 0.1);
  border-radius: var(--pcl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pcl-amber-muted);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.pcl-contact-info-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pcl-fg-muted-on-parchment);
  margin-bottom: 0.25rem;
}

.pcl-contact-info-item__value {
  font-size: 0.9375rem;
  color: var(--pcl-fg-on-parchment);
  line-height: 1.5;
}

.pcl-contact-info-item__value a {
  color: var(--pcl-fg-accent-on-parchment);
  text-decoration: none;
  transition: color var(--pcl-transition);
}

.pcl-contact-info-item__value a:hover {
  color: var(--pcl-ink);
}

/* ===== BLOG PAGE ===== */
.pcl-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .pcl-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pcl-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ARTICLE PAGE ===== */
.pcl-article-layout {
  max-width: var(--pcl-reading-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* Light-top scoped article body typography */
body.pcl-page--light-top .pcl-blog-article__body h2,
body.pcl-page--light-top .pcl-blog-article__body h3,
body.pcl-page--light-top .pcl-blog-article__body h4 {
  font-family: var(--pcl-font-heading);
  color: var(--pcl-fg-on-parchment);
  line-height: 1.25;
}

body.pcl-page--light-top .pcl-blog-article__body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

body.pcl-page--light-top .pcl-blog-article__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

body.pcl-page--light-top .pcl-blog-article__body h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

body.pcl-page--light-top .pcl-blog-article__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--pcl-fg-on-parchment);
  margin-bottom: 1.25rem;
}

body.pcl-page--light-top .pcl-blog-article__body ul,
body.pcl-page--light-top .pcl-blog-article__body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

body.pcl-page--light-top .pcl-blog-article__body ul {
  list-style: disc;
}

body.pcl-page--light-top .pcl-blog-article__body ol {
  list-style: decimal;
}

body.pcl-page--light-top .pcl-blog-article__body li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pcl-fg-on-parchment);
  margin-bottom: 0.375rem;
}

body.pcl-page--light-top .pcl-blog-article__body blockquote {
  border-left: 3px solid var(--pcl-amber-muted);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--pcl-fg-muted-on-parchment);
}

body.pcl-page--light-top .pcl-blog-article__body a {
  color: var(--pcl-fg-accent-on-parchment);
  text-decoration: underline;
}

body.pcl-page--light-top .pcl-blog-article__body code {
  font-family: var(--pcl-font-mono);
  font-size: 0.875em;
  background-color: var(--pcl-parchment-alt);
  padding: 0.125rem 0.375rem;
  border-radius: var(--pcl-radius-sm);
  color: var(--pcl-fg-on-parchment);
}

body.pcl-page--light-top .pcl-blog-article__body pre {
  background-color: var(--pcl-ink);
  border-radius: var(--pcl-radius-md);
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.75rem 0;
}

body.pcl-page--light-top .pcl-blog-article__body pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--pcl-fg-on-ink);
  font-size: 0.875rem;
}

body.pcl-page--light-top .pcl-blog-article__body img {
  max-width: 100%;
  border-radius: var(--pcl-radius-md);
  margin: 1.75rem 0;
}

/* ===== LEGAL PAGES ===== */
body.pcl-page--light-top .pcl-legal-content .legal-article {
  max-width: 720px;
  margin: 0 auto;
}

body.pcl-page--light-top .pcl-legal-content h1 {
  font-family: var(--pcl-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--pcl-fg-on-parchment);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

body.pcl-page--light-top .pcl-legal-content h2 {
  font-family: var(--pcl-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pcl-fg-on-parchment);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

body.pcl-page--light-top .pcl-legal-content h3 {
  font-family: var(--pcl-font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--pcl-fg-on-parchment);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

body.pcl-page--light-top .pcl-legal-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--pcl-fg-on-parchment);
  margin-bottom: 1rem;
}

body.pcl-page--light-top .pcl-legal-content ul,
body.pcl-page--light-top .pcl-legal-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

body.pcl-page--light-top .pcl-legal-content ul {
  list-style: disc;
}

body.pcl-page--light-top .pcl-legal-content ol {
  list-style: decimal;
}

body.pcl-page--light-top .pcl-legal-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pcl-fg-on-parchment);
  margin-bottom: 0.375rem;
}

body.pcl-page--light-top .pcl-legal-content address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pcl-fg-muted-on-parchment);
  background-color: var(--pcl-parchment);
  padding: 1.25rem;
  border-radius: var(--pcl-radius-md);
  border: 1px solid var(--pcl-parchment-alt);
  margin-top: 0.75rem;
}

body.pcl-page--light-top .pcl-legal-content a {
  color: var(--pcl-fg-accent-on-parchment);
  text-decoration: underline;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--pcl-fg-muted-on-parchment);
  margin-bottom: 0.25rem;
}

/* ===== PLATFORM 2-COL FEATURE GRID ===== */
.pcl-feature-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .pcl-feature-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* ===== LONG-FORM FEATURE EXPLAINER ===== */
.pcl-explainer-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pcl-explainer-block__headline {
  font-family: var(--pcl-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--pcl-fg-on-ink);
  margin-bottom: 1rem;
}

.pcl-explainer-block__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--pcl-fg-muted-on-ink);
  font-weight: 300;
}

.pcl-explainer-block__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.pcl-explainer-block__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0rem;
  line-height: 1.65;
  color: var(--pcl-fg-muted-on-ink);
}

.pcl-explainer-block__points li i {
  color: var(--pcl-amber);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ===== PLATFORM FEATURE 3-COL GRID ===== */
.pcl-feature-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .pcl-feature-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .pcl-feature-grid-3col {
    grid-template-columns: 1fr;
  }
}

/* ===== PLAYBOOK CONCEPT ===== */
.pcl-playbook-concept {
  max-width: 680px;
}

.pcl-playbook-concept__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--pcl-fg-muted-on-ink);
  font-weight: 300;
  margin-bottom: 2rem;
}

.pcl-playbook-concept__callout {
  background-color: rgba(232, 168, 74, 0.07);
  border: 1px solid rgba(232, 168, 74, 0.2);
  border-radius: var(--pcl-radius-lg);
  padding: 1.75rem;
}

.pcl-playbook-concept__callout p {
  font-family: var(--pcl-font-heading);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--pcl-fg-on-ink);
}

/* ===== SECURITY DATA HANDLING ===== */
.pcl-data-handling {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .pcl-data-handling {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pcl-data-handling__title {
  font-family: var(--pcl-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pcl-fg-on-ink);
  margin-bottom: 1rem;
}

.pcl-data-handling__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pcl-fg-muted-on-ink);
}

.pcl-data-handling__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  list-style: none;
}

.pcl-data-handling__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--pcl-fg-muted-on-ink);
}

.pcl-data-handling__list li i {
  color: var(--pcl-amber);
  font-size: 0.875rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ===== API CALLOUT LAYOUT ===== */
.pcl-api-callout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .pcl-api-callout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.pcl-api-callout__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pcl-amber);
  margin-bottom: 0.875rem;
}

.pcl-api-callout__headline {
  font-family: var(--pcl-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--pcl-fg-on-ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pcl-api-callout__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pcl-fg-muted-on-ink);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* ===== MISSION BLOCK ===== */
.pcl-mission {
  max-width: 680px;
}

.pcl-mission__headline {
  font-family: var(--pcl-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--pcl-fg-on-parchment);
  margin-bottom: 1.5rem;
}

.pcl-mission__body {
  font-family: var(--pcl-font-heading);
  font-style: italic;
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  line-height: 1.65;
  color: var(--pcl-fg-on-parchment);
  border-left: 3px solid var(--pcl-amber-muted);
  padding-left: 1.5rem;
}

/* ===== CONTACT DETAILS SECTION ===== */
.pcl-contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 640px) {
  .pcl-contact-details {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

.pcl-contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pcl-contact-detail-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pcl-fg-muted-on-parchment);
}

.pcl-contact-detail-item__value {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--pcl-fg-on-parchment);
}

.pcl-contact-detail-item__value a {
  color: var(--pcl-fg-accent-on-parchment);
  text-decoration: none;
  transition: color var(--pcl-transition);
}

.pcl-contact-detail-item__value a:hover {
  color: var(--pcl-ink);
}

/* ===== CONTACT FORM WRAPPER ===== */
/* Structural wrapper on the <form> element alongside .pcl-form */
.pcl-contact-form {
  width: 100%;
}

/* ===== FOOTER GRID CHILDREN ===== */
/* .pcl-footer__brand and .pcl-footer__col are flex column children */
.pcl-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pcl-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ===== BROKEN IMAGE FALLBACK ===== */
/* Prevent alt text overflow when images haven't loaded yet (pre-Artist) */
.pcl-hero__media img,
.pcl-hero__media-img,
.pcl-sub-hero__media img,
.pcl-about-hero__ornament img,
.pcl-blog-card__img-wrap img,
.pcl-blog-card__img {
  /* Suppress visible alt text in decorative/contained image slots */
  font-size: 0;
  color: transparent;
}

/* Dark fallback background for image containers while awaiting Artist */
.pcl-blog-card__img-wrap {
  background-color: var(--pcl-ink-alt);
}

/* ===== LEGAL ARTICLE HEADER ===== */
.legal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(14, 15, 18, 0.1);
}

.legal-header h1 {
  font-family: var(--pcl-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--pcl-ink);
  margin-bottom: 0.5rem;
}
