/* ===================================================
   BRIDGE GRC — PDPL PROCESSING REGISTER (product page)
   Loaded after styles.css. Distinct layout per section.
   =================================================== */

/* ===================================================
   1 — HERO (copy left, layered visual right)
   =================================================== */
/* The hero.png is a CENTERED, symmetric scene (hexagonal health radar + layered
   register). So the hero stacks: copy centered on top, the whole image showcased
   below and feathered into the page — nothing overlaps, nothing is cropped. */
.pdpl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(96px, 12vh, 140px) var(--space-md) var(--space-2xl);
  overflow: hidden;
}

.pdpl-hero__aura {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 620px;
  background: radial-gradient(ellipse at center, rgba(45, 200, 130, 0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.pdpl-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pdpl-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdpl-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: var(--space-sm) 0 var(--space-md);
}

.pdpl-accent { color: var(--accent-primary); }

.pdpl-hero__subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.pdpl-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.pdpl-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-primary);
  border: 1px solid rgba(45, 200, 130, 0.28);
  background: rgba(45, 200, 130, 0.05);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
}

.pdpl-hero__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* image showcased beneath the copy at a generous size; it feathers into the page
   on every edge and its lower portion peeks below the fold to invite scroll */
.pdpl-hero__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
  pointer-events: none;
}

.pdpl-hero__visual img {
  width: min(960px, 100%);
  height: auto;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.5));
  /* symmetric feather — image sits on its own now, edges dissolve into the page;
     bottom fades hardest so it melts into the next section */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 5%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right,  transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 5%, #000 84%, transparent 100%);
          mask-composite: intersect;
}

/* ===================================================
   2 — WHAT PDPL REQUIRES
   =================================================== */
.pdpl-req {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border-subtle);
}

.pdpl-req__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}

.pdpl-req__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
}

.pdpl-req__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pdpl-req__item {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-surface);
}

.pdpl-req__no {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-sm);
}

.pdpl-req__item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pdpl-req__item strong { color: var(--text-primary); font-weight: 600; }

.pdpl-req__foot {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================
   3 — DASHBOARD CENTERPIECE
   =================================================== */
.pdpl-dash {
  position: relative;
  padding: var(--section-gap) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.pdpl-dash__glow {
  position: absolute;
  top: 24%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(45, 200, 130, 0.07), transparent 65%);
  pointer-events: none;
}

.pdpl-dash__head {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

.pdpl-dash__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
}

.pdpl-dash__shot {
  position: relative;
  max-width: 980px;
  margin: 0 auto var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-bento);
  background: var(--bg-void);
  padding: clamp(12px, 2vw, 24px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.pdpl-dash__shot img { width: 100%; height: auto; border-radius: 10px; display: block; }

.pdpl-dash__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: 980px;
  margin: 0 auto;
}

.pdpl-dchip {
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-void);
}

.pdpl-dchip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.pdpl-dchip span { font-size: 13px; color: var(--text-secondary); }

/* ===================================================
   4 + 5 — SPOTLIGHTS (split)
   =================================================== */
.pdpl-spot { padding: var(--section-gap) 0; overflow: hidden; }
.pdpl-spot--alt {
  background: #020407;          /* matches the forms-image black → seamless */
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pdpl-spot__split {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: var(--space-xl);
  align-items: center;
}

.pdpl-spot__split--rev { grid-template-columns: 1.07fr 0.93fr; }
.pdpl-spot__split--rev .pdpl-spot__text { order: 2; }

/* enlarge the visual into the empty copy-side space (bleed compensates so
   the image keeps the same rendered size while the copy gets more room) */
.pdpl-spot__split:not(.pdpl-spot__split--rev) .pdpl-spot__visual { margin-right: -9%; }
.pdpl-spot__split--rev .pdpl-spot__visual { margin-left: -9%; }

.pdpl-spot__text .section-title { margin: var(--space-sm) 0 var(--space-md); }

.pdpl-spot__text > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.pdpl-spot__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdpl-spot__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pdpl-spot__list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 4px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  transform: rotate(-45deg);
}

.pdpl-spot__visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.5));
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right,  transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
          mask-composite: intersect;
}

/* ===================================================
   6 — FEATURE LIST (2-col rows)
   =================================================== */
.pdpl-feats { padding: var(--section-gap) 0; }

.pdpl-feats__head { text-align: center; margin-bottom: var(--space-2xl); }

.pdpl-feats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.pdpl-feat {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) 0;
}

.pdpl-feat__ic {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent-primary);
  border: 1px solid var(--border-subtle);
  background: rgba(45, 200, 130, 0.04);
}
.pdpl-feat__ic svg { width: 22px; height: 22px; }

.pdpl-feat h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pdpl-feat p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===================================================
   7 — MANAGED SERVICE
   =================================================== */
.pdpl-managed {
  padding: var(--section-gap) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pdpl-managed__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}

.pdpl-managed__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
}

.pdpl-managed__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1180px;
  margin: 0 auto;
}

.pdpl-mstep {
  padding: var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-bento);
  background: var(--bg-void);
  position: relative;
}

.pdpl-mstep__no {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: rgba(45, 200, 130, 0.35);
  display: block;
  margin-bottom: var(--space-sm);
}

.pdpl-mstep h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pdpl-mstep p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===================================================
   8 — WHY / WHO
   =================================================== */
.pdpl-why { padding: var(--section-gap) 0; }

.pdpl-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.pdpl-why__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pdpl-why__item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.pdpl-audience {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.pdpl-audience__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.pdpl-audience__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pdpl-chip {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 9px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* warm the whole group when hovering near it, and glow each chip on hover */
.pdpl-audience:hover .pdpl-chip { border-color: rgba(45, 200, 130, 0.28); }
.pdpl-chip:hover {
  border-color: var(--accent-primary);
  color: var(--text-primary);
  background: rgba(45, 200, 130, 0.08);
  box-shadow: 0 0 22px rgba(45, 200, 130, 0.35);
}

/* ===================================================
   9 — CTA
   =================================================== */
.pdpl-cta { padding: var(--space-3xl) var(--space-md); }

.pdpl-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-bento);
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(45, 200, 130, 0.10), transparent 60%),
    var(--bg-surface);
}

.pdpl-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: var(--space-sm) 0 var(--space-md);
}

.pdpl-cta__sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.pdpl-cta__fallback {
  margin-top: var(--space-lg);
  font-size: 14px;
  color: var(--text-tertiary);
}
.pdpl-cta__fallback a { color: var(--accent-primary); }

/* ===================================================
   THE FULL PLATFORM — bento showcase (PDPL-scoped)
   Borderless, feathered, blended; wide heatmap as the feature.
   =================================================== */
.pdpl-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl) var(--space-xl);
  max-width: 1180px;
  margin: 0 auto;
}

.pdpl-bento__tile { margin: 0; }
.pdpl-bento__tile--feature,
.pdpl-bento__tile--wide { grid-column: 1 / -1; }   /* full-width tiles */

.pdpl-bento__shot {
  transition: transform 0.35s ease;
}
.pdpl-bento__tile:hover .pdpl-bento__shot { transform: translateY(-5px); }

.pdpl-bento__shot img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.5));
  /* feathered all four edges so each scene melts into the page */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right,  transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
          mask-composite: intersect;
}

.pdpl-bento__tile figcaption { margin-top: var(--space-sm); padding: 0 4px; }
.pdpl-bento__tile--feature figcaption,
.pdpl-bento__tile--wide figcaption {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pdpl-bento__tile figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.pdpl-bento__tile--feature figcaption strong { font-size: clamp(24px, 2.6vw, 30px); }
.pdpl-bento__tile:hover figcaption strong { color: var(--accent-primary); }

.pdpl-bento__tile figcaption span {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .pdpl-req__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pdpl-hero { min-height: 0; padding: calc(96px + var(--space-lg)) var(--space-md) var(--space-2xl); }
  .pdpl-hero__aura { top: 10%; width: 90vw; }
  .pdpl-hero__inner { flex: none; }
  .pdpl-hero__copy { max-width: none; }
  .pdpl-hero__visual {
    flex: none;
    max-width: 620px;
    margin: var(--space-xl) auto 0;
  }
  .pdpl-hero__visual img {
    max-height: none;
    width: 100%;
  }

  .pdpl-dash__chips { grid-template-columns: 1fr 1fr; }

  .pdpl-spot__split,
  .pdpl-spot__split--rev { grid-template-columns: 1fr; gap: var(--space-lg); }
  .pdpl-spot__split--rev .pdpl-spot__text { order: 0; }
  .pdpl-spot__visual { order: -1; margin: 0; }

  .pdpl-feats__grid { grid-template-columns: 1fr; }
  .pdpl-managed__steps { grid-template-columns: 1fr; }
  .pdpl-why__grid { grid-template-columns: 1fr 1fr; }
  .pdpl-bento { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .pdpl-req__grid { grid-template-columns: 1fr; }
  .pdpl-dash__chips { grid-template-columns: 1fr; }
  .pdpl-why__grid { grid-template-columns: 1fr; }
  .pdpl-bento { grid-template-columns: 1fr; }
}
