/* Shared product-page system (from Follow editorial redesign).
   Scope: body.page-product. Class prefix: pp- */

/* ── Kare Follow product page — editorial redesign ── */
/* Scoped to body.page-product. Contact/footer intentionally lightly touched. */

body.page-product {
  --pp-ink: var(--color-heading);
  --pp-ink-soft: var(--color-text);
  --pp-muted: var(--color-text-muted);
  --pp-soft-muted: var(--color-text-muted);
  --pp-border: var(--color-border);
  --pp-border-strong: var(--color-border-strong);
  --pp-surface: var(--color-surface);
  --pp-canvas: var(--color-bg-soft);
  --pp-mist: var(--color-bg-muted);
  --pp-paper: var(--color-bg);
  --pp-brand: var(--color-brand);
  --pp-brand-deep: var(--color-brand-hover);
  --pp-brand-panel: var(--color-dark);
  --pp-teal-glow: rgba(0, 143, 136, 0.22);
  --pp-radius: var(--radius-md);
  --pp-radius-sm: var(--radius-sm);
  --pp-shadow-shot: var(--shadow-shot);
  --pp-shadow-soft: var(--shadow-soft);
  --pp-page-max: var(--container-max);
  --pp-wide-max: var(--container-wide);
  --pp-text-max: 40rem;
  --pp-section-y: var(--space-section-normal);
  --pp-section-y-tight: var(--space-section-compact);
  --pp-body-size: var(--fs-body);
  --pp-body-lh: var(--lh-body);
  color: var(--pp-ink);
  font-family: var(--font-body);
}

body.page-product .pp-container {
  width: min(100% - 2.5rem, var(--pp-page-max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

body.page-product .pp-container--narrow {
  width: min(100% - 2.5rem, 820px);
}

/* ── Type ── */
body.page-product .pp-eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pp-brand);
  line-height: 1.3;
}

body.page-product .pp-eyebrow--on-dark {
  color: #6ecfc8;
}

body.page-product .pp-h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--pp-ink);
  max-width: 14ch;
}

body.page-product .pp-h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--pp-ink);
  max-width: 18ch;
}

body.page-product .pp-h2--on-dark {
  color: #fff;
}

body.page-product .pp-lead,
body.page-product .pp-lede {
  margin: 1.15rem 0 0;
  max-width: var(--pp-text-max);
  font-size: var(--fs-lead, 1.2rem);
  line-height: 1.6;
  color: var(--pp-ink-soft);
}

body.page-product .pp-support {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  font-size: var(--pp-body-size);
  line-height: var(--pp-body-lh);
  color: var(--pp-muted);
}

body.page-product .pp-note {
  margin: 1.5rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--pp-border);
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--pp-soft-muted);
}

body.page-product .pp-editorial-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

body.page-product .pp-editorial-head--dark .pp-lede--on-dark {
  color: rgba(255, 255, 255, 0.78);
}

body.page-product .pp-lede--on-dark {
  color: rgba(255, 255, 255, 0.78);
}

/* ── Buttons ── */
body.page-product .pp-hero-actions,
body.page-product .pp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 1.75rem;
}

body.page-product .pp-btn-primary.tj-primary-btn {
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 143, 136, 0.22);
}

body.page-product .pp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--pp-border-strong);
  background: transparent;
  color: var(--pp-ink);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

body.page-product .pp-btn-secondary:hover,
body.page-product .pp-btn-secondary:focus-visible {
  border-color: var(--pp-brand);
  color: var(--pp-brand);
  background: rgba(0, 143, 136, 0.05);
  outline: none;
}

body.page-product .pp-btn-secondary i {
  font-size: 1rem;
  line-height: 1;
}

body.page-product .pp-btn-primary--on-dark.tj-primary-btn {
  background: #fff;
  color: var(--pp-brand-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

body.page-product .pp-btn-primary--on-dark.tj-primary-btn .btn-text span,
body.page-product .pp-btn-primary--on-dark.tj-primary-btn .btn-icon {
  color: var(--pp-brand-deep);
}

body.page-product .pp-btn-secondary--on-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

body.page-product .pp-btn-secondary--on-dark:hover,
body.page-product .pp-btn-secondary--on-dark:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* ── Screenshots ── */
body.page-product .pp-shot {
  margin: 0;
  position: relative;
}

body.page-product .pp-shot a {
  display: block;
  position: relative;
  border-radius: var(--pp-radius-sm);
  overflow: hidden;
  background: var(--pp-mist);
  box-shadow: var(--pp-shadow-shot);
  border: 1px solid rgba(11, 22, 24, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

body.page-product .pp-shot a::after {
  content: "Avaa suurempana";
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(11, 22, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

body.page-product[data-kd-lang="en"] .pp-shot a::after {
  content: "Open larger";
}

body.page-product .pp-shot a:hover,
body.page-product .pp-shot a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(11, 22, 24, 0.18);
  outline: none;
}

body.page-product .pp-shot a:hover::after,
body.page-product .pp-shot a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

body.page-product .pp-shot img {
  display: block;
  width: 100%;
  height: auto;
}

body.page-product .pp-shot figcaption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pp-soft-muted);
}

body.page-product .pp-shot--quiet a {
  box-shadow: var(--pp-shadow-soft);
}

/* Portrait phone screenshots — keep them phone-sized, not full-column towers */
body.page-product .pp-shot--phone {
  display: flex;
  justify-content: center;
}

body.page-product .pp-shot--phone a {
  width: fit-content;
  max-width: min(18.5rem, 100%);
}

body.page-product .pp-shot--phone img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(32rem, 68vh);
}

/* ── Section rhythm ── */
body.page-product .pp-section,
body.page-product .pp-cta-section,
body.page-product .pp-hero {
  padding-block: var(--pp-section-y);
  position: relative;
}

/* Theme .section-gap-x adds side margins that break full-bleed backgrounds */
body.page-product .pp-section.section-gap-x,
body.page-product .pp-cta-section.section-gap-x,
body.page-product .pp-hero.section-gap-x {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-inline: 0;
  border-radius: 0;
}

body.page-product .pp-section--problem {
  background: var(--pp-paper);
}

body.page-product .pp-section--domains {
  background: var(--pp-surface);
}

body.page-product .pp-section--portfolio {
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(0, 143, 136, 0.1), transparent 60%),
    linear-gradient(165deg, #e8f3f2 0%, #f4f8f8 42%, #eef4f4 100%);
}

body.page-product .pp-section--cases {
  background: var(--pp-surface);
}

body.page-product .pp-section--history {
  background: var(--pp-canvas);
  padding-block: var(--pp-section-y-tight);
}

body.page-product .pp-section--scope {
  background: var(--pp-paper);
}

body.page-product .pp-section--pricing {
  background:
    radial-gradient(ellipse 55% 50% at 12% 15%, rgba(0, 143, 136, 0.07), transparent 55%),
    linear-gradient(180deg, #f7fafa 0%, #ffffff 55%, #f4f7f7 100%);
}

/* ═══════════════════════════════════════
   1. HERO
═══════════════════════════════════════ */
body.page-product .pp-hero {
  background:
    radial-gradient(ellipse 55% 50% at 78% 35%, rgba(0, 143, 136, 0.14), transparent 62%),
    radial-gradient(ellipse 40% 35% at 12% 80%, rgba(0, 120, 112, 0.06), transparent 55%),
    linear-gradient(180deg, #f2f7f7 0%, #fafbfb 55%, #ffffff 100%);
  overflow: hidden;
}

body.page-product .pp-hero-glow {
  position: absolute;
  inset: 8% 5% auto auto;
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--pp-teal-glow), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.85;
}

body.page-product .pp-hero-orbit {
  position: absolute;
  right: -8%;
  top: 12%;
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  border-radius: 50%;
  border: 1px solid rgba(0, 143, 136, 0.12);
  pointer-events: none;
}

body.page-product .pp-hero-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 143, 136, 0.1);
}

body.page-product .pp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

body.page-product .pp-hero-logo {
  margin-bottom: 1.1rem;
}

body.page-product .pp-hero-logo img {
  display: block;
  width: min(100%, 240px);
  height: auto;
}

body.page-product .pp-shot--hero a {
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  box-shadow: var(--pp-shadow-shot);
}

body.page-product .pp-shot--hero a:hover,
body.page-product .pp-shot--hero a:focus-visible {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) translateY(-2px);
}

/* ═══════════════════════════════════════
   2. PROBLEM — editorial 2×2 + context shot
═══════════════════════════════════════ */
body.page-product .pp-problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4.5vw, 3.75rem);
  align-items: start;
}

body.page-product .pp-problem-layout .pp-editorial-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

body.page-product .pp-problem-layout .pp-h2 {
  max-width: 16ch;
}

body.page-product .pp-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--pp-border);
}

body.page-product .pp-problem-item {
  padding: clamp(1.35rem, 2.6vw, 1.85rem) clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--pp-border);
}

body.page-product .pp-problem-item:nth-child(odd) {
  border-right: 1px solid var(--pp-border);
  padding-left: 0;
}

body.page-product .pp-problem-item:nth-child(even) {
  padding-right: 0;
}

body.page-product .pp-problem-num {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pp-brand);
}

body.page-product .pp-problem-item h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
}

body.page-product .pp-problem-item p {
  margin: 0;
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--pp-muted);
}

body.page-product .pp-context-shot {
  --pp-cut: polygon(0 0, 100% 0, 100% 78%, 72% 100%, 0 100%);
  margin: 0;
  position: sticky;
  top: 5.5rem;
  /* Slight breakout so the cut shape feels part of the page rhythm */
  margin-right: clamp(-0.35rem, -1.2vw, 0);
  padding-left: 0.85rem;
  padding-bottom: 0.55rem;
}

body.page-product .pp-context-shot__stage {
  position: relative;
  isolation: isolate;
}

body.page-product .pp-context-shot__glow {
  position: absolute;
  z-index: 0;
  inset: 8% -12% -18% 4%;
  border-radius: 40% 50% 45% 55%;
  background:
    radial-gradient(ellipse at 55% 40%, rgba(0, 143, 136, 0.28), transparent 62%),
    radial-gradient(ellipse at 30% 80%, rgba(110, 207, 200, 0.14), transparent 55%);
  filter: blur(18px);
  pointer-events: none;
}

/* Offset teal accent plate — same diagonal cut, sits behind the photo */
body.page-product .pp-context-shot__accent {
  position: absolute;
  z-index: 1;
  inset: 0.95rem auto -0.55rem -0.85rem;
  width: calc(100% - 0.35rem);
  clip-path: var(--pp-cut);
  background:
    linear-gradient(145deg, rgba(0, 143, 136, 0.72) 0%, rgba(0, 143, 136, 0.18) 55%, rgba(12, 26, 28, 0.35) 100%);
  opacity: 0.9;
  pointer-events: none;
}

body.page-product .pp-context-shot__frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0c1a1c;
  clip-path: var(--pp-cut);
  box-shadow:
    0 18px 40px rgba(11, 22, 24, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.04) inset;
}

body.page-product .pp-context-shot__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 48%, rgba(11, 22, 24, 0.5) 100%),
    linear-gradient(135deg, rgba(0, 143, 136, 0.14), transparent 52%);
  pointer-events: none;
}

/* Soft edge highlight along the diagonal cut */
body.page-product .pp-context-shot__frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: 0;
  width: 42%;
  height: 36%;
  background: linear-gradient(
    215deg,
    transparent 42%,
    rgba(110, 207, 200, 0.35) 58%,
    transparent 72%
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

body.page-product .pp-context-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.03);
}

body.page-product .pp-context-shot figcaption {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  max-width: 26rem;
  padding-left: 0.15rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--pp-soft-muted);
}

/* ═══════════════════════════════════════
   3. ECO — dark shared environment
═══════════════════════════════════════ */
body.page-product .pp-section--dark {
  background: var(--pp-brand-panel);
  color: #fff;
  overflow: hidden;
}

body.page-product .pp-eco-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 50% 40%, rgba(0, 143, 136, 0.22), transparent 65%),
    radial-gradient(ellipse 30% 30% at 15% 80%, rgba(110, 207, 200, 0.08), transparent 50%);
  pointer-events: none;
}

body.page-product .pp-section--eco .pp-h2 {
  max-width: 16ch;
}

body.page-product .pp-eco {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: center;
}

body.page-product .pp-eco-party {
  padding: 1.35rem 1.25rem;
  border-radius: var(--pp-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

body.page-product .pp-eco-party h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

body.page-product .pp-eco-party p {
  margin: 0 auto;
  max-width: 18em;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

body.page-product .pp-eco-core {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--pp-radius);
  text-align: center;
  background: linear-gradient(180deg, rgba(110, 207, 200, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(110, 207, 200, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 40px rgba(0, 150, 140, 0.16);
}

body.page-product .pp-eco-core::before,
body.page-product .pp-eco-core::after {
  content: "";
  position: absolute;
  top: 42%;
  width: 1.1rem;
  height: 1.5px;
  pointer-events: none;
}

body.page-product .pp-eco-core::before {
  right: 100%;
  margin-right: 0.35rem;
  background: linear-gradient(90deg, transparent, rgba(110, 207, 200, 0.75));
}

body.page-product .pp-eco-core::after {
  left: 100%;
  margin-left: 0.35rem;
  background: linear-gradient(90deg, rgba(110, 207, 200, 0.75), transparent);
}

body.page-product .pp-eco-core-label {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ecfc8;
}

body.page-product .pp-eco-core h3 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

body.page-product .pp-eco-domains {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

body.page-product .pp-eco-domains li {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

body.page-product .pp-eco-extras {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  padding-top: 0.85rem;
  position: relative;
}

body.page-product .pp-eco-extras::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 0.7rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(110, 207, 200, 0.55), transparent);
}

body.page-product .pp-eco-extras span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 207, 200, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

/* ═══════════════════════════════════════
   4. DOMAINS — ruled editorial grid
═══════════════════════════════════════ */
body.page-product .pp-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--pp-border);
}

body.page-product .pp-domain {
  padding: clamp(1.35rem, 2.8vw, 1.9rem) clamp(1rem, 2.2vw, 1.6rem);
  border-bottom: 1px solid var(--pp-border);
}

body.page-product .pp-domain:nth-child(odd) {
  border-right: 1px solid var(--pp-border);
  padding-left: 0;
}

body.page-product .pp-domain:nth-child(even) {
  padding-right: 0;
}

body.page-product .pp-domain--wide {
  background: linear-gradient(270deg, rgba(0, 143, 136, 0.04), transparent 70%);
}

body.page-product .pp-domain h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
}

body.page-product .pp-domain p {
  margin: 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--pp-muted);
}

/* ═══════════════════════════════════════
   5. KOKONAISKATSAUS — featured product
═══════════════════════════════════════ */
body.page-product .pp-portfolio {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  grid-template-areas:
    "intro shot"
    "details shot";
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

body.page-product .pp-portfolio-intro {
  grid-area: intro;
}

body.page-product .pp-portfolio-details {
  grid-area: details;
}

body.page-product .pp-shot--featured {
  grid-area: shot;
  position: sticky;
  top: 5.5rem;
}

body.page-product .pp-portfolio .pp-h2 {
  max-width: 14ch;
}

body.page-product .pp-portfolio-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 0.35rem;
}

body.page-product .pp-portfolio-points h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--pp-ink);
}

body.page-product .pp-portfolio-points p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--pp-muted);
  max-width: 34rem;
}

body.page-product .pp-shot--featured a {
  box-shadow: 0 22px 60px rgba(11, 22, 24, 0.16);
}

/* ═══════════════════════════════════════
   6. CASES — asymmetric splits
═══════════════════════════════════════ */
body.page-product .pp-case {
  padding-block: clamp(2.25rem, 4.5vw, 3.75rem);
  border-bottom: 1px solid var(--pp-border);
}

body.page-product .pp-case:first-child {
  padding-top: 0;
}

body.page-product .pp-case:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

body.page-product .pp-case--split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

body.page-product .pp-case--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
}

body.page-product .pp-case--reverse .pp-case-copy {
  order: 2;
}

body.page-product .pp-case--reverse .pp-shot {
  order: 1;
}

body.page-product .pp-case .pp-h2 {
  max-width: 16ch;
}

body.page-product .pp-process {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1.15rem;
}

body.page-product .pp-process li {
  position: relative;
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--pp-brand-deep);
  padding: 0.35rem 0.65rem;
  background: rgba(0, 143, 136, 0.08);
  border-radius: 4px;
}

body.page-product .pp-process li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pp-brand);
  font-weight: 500;
  opacity: 0.85;
}

body.page-product .pp-aside {
  margin-top: 1.35rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--pp-border);
}

body.page-product .pp-aside strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  color: var(--pp-ink);
}

body.page-product .pp-aside p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--pp-muted);
  max-width: 34rem;
}

body.page-product .pp-ruled-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  border-top: 1px solid var(--pp-border);
}

body.page-product .pp-ruled-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--pp-border);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--pp-muted);
}

body.page-product .pp-ruled-list strong {
  color: var(--pp-ink);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   7. HISTORY
═══════════════════════════════════════ */
body.page-product .pp-history {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

body.page-product .pp-history-concepts {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--pp-border);
}

body.page-product .pp-history-concepts h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pp-ink);
}

body.page-product .pp-history-concepts p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--pp-muted);
  max-width: 34rem;
}

/* ═══════════════════════════════════════
   8. GATEWAY
═══════════════════════════════════════ */
body.page-product .pp-section--gateway {
  background:
    radial-gradient(ellipse 50% 60% at 88% 40%, rgba(0, 143, 136, 0.08), transparent 60%),
    var(--pp-mist);
}

body.page-product .pp-gateway-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

body.page-product .pp-gateway-copy .pp-h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
}

body.page-product .pp-gateway-copy p {
  margin: 0 0 0.85rem;
  max-width: 38rem;
  font-size: var(--pp-body-size);
  line-height: var(--pp-body-lh);
  color: var(--pp-muted);
}

body.page-product .pp-gateway-copy p:last-of-type {
  margin-bottom: 0;
}

body.page-product .pp-gateway-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.35rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--pp-border);
}

body.page-product .pp-gateway-flow > span:not(.pp-gateway-arrow) {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--pp-ink);
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--pp-border-strong);
  border-radius: var(--pp-radius-sm);
  background: var(--pp-surface);
}

body.page-product .pp-gateway-arrow {
  color: var(--pp-brand);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 0 0.2rem;
}

body.page-product .pp-gateway-visual {
  margin: 0;
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 16px;
  background:
    linear-gradient(165deg, #0f2423 0%, #122c2a 48%, #0c1a1c 100%);
  border: 1px solid rgba(110, 207, 200, 0.18);
  overflow: hidden;
}

body.page-product .pp-gateway-visual__glow {
  position: absolute;
  inset: -20% 10% auto auto;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 143, 136, 0.35), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

body.page-product .pp-gateway-visual__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04), transparent 70%),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 5 / 4;
}

body.page-product .pp-gateway-visual__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

body.page-product .pp-gateway-labels {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

body.page-product .pp-gateway-labels li {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 207, 200, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

body.page-product .pp-gateway-visual figcaption {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════════════
   9. SCOPE / RAJAUS
═══════════════════════════════════════ */
body.page-product .pp-scope {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--pp-surface);
  box-shadow: 0 1px 2px rgba(12, 40, 40, 0.03);
}

body.page-product .pp-scope-col {
  padding: clamp(1.5rem, 2.8vw, 2rem) clamp(1.35rem, 2.5vw, 1.85rem);
  min-height: 100%;
}

body.page-product .pp-scope-col--yes {
  background: linear-gradient(180deg, rgba(0, 143, 136, 0.07), rgba(0, 143, 136, 0.03));
  border-right: 1px solid var(--pp-border);
}

body.page-product .pp-scope-col--no {
  background: #f6f7f7;
}

body.page-product .pp-scope-col h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--pp-border);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--pp-ink);
}

body.page-product .pp-scope-mark {
  display: inline-flex;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
}

body.page-product .pp-scope-mark--yes {
  background: var(--pp-brand);
  box-shadow: 0 0 0 3px rgba(0, 143, 136, 0.18);
}

body.page-product .pp-scope-mark--no {
  background: #9aa4a6;
  box-shadow: 0 0 0 3px rgba(154, 164, 166, 0.18);
}

body.page-product .pp-scope-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.page-product .pp-scope-col li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.25rem;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--pp-muted);
  border-bottom: 1px solid rgba(11, 22, 24, 0.06);
}

body.page-product .pp-scope-col li:last-child {
  border-bottom: 0;
}

body.page-product .pp-scope-col--yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pp-brand);
}

body.page-product .pp-scope-col--no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.55rem;
  height: 1.5px;
  background: #9aa4a6;
}

body.page-product .pp-scope-note {
  margin-top: 1.35rem;
  padding: 1.05rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 143, 136, 0.16);
  background: rgba(0, 143, 136, 0.05);
}

body.page-product .pp-scope-note p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--pp-muted);
}

body.page-product .pp-scope-note a {
  color: var(--pp-brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 143, 136, 0.35);
}

body.page-product .pp-scope-note a:hover,
body.page-product .pp-scope-note a:focus-visible {
  border-bottom-color: var(--pp-brand);
  outline: none;
}

/* ═══════════════════════════════════════
   10. PRICING
═══════════════════════════════════════ */
body.page-product .pp-section--pricing .pp-h2 {
  max-width: 18ch;
}

body.page-product .pp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: stretch;
  max-width: 960px;
  margin-inline: auto;
}

body.page-product .pp-price {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.55rem 1.35rem 1.4rem;
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  background: var(--pp-surface);
  box-shadow: var(--pp-shadow-soft);
}

body.page-product .pp-price--featured {
  border-color: rgba(0, 143, 136, 0.45);
  background:
    linear-gradient(180deg, rgba(0, 143, 136, 0.06), rgba(255, 255, 255, 0.95) 42%),
    var(--pp-surface);
  box-shadow: 0 14px 36px rgba(0, 143, 136, 0.12);
}

body.page-product .pp-price-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.2rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--pp-brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

body.page-product .pp-price-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
}

body.page-product .pp-price-capacity {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--pp-soft-muted);
  min-height: 2.6em;
}

body.page-product .pp-price-value {
  margin: 1.15rem 0 0;
  font-size: clamp(1.85rem, 2.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--pp-ink);
}

body.page-product .pp-price-value span {
  margin-left: 0.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--pp-soft-muted);
}

body.page-product .pp-price-value--text {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  min-height: 2.35rem;
  display: flex;
  align-items: flex-end;
}

body.page-product .pp-price-tax {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--pp-soft-muted);
}

body.page-product .pp-price-btn {
  margin-top: auto;
  padding-top: 1.25rem;
}

body.page-product .pp-price-btn .tj-primary-btn {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  box-shadow: none;
}

body.page-product .pp-price-btn .tj-primary-btn.btn-border {
  background: transparent;
  border: 1px solid var(--pp-border-strong);
  box-shadow: none;
}

body.page-product .pp-price-btn .tj-primary-btn.btn-border .btn-text span,
body.page-product .pp-price-btn .tj-primary-btn.btn-border .btn-icon {
  color: var(--pp-ink);
}

body.page-product .pp-price-btn .tj-primary-btn.btn-border:hover,
body.page-product .pp-price-btn .tj-primary-btn.btn-border:focus-visible {
  border-color: var(--pp-brand);
  background: rgba(0, 143, 136, 0.05);
  outline: none;
}

body.page-product .pp-price-btn .tj-primary-btn.btn-border:hover .btn-text span,
body.page-product .pp-price-btn .tj-primary-btn.btn-border:hover .btn-icon,
body.page-product .pp-price-btn .tj-primary-btn.btn-border:focus-visible .btn-text span,
body.page-product .pp-price-btn .tj-primary-btn.btn-border:focus-visible .btn-icon {
  color: var(--pp-brand);
}

body.page-product .pp-price--featured .pp-price-btn .tj-primary-btn {
  box-shadow: 0 8px 22px rgba(0, 143, 136, 0.22);
}

body.page-product .pp-pricing-notes {
  margin-top: 1.75rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--pp-radius);
  border: 1px solid rgba(0, 143, 136, 0.16);
  background: rgba(0, 143, 136, 0.05);
}

body.page-product .pp-pricing-notes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

body.page-product .pp-pricing-notes li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--pp-muted);
}

body.page-product .pp-pricing-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pp-brand);
}

/* ═══════════════════════════════════════
   11. CTA
═══════════════════════════════════════ */
body.page-product .pp-cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 18% 20%, rgba(0, 143, 136, 0.28), transparent 60%),
    radial-gradient(ellipse 45% 55% at 88% 80%, rgba(110, 207, 200, 0.12), transparent 55%),
    linear-gradient(165deg, #0f3835 0%, #124844 48%, #0d2f2d 100%);
  padding-block: clamp(3.75rem, 7.5vw, 6.5rem);
}

body.page-product .pp-cta-glow {
  position: absolute;
  inset: 15% 30% auto 30%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 207, 200, 0.16), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

body.page-product .pp-cta {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

body.page-product .pp-cta .pp-h2 {
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(1.7rem, 3vw, 2.45rem) !important;
}

body.page-product .pp-cta > p {
  margin: 1.15rem auto 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

body.page-product .pp-cta-actions {
  justify-content: center;
  margin-top: 2rem;
  gap: 0.9rem 1rem;
}

body.page-product .pp-cta-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.65rem 0 0;
  padding: 0;
}

body.page-product .pp-cta-trust li {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(244, 251, 250, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* ── Nav scale ── */
@media (min-width: 992px) {
  body.page-product .header-area .main-menu ul li a {
    font-size: 15px;
  }
}

/* WOW safety: never leave content permanently invisible */
body.page-product .wow {
  visibility: visible;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  body.page-product .pp-shot a,
  body.page-product .pp-shot--hero a {
    transition: none;
  }

  body.page-product .pp-shot a:hover,
  body.page-product .pp-shot a:focus-visible,
  body.page-product .pp-shot--hero a:hover,
  body.page-product .pp-shot--hero a:focus-visible {
    transform: none;
  }

  body.page-product .wow {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1199.98px) {
  body.page-product .pp-portfolio {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  body.page-product .pp-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body.page-product {
    --pp-section-y: clamp(3.25rem, 8vw, 5.5rem);
    --pp-section-y-tight: clamp(2.75rem, 7vw, 4.25rem);
  }

  body.page-product .pp-container,
  body.page-product .pp-container--narrow {
    width: min(100% - 2rem, var(--pp-page-max));
  }

  body.page-product .pp-h1,
  body.page-product .pp-h2 {
    max-width: none;
  }

  body.page-product .pp-hero-grid,
  body.page-product .pp-history,
  body.page-product .pp-case--split,
  body.page-product .pp-case--reverse,
  body.page-product .pp-problem-layout,
  body.page-product .pp-gateway-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  body.page-product .pp-context-shot {
    --pp-cut: polygon(0 0, 100% 0, 100% 88%, 86% 100%, 0 100%);
    position: static;
    max-width: 28rem;
    margin-right: 0;
    padding-left: 0.55rem;
    padding-bottom: 0.35rem;
  }

  body.page-product .pp-context-shot__accent {
    inset: 0.65rem auto -0.4rem -0.55rem;
    width: calc(100% - 0.2rem);
  }

  body.page-product .pp-context-shot__frame {
    aspect-ratio: 16 / 11;
  }

  body.page-product .pp-context-shot img {
    object-position: center 35%;
    transform: none;
  }

  body.page-product .pp-portfolio {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "shot"
      "details";
    gap: 1.5rem;
  }

  body.page-product .pp-shot--featured {
    position: static;
  }

  body.page-product .pp-case--reverse .pp-case-copy,
  body.page-product .pp-case--reverse .pp-shot {
    order: unset;
  }

  body.page-product .pp-case--split .pp-case-copy {
    order: 1;
  }

  body.page-product .pp-case--split .pp-shot {
    order: 2;
  }

  body.page-product .pp-shot--hero a {
    transform: none;
  }

  body.page-product .pp-shot--hero a:hover,
  body.page-product .pp-shot--hero a:focus-visible {
    transform: translateY(-2px);
  }

  body.page-product .pp-eco {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  body.page-product .pp-eco-core::before,
  body.page-product .pp-eco-core::after {
    display: none;
  }

  body.page-product .pp-eco-extras {
    grid-column: 1;
  }

  body.page-product .pp-eco-party {
    min-height: 0;
  }

  body.page-product .pp-scope {
    grid-template-columns: 1fr;
  }

  body.page-product .pp-scope-col--yes {
    border-right: 0;
    border-bottom: 1px solid var(--pp-border);
  }

  body.page-product .pp-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  body.page-product .pp-hero-actions,
  body.page-product .pp-cta-actions {
    width: 100%;
  }

  body.page-product .pp-btn-primary.tj-primary-btn,
  body.page-product .pp-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  body.page-product .pp-hero-orbit {
    opacity: 0.45;
  }

  body.page-product .pp-shot a::after {
    opacity: 0.9;
    transform: none;
    font-size: 0.68rem;
  }
}

@media (max-width: 767.98px) {
  body.page-product {
    --pp-body-size: 1.05rem;
    --pp-section-y: clamp(3rem, 10vw, 4.25rem);
  }

  body.page-product .pp-problem-grid,
  body.page-product .pp-domain-grid {
    grid-template-columns: 1fr;
  }

  body.page-product .pp-pricing-grid {
    grid-template-columns: 1fr;
  }

  body.page-product .pp-price-capacity {
    min-height: 0;
  }

  body.page-product .pp-price-value--text {
    min-height: 0;
  }

  body.page-product .pp-problem-item,
  body.page-product .pp-problem-item:nth-child(odd),
  body.page-product .pp-problem-item:nth-child(even),
  body.page-product .pp-domain,
  body.page-product .pp-domain:nth-child(odd),
  body.page-product .pp-domain:nth-child(even) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  body.page-product .pp-context-shot {
    --pp-cut: polygon(0 0, 100% 0, 100% 92%, 90% 100%, 0 100%);
    max-width: none;
    padding-left: 0.4rem;
  }

  body.page-product .pp-context-shot__glow {
    filter: blur(14px);
    opacity: 0.85;
  }

  body.page-product .pp-context-shot__accent {
    inset: 0.5rem auto -0.3rem -0.4rem;
  }

  body.page-product .pp-process li:not(:last-child)::after {
    margin-left: 0.4rem;
  }

  body.page-product .pp-cta-trust {
    justify-content: flex-start;
  }

  body.page-product .pp-cta .pp-h2 {
    max-width: none;
  }

  body.page-product .pp-gateway-flow {
    gap: 0.45rem;
  }
}

@media (max-width: 389.98px) {
  body.page-product .pp-container,
  body.page-product .pp-container--narrow {
    width: min(100% - 1.5rem, var(--pp-page-max));
  }
}

/* Screenshot overlay (VenoBox) polish */
.vbox-overlay {
  backdrop-filter: blur(2px);
}

.vbox-container img {
  border-radius: 6px;
}

/* Contact: keep form/integration intact — light rhythm only */
body.page-product #yhteydenotto {
  scroll-margin-top: 5rem;
}


/* Typographic product wordmark when logo asset is missing */
body.page-product .pp-hero-wordmark {
  margin: 0 0 1.1rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--pp-ink);
}
body.page-product .pp-hero-wordmark span {
  color: var(--pp-brand);
}

/* Stats strip inside problem / eco sections */
body.page-product .pp-proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
body.page-product .pp-proof-stats--light {
  border-top-color: var(--pp-border);
}
body.page-product .pp-proof-stat strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
}
body.page-product .pp-proof-stats--light .pp-proof-stat strong {
  color: var(--pp-ink);
}
body.page-product .pp-proof-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
}
body.page-product .pp-proof-stats--light .pp-proof-stat span {
  color: var(--pp-soft-muted);
}
@media (max-width: 767.98px) {
  body.page-product .pp-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Dual pricing (Flow monthly + project) */
body.page-product .pp-pricing-block + .pp-pricing-block {
  margin-top: 3rem;
}
body.page-product .pp-pricing-block-title {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Process steps list for custom */
body.page-product .pp-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
body.page-product .pp-steps li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--pp-border);
}
body.page-product .pp-steps li:last-child {
  border-bottom: 1px solid var(--pp-border);
}
body.page-product .pp-steps-num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--pp-brand);
  padding-top: 0.2rem;
}


/* ═══════════════════════════════════════
   SIGNATURE: Work — project data rail
═══════════════════════════════════════ */
body.page-work .pp-section--pipeline {
  background:
    radial-gradient(ellipse 55% 70% at 8% 0%, rgba(0, 143, 136, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 100%, rgba(110, 207, 200, 0.14), transparent 50%),
    linear-gradient(165deg, #081416 0%, #0f2a28 42%, #0a1c1a 100%);
  color: #fff;
  overflow: hidden;
}
body.page-work .pp-section--pipeline .pp-eyebrow { color: #6ecfc8; }
body.page-work .pp-section--pipeline .pp-h2 {
  color: #fff;
  max-width: 18ch;
}
body.page-work .pp-section--pipeline .pp-lede {
  color: rgba(255, 255, 255, 0.72);
  max-width: 40rem;
}

body.page-work .pp-rail {
  margin-top: 2.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
body.page-work .pp-rail-chrome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
body.page-work .pp-rail-chrome-id {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #6ecfc8;
}
body.page-work .pp-rail-chrome-name {
  flex: 1 1 auto;
  min-width: 10rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
body.page-work .pp-rail-chrome-bar {
  position: relative;
  width: min(12rem, 40vw);
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
body.page-work .pp-rail-chrome-bar > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #008f88, #9fe3dd);
}
body.page-work .pp-rail-chrome-pct {
  font-size: 0.78rem;
  font-weight: 600;
  color: #9fe3dd;
}

body.page-work .pp-rail-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0 1rem 1.5rem;
  list-style: none;
}
body.page-work .pp-rail-track::before {
  content: "";
  position: absolute;
  top: 2.05rem;
  left: 6%;
  right: 6%;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(110, 207, 200, 0.15),
      rgba(0, 143, 136, 0.95) 20%,
      rgba(159, 227, 221, 0.95) 50%,
      rgba(0, 143, 136, 0.95) 80%,
      rgba(110, 207, 200, 0.15));
  box-shadow: 0 0 24px rgba(0, 143, 136, 0.45);
  z-index: 0;
}
body.page-work .pp-rail-station {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0.65rem 0;
}
body.page-work .pp-rail-dock {
  order: 2;
  width: 2px;
  height: 1.1rem;
  margin: 0.15rem 0 0.85rem;
  background: linear-gradient(180deg, #9fe3dd, rgba(159, 227, 221, 0.15));
}
body.page-work .pp-rail-num {
  order: 1;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #081416;
  background: linear-gradient(145deg, #c9f3ee, #008f88);
  box-shadow:
    0 0 0 5px rgba(8, 20, 22, 0.9),
    0 0 0 7px rgba(110, 207, 200, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.35);
}
body.page-work .pp-rail-station h3,
body.page-work .pp-rail-station p,
body.page-work .pp-rail-tag {
  order: 3;
}
body.page-work .pp-rail-station h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
body.page-work .pp-rail-station p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  max-width: 18ch;
}
body.page-work .pp-rail-tag {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fe3dd;
  border: 1px solid rgba(110, 207, 200, 0.28);
  background: rgba(0, 143, 136, 0.14);
}
body.page-work .pp-rail-stream {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  padding: 0.95rem 1.1rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
body.page-work .pp-rail-stream > span:not(.pp-rail-arrow) {
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #dff7f4;
  background: rgba(110, 207, 200, 0.1);
  border: 1px solid rgba(110, 207, 200, 0.18);
}
body.page-work .pp-rail-arrow {
  color: rgba(159, 227, 221, 0.55);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  body.page-work .pp-rail-track {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1.1rem 1.15rem 0.65rem 1.2rem;
  }
  body.page-work .pp-rail-track::before {
    top: 1.4rem;
    bottom: 1.4rem;
    left: 2.35rem;
    right: auto;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg,
      rgba(110, 207, 200, 0.2),
      rgba(0, 143, 136, 0.95),
      rgba(110, 207, 200, 0.2));
  }
  body.page-work .pp-rail-station {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 1rem;
    align-items: start;
    text-align: left;
    padding: 0.85rem 0 0.85rem 0.55rem;
  }
  body.page-work .pp-rail-dock { display: none; }
  body.page-work .pp-rail-num {
    grid-row: 1 / span 3;
    align-self: center;
    width: 2.35rem;
    height: 2.35rem;
  }
  body.page-work .pp-rail-station h3,
  body.page-work .pp-rail-station p,
  body.page-work .pp-rail-tag {
    order: unset;
    max-width: none;
  }
  body.page-work .pp-rail-station p { max-width: 36ch; }
}
@media (prefers-reduced-motion: reduce) {
  body.page-maint .pp-kanban-live { animation: none; }
}

/* ═══════════════════════════════════════
   SIGNATURE: Maint — live CMMS kanban
═══════════════════════════════════════ */
body.page-maint .pp-section--board {
  background:
    linear-gradient(180deg, #e6eeec 0%, #f2f6f5 35%, #fafbfb 100%);
}
body.page-maint .pp-kanban {
  margin-top: 2.25rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 22, 24, 0.12);
  background:
    linear-gradient(180deg, #f7faf9 0%, #eef3f2 100%);
  box-shadow:
    0 1px 2px rgba(12, 40, 40, 0.04),
    0 22px 48px rgba(12, 40, 40, 0.1);
  overflow: hidden;
}
body.page-maint .pp-kanban-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid rgba(11, 22, 24, 0.1);
  background: #fff;
}
body.page-maint .pp-kanban-live {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #008f88;
  box-shadow: 0 0 0 4px rgba(0, 143, 136, 0.18);
  animation: pp-kanban-pulse 1.8s ease-in-out infinite;
}
@keyframes pp-kanban-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 143, 136, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(0, 143, 136, 0.08); }
}
body.page-maint .pp-kanban-bar strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pp-ink);
}
body.page-maint .pp-kanban-bar > span:last-child {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pp-soft-muted);
}
body.page-maint .pp-kanban-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 22rem;
}
body.page-maint .pp-kanban-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.9rem 0.75rem 1.1rem;
  border-right: 1px solid rgba(11, 22, 24, 0.08);
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(11, 22, 24, 0.015) 11px,
      rgba(11, 22, 24, 0.015) 12px
    );
}
body.page-maint .pp-kanban-col:last-child { border-right: 0; }
body.page-maint .pp-kanban-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.15rem 0.15rem;
}
body.page-maint .pp-kanban-col-head > span:first-child {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
}
body.page-maint .pp-kanban-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  background: var(--col-accent, #008f88);
}
body.page-maint .pp-kanban-col:nth-child(1) { --col-accent: #5b6b6e; }
body.page-maint .pp-kanban-col:nth-child(2) { --col-accent: #c9852d; }
body.page-maint .pp-kanban-col:nth-child(3) { --col-accent: #008f88; }
body.page-maint .pp-kanban-col:nth-child(4) { --col-accent: #2f6b5a; }

body.page-maint .pp-wo {
  position: relative;
  display: grid;
  grid-template-columns: 4px 1fr;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11, 22, 24, 0.1);
  box-shadow: 0 8px 20px rgba(12, 40, 40, 0.06);
  overflow: hidden;
}
body.page-maint .pp-wo-pri { background: var(--col-accent, #008f88); }
body.page-maint .pp-wo-body {
  padding: 0.85rem 0.85rem 0.9rem;
}
body.page-maint .pp-wo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
body.page-maint .pp-wo-meta > span:first-child {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--pp-soft-muted);
}
body.page-maint .pp-wo-avatar {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--col-accent, #008f88);
}
body.page-maint .pp-wo h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
  line-height: 1.25;
}
body.page-maint .pp-wo p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--pp-muted);
}
body.page-maint .pp-wo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.75rem;
}
body.page-maint .pp-wo-tags span {
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--pp-ink-soft);
  background: var(--pp-mist);
  border: 1px solid var(--pp-border);
}
body.page-maint .pp-wo--ghost {
  opacity: 0.55;
  box-shadow: none;
  transform: scale(0.98);
  transform-origin: top center;
}
body.page-maint .pp-wo--ghost h3 {
  font-size: 0.88rem;
}
body.page-maint .pp-wo--ghost p,
body.page-maint .pp-wo--ghost .pp-wo-tags {
  display: none;
}

@media (max-width: 991.98px) {
  body.page-maint .pp-kanban-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }
  body.page-maint .pp-kanban-col:nth-child(2) { border-right: 0; }
  body.page-maint .pp-kanban-col:nth-child(1),
  body.page-maint .pp-kanban-col:nth-child(2) {
    border-bottom: 1px solid rgba(11, 22, 24, 0.08);
  }
}
@media (max-width: 575.98px) {
  body.page-maint .pp-kanban-cols {
    grid-template-columns: 1fr;
  }
  body.page-maint .pp-kanban-col {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 22, 24, 0.08);
  }
  body.page-maint .pp-kanban-col:last-child { border-bottom: 0; }
  body.page-maint .pp-wo--ghost { display: none; }
}

/* ═══════════════════════════════════════
   SIGNATURE: Flow — delivery dossier
═══════════════════════════════════════ */
body.page-flow .pp-section--spine {
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(0, 143, 136, 0.09), transparent 55%),
    linear-gradient(180deg, #f7faf9 0%, #eef3f2 100%);
}
body.page-flow .pp-dossier {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  margin-top: 2.25rem;
}
body.page-flow .pp-dossier-phases {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow-phase;
}
body.page-flow .pp-dossier-phase {
  counter-increment: flow-phase;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
body.page-flow .pp-dossier-phase.is-active {
  background: #fff;
  border-color: rgba(11, 22, 24, 0.1);
  box-shadow: 0 12px 28px rgba(12, 40, 40, 0.07);
}
body.page-flow .pp-dossier-stamp {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0c3d3a;
  background: rgba(0, 143, 136, 0.12);
  border: 1px solid rgba(0, 143, 136, 0.22);
}
body.page-flow .pp-dossier-stamp::before {
  content: counter(flow-phase, decimal-leading-zero);
}
body.page-flow .pp-dossier-phase.is-active .pp-dossier-stamp {
  color: #fff;
  background: linear-gradient(145deg, #1aa39b, #008f88);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(0, 143, 136, 0.28);
}
body.page-flow .pp-dossier-phase.is-done .pp-dossier-stamp {
  color: #fff;
  background: #0c3d3a;
  border-color: transparent;
}
body.page-flow .pp-dossier-phase h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
body.page-flow .pp-dossier-phase p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--pp-muted);
}

body.page-flow .pp-dossier-pack {
  position: relative;
  min-height: 22rem;
  padding: 1.5rem 0 0.5rem;
  isolation: isolate;
}
body.page-flow .pp-dossier-sheet {
  position: absolute;
  left: 8%;
  right: 8%;
  top: calc(0.85rem + (var(--i, 0) * 1.45rem));
  height: 3.6rem;
  padding: 0.85rem 1.15rem;
  border-radius: 8px 8px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #243538;
  background: #fff;
  border: 1px solid rgba(11, 22, 24, 0.12);
  border-bottom: 0;
  box-shadow: 0 -2px 12px rgba(12, 40, 40, 0.05);
  transform: rotate(calc((var(--i, 0) - 2) * 0.55deg));
  z-index: calc(var(--i, 0) + 1);
  pointer-events: none;
}
body.page-flow .pp-dossier-sheet::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1.05rem;
  width: 2.5rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(0, 143, 136, 0.25);
}
body.page-flow .pp-dossier-cover {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  z-index: 20;
  padding: 1.55rem 1.4rem 1.45rem;
  border-radius: 14px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(0, 143, 136, 0.22), transparent 55%),
    linear-gradient(160deg, #0c1a1c 0%, #123532 100%);
  color: #fff;
  box-shadow: 0 22px 48px rgba(11, 22, 24, 0.28);
  isolation: isolate;
}
body.page-flow .pp-dossier-cover-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ecfc8;
}
body.page-flow .pp-dossier-cover h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
body.page-flow .pp-dossier-cover p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28ch;
}

@media (max-width: 991.98px) {
  body.page-flow .pp-dossier {
    grid-template-columns: 1fr;
  }
  body.page-flow .pp-dossier-pack {
    min-height: 17rem;
    margin-top: 0.5rem;
  }
}


/* ── Delivery approaches (Custom) — editorial trio, not eco hub ── */
body.page-product .pp-section--approaches {
  background: var(--pp-canvas);
}
body.page-product .pp-approaches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
body.page-product .pp-approach {
  padding: 1.5rem 1.35rem 1.4rem;
  border-top: 2px solid var(--pp-brand);
  background: var(--pp-surface);
  box-shadow: var(--pp-shadow-soft);
}
body.page-product .pp-approach-num {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pp-brand);
}
body.page-product .pp-approach h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
body.page-product .pp-approach p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--pp-muted);
}
@media (max-width: 991.98px) {
  body.page-product .pp-approaches {
    grid-template-columns: 1fr;
  }
}


/* ── Delivery approaches continuum (Custom) ── */
body.page-custom .pp-section--approaches {
  background:
    radial-gradient(ellipse 50% 55% at 50% 0%, rgba(0, 143, 136, 0.07), transparent 60%),
    var(--pp-canvas);
}

body.page-custom .pp-approaches {
  display: none;
}

body.page-custom .pp-continuum {
  list-style: none;
  margin: clamp(1.75rem, 3.5vw, 2.75rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
}

body.page-custom .pp-continuum::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 2.35rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 143, 136, 0.15),
    rgba(0, 143, 136, 0.45) 50%,
    rgba(0, 143, 136, 0.15)
  );
  pointer-events: none;
}

body.page-custom .pp-continuum__stage {
  position: relative;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

body.page-custom .pp-continuum__visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  min-height: 7.5rem;
}

body.page-custom .pp-continuum__node {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--pp-brand);
  box-shadow: 0 0 0 5px rgba(0, 143, 136, 0.12);
  z-index: 1;
}

body.page-custom .pp-continuum__schema {
  position: relative;
  width: min(100%, 11.5rem);
  height: 5.25rem;
  border-radius: 12px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(232, 243, 242, 0.55));
  border: 1px solid rgba(0, 143, 136, 0.14);
  box-shadow: 0 10px 28px rgba(11, 22, 24, 0.06);
}

body.page-custom .pp-continuum__block {
  position: absolute;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(0, 143, 136, 0.78), rgba(0, 120, 112, 0.55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.page-custom .pp-continuum__schema--base .pp-continuum__block {
  inset: 1.15rem 1.55rem 1.85rem;
}

body.page-custom .pp-continuum__schema--extend .pp-continuum__block {
  left: 1rem;
  top: 1.15rem;
  width: 52%;
  height: 2.15rem;
}

body.page-custom .pp-continuum__mod {
  position: absolute;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 5px;
  background: rgba(0, 143, 136, 0.28);
  border: 1px solid rgba(0, 143, 136, 0.35);
}

body.page-custom .pp-continuum__schema--extend .pp-continuum__mod:nth-child(2) {
  right: 1.15rem;
  top: 1rem;
}

body.page-custom .pp-continuum__schema--extend .pp-continuum__mod:nth-child(3) {
  right: 1.15rem;
  top: 2.85rem;
}

body.page-custom .pp-continuum__schema--extend .pp-continuum__block::after {
  content: "";
  position: absolute;
  right: -1.05rem;
  top: 50%;
  width: 1.05rem;
  height: 1px;
  background: rgba(0, 143, 136, 0.4);
}

body.page-custom .pp-continuum__schema--custom .pp-continuum__block {
  left: 1rem;
  top: 0.95rem;
  width: 42%;
  height: 1.85rem;
}

body.page-custom .pp-continuum__schema--custom .pp-continuum__block--alt {
  left: auto;
  right: 1rem;
  top: 1.35rem;
  width: 38%;
  height: 2.35rem;
  background: linear-gradient(145deg, rgba(12, 40, 40, 0.78), rgba(0, 143, 136, 0.45));
  clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%);
}

body.page-custom .pp-continuum__schema--custom .pp-continuum__block--sm {
  left: 1.35rem;
  top: auto;
  bottom: 1.55rem;
  width: 28%;
  height: 1.1rem;
  background: rgba(0, 143, 136, 0.35);
}

body.page-custom .pp-continuum__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pp-brand-deep);
}

body.page-custom .pp-continuum__num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pp-brand);
}

body.page-custom .pp-continuum__stage h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
  max-width: 16ch;
}

body.page-custom .pp-continuum__stage p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--pp-muted);
  max-width: 28rem;
}

/* Domains compose — flipped (photo left) */
body.page-custom .pp-section--domains {
  background:
    radial-gradient(ellipse 42% 55% at 0% 18%, rgba(0, 143, 136, 0.08), transparent 62%),
    var(--pp-paper);
}

body.page-custom .pp-domains-compose {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "shot head"
    "shot grid";
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

body.page-custom .pp-domains-compose .pp-editorial-head {
  grid-area: head;
  margin-bottom: 0;
}

body.page-custom .pp-domains-compose .pp-h2 {
  max-width: 16ch;
}

body.page-custom .pp-domains-compose .pp-context-shot {
  grid-area: shot;
  margin-top: 0;
  --pp-cut: polygon(0 0, 100% 0, 100% 100%, 28% 100%, 0 78%);
  margin-left: clamp(-0.5rem, -1.5vw, 0);
  margin-right: 0;
  padding-left: 0;
  padding-right: 0.85rem;
  padding-bottom: 0.55rem;
}

body.page-custom .pp-domains-compose .pp-context-shot__accent {
  inset: 0.95rem -0.85rem -0.55rem auto;
  width: calc(100% - 0.35rem);
  left: auto;
  right: -0.85rem;
}

body.page-custom .pp-domains-compose .pp-domain-grid {
  grid-area: grid;
  border-top: 1px solid var(--pp-border);
  align-self: start;
}

body.page-custom .pp-domains-compose .pp-domain {
  padding: clamp(1.05rem, 2vw, 1.35rem) clamp(0.85rem, 1.8vw, 1.25rem);
}

body.page-custom .pp-domains-compose .pp-domain:nth-child(odd) {
  padding-left: 0;
}

body.page-custom .pp-domains-compose .pp-domain:nth-child(even) {
  padding-right: 0;
}

body.page-custom .pp-domains-compose .pp-domain h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

body.page-custom .pp-domains-compose .pp-domain p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 28rem;
}

body.page-custom .pp-domains-compose .pp-context-shot__frame {
  aspect-ratio: 4 / 5;
}

body.page-custom .pp-domains-compose .pp-context-shot img {
  object-position: center 32%;
}

body.page-custom .pp-section--principles {
  background:
    radial-gradient(ellipse 58% 55% at 72% 42%, rgba(0, 143, 136, 0.09), transparent 62%),
    linear-gradient(165deg, #eef5f5 0%, #f7fafa 48%, #f2f7f7 100%);
  overflow: hidden;
}

body.page-custom .pp-principles--anchor {
  display: grid;
  gap: clamp(1.15rem, 2.2vw, 1.55rem);
}

body.page-custom .pp-principles--anchor .pp-principles-intro {
  max-width: min(36rem, 58%);
  margin-bottom: 0.35rem;
}

body.page-custom .pp-principles--anchor .pp-principles-intro .pp-h2 {
  max-width: 16ch;
}

body.page-custom .pp-principles--anchor .pp-principles-intro .pp-lede {
  max-width: 36rem;
  margin-bottom: 0;
}

/* Wide visualization as section anchor */
body.page-custom .pp-principles--anchor .pp-viz {
  margin: 0 clamp(-0.85rem, -2vw, 0) 0 0;
  width: min(100%, 90%);
  max-width: none;
  justify-self: end;
  position: relative;
}

body.page-custom .pp-viz__stage {
  position: relative;
  isolation: isolate;
  padding: clamp(0.7rem, 1.5vw, 1.1rem);
  border-radius: 16px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 243, 242, 0.5) 100%);
  border: 1px solid rgba(0, 143, 136, 0.12);
  box-shadow:
    0 16px 40px rgba(11, 22, 24, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  overflow: hidden;
}

body.page-custom .pp-viz__glow {
  position: absolute;
  z-index: 0;
  inset: -22% -12% 12% 25%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 48%, rgba(0, 143, 136, 0.26), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

body.page-custom .pp-viz__dots {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.26;
  background-image: radial-gradient(rgba(0, 143, 136, 0.24) 0.7px, transparent 0.8px);
  background-size: 13px 13px;
  mask-image: radial-gradient(ellipse 72% 68% at 72% 38%, #000 18%, transparent 78%);
  pointer-events: none;
}

body.page-custom .pp-viz__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 22, 24, 0.05);
}

body.page-custom .pp-viz__frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Typographic principles rail under visualization */
body.page-custom .pp-principles-rail {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--pp-border);
}

body.page-custom .pp-principles-rail li {
  padding: 0 clamp(1rem, 2vw, 1.35rem);
  border-right: 1px solid var(--pp-border);
}

body.page-custom .pp-principles-rail li:first-child {
  padding-left: 0;
}

body.page-custom .pp-principles-rail li:last-child {
  padding-right: 0;
  border-right: 0;
}

body.page-custom .pp-principles-rail__num {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pp-brand);
}

body.page-custom .pp-principles-rail h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--pp-ink);
  max-width: 14ch;
}

body.page-custom .pp-principles-rail p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--pp-muted);
  max-width: 22rem;
}

/* Remove old wrap leftovers if present */
body.page-custom .pp-principles-side,
body.page-custom .pp-principles-band,
body.page-custom .pp-principles-grid {
  display: none;
}

/* Case showcase — tabs desktop / accordion mobile */
body.page-custom .pp-section--cases {
  background: var(--pp-surface);
}

body.page-custom .pp-case-showcase {
  margin-top: 0.35rem;
}

body.page-custom .pp-case-showcase__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: 0.4rem;
  border-radius: 14px;
  background: rgba(0, 143, 136, 0.05);
  border: 1px solid rgba(0, 143, 136, 0.1);
}

body.page-custom .pp-case-showcase__tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--pp-muted);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

body.page-custom .pp-case-showcase__tab:hover,
body.page-custom .pp-case-showcase__tab:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  color: var(--pp-ink);
  outline: none;
}

body.page-custom .pp-case-showcase__tab.is-active {
  background: var(--pp-surface);
  color: var(--pp-ink);
  box-shadow: 0 8px 22px rgba(11, 22, 24, 0.08);
}

body.page-custom .pp-case-showcase__tab-num {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--pp-brand);
}

body.page-custom .pp-case-showcase__tab-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

body.page-custom .pp-case-showcase__acc-trigger {
  display: none;
}

body.page-custom .pp-case-showcase__panels {
  position: relative;
}

body.page-custom .pp-case-showcase__panel {
  display: none;
}

body.page-custom .pp-case-showcase__panel.is-active {
  display: block;
}

body.page-custom .pp-case-showcase__body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.35rem, 3vw, 2.5rem);
  align-items: center;
}

body.page-custom .pp-case-showcase__heading {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--pp-ink);
  max-width: 16ch;
}

body.page-custom .pp-case-showcase__copy .pp-lede {
  margin-bottom: 0.25rem;
}

body.page-custom .pp-case-showcase__copy .pp-ruled-list {
  margin-top: 1rem;
}

body.page-custom .pp-case-showcase__copy .pp-ruled-list li {
  padding: 0.7rem 0;
  font-size: 0.98rem;
}

body.page-custom .pp-case-showcase__shot {
  margin: 0;
}

body.page-custom .pp-case--article {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
}

body.page-custom .pp-case-header {
  max-width: 48rem;
}

body.page-custom .pp-case-header .pp-h2 {
  max-width: 22ch;
}

body.page-custom .pp-case-header .pp-lede {
  max-width: 46rem;
}

body.page-custom .pp-shot--article {
  margin: 0;
  max-width: none;
}

body.page-custom .pp-shot--article a {
  display: block;
}

body.page-custom .pp-case-prose {
  max-width: 48rem;
  display: grid;
  gap: 0.15rem;
}

body.page-custom .pp-case-body {
  margin: 0;
  max-width: none;
  font-size: var(--pp-body-size);
  line-height: var(--pp-body-lh);
  color: var(--pp-muted);
}

body.page-custom .pp-case .pp-shot figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--pp-soft-muted);
}

body.page-custom .pp-ruled-list--cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.75rem;
  margin-top: 1.15rem;
}

body.page-custom .pp-ruled-list--cols li:last-child {
  border-bottom: 1px solid var(--pp-border);
}

body.page-custom .pp-case--vaaka .pp-aside {
  margin-top: 1.35rem;
  max-width: none;
}

body.page-custom .pp-case--vaaka .pp-aside p {
  max-width: none;
}

body.page-custom .pp-case--vaaka .pp-gateway-flow {
  margin-top: 1.15rem;
  padding-top: 0;
  border-top: 0;
}

body.page-custom .pp-case--reverse .pp-case-copy {
  order: 2;
}

body.page-custom .pp-case--reverse .pp-shot {
  order: 1;
}

body.page-custom .pp-process-visual {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 16px;
  border: 1px solid var(--pp-border);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(0, 143, 136, 0.04)),
    var(--pp-surface);
  box-shadow: var(--pp-shadow-soft);
}

body.page-custom .pp-process-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

body.page-custom .pp-process-rail::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 1px;
  background: linear-gradient(180deg, var(--pp-brand), rgba(0, 143, 136, 0.15));
}

body.page-custom .pp-process-rail li {
  position: relative;
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 0.85rem 0;
}

body.page-custom .pp-process-rail li:first-child {
  padding-top: 0;
}

body.page-custom .pp-process-rail li:last-child {
  padding-bottom: 0;
}

body.page-custom .pp-process-rail__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--pp-brand-deep);
  background: var(--pp-surface);
  border: 1px solid rgba(0, 143, 136, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 143, 136, 0.08);
}

body.page-custom .pp-process-rail__label {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
}

body.page-custom .pp-scope {
  grid-template-columns: 1fr 1fr;
}

body.page-custom .pp-scope-col h3 {
  align-items: flex-start;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  body.page-custom .pp-continuum {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  body.page-custom .pp-continuum::before {
    left: 0.3rem;
    right: auto;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(0, 143, 136, 0.15),
      rgba(0, 143, 136, 0.45) 50%,
      rgba(0, 143, 136, 0.15)
    );
  }

  body.page-custom .pp-continuum__stage {
    grid-template-columns: 2.4rem 1fr;
    column-gap: 1rem;
    padding-left: 0.15rem;
  }

  body.page-custom .pp-continuum__visual {
    grid-column: 1 / -1;
    grid-template-columns: 2.4rem 1fr;
    justify-items: start;
    align-items: center;
    min-height: 0;
    gap: 1rem;
  }

  body.page-custom .pp-continuum__node {
    margin-left: 0.05rem;
  }

  body.page-custom .pp-continuum__schema {
    width: min(100%, 16rem);
    height: 4.5rem;
  }

  body.page-custom .pp-continuum__num {
    grid-column: 1;
  }

  body.page-custom .pp-continuum__stage h3,
  body.page-custom .pp-continuum__stage p {
    grid-column: 2;
  }

  body.page-custom .pp-domains-compose {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 1.5rem;
  }

  body.page-custom .pp-domains-compose .pp-editorial-head,
  body.page-custom .pp-domains-compose .pp-domain-grid,
  body.page-custom .pp-domains-compose .pp-context-shot {
    grid-area: auto;
  }

  body.page-custom .pp-domains-compose .pp-editorial-head {
    order: 1;
  }

  body.page-custom .pp-domains-compose .pp-context-shot {
    order: 2;
    position: static;
    max-width: min(100%, 26rem);
    margin-left: 0;
    margin-right: 0;
    margin-inline: auto;
    padding-right: 0.55rem;
  }

  body.page-custom .pp-domains-compose .pp-domain-grid {
    order: 3;
  }

  body.page-custom .pp-domains-compose .pp-context-shot__frame {
    aspect-ratio: 4 / 5;
  }

  body.page-custom .pp-principles--anchor .pp-principles-intro {
    max-width: none;
  }

  body.page-custom .pp-principles--anchor .pp-viz {
    width: 100%;
    margin-right: 0;
    justify-self: stretch;
  }

  body.page-custom .pp-principles-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    row-gap: 0;
  }

  body.page-custom .pp-principles-rail li {
    padding: 1.05rem 1rem 1.05rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--pp-border);
  }

  body.page-custom .pp-principles-rail li:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--pp-border);
  }

  body.page-custom .pp-principles-rail li:nth-child(even) {
    padding-left: 1rem;
    padding-right: 0;
  }

  body.page-custom .pp-principles-rail li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  body.page-custom .pp-viz__stage {
    padding: 0.75rem;
  }

  body.page-custom .pp-case-showcase__nav {
    display: none;
  }

  body.page-custom .pp-case-showcase__panels {
    display: grid;
    gap: 0.75rem;
  }

  body.page-custom .pp-case-showcase__panel {
    display: block;
    border: 1px solid var(--pp-border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--pp-surface);
  }

  body.page-custom .pp-case-showcase__panel[hidden] {
    display: block !important;
  }

  body.page-custom .pp-case-showcase__acc-trigger {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    margin: 0;
    padding: 1rem 1.1rem;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
  }

  body.page-custom .pp-case-showcase__acc-meta {
    display: grid;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
  }

  body.page-custom .pp-case-showcase__acc-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pp-brand);
  }

  body.page-custom .pp-case-showcase__acc-title {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--pp-ink);
  }

  body.page-custom .pp-case-showcase__acc-icon {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--pp-brand);
    border-bottom: 2px solid var(--pp-brand);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  body.page-custom .pp-case-showcase__acc-trigger.is-active .pp-case-showcase__acc-icon {
    transform: rotate(225deg);
    margin-top: 0.25rem;
  }

  body.page-custom .pp-case-showcase__body {
    display: none;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 0 1.1rem 1.25rem;
    border-top: 1px solid var(--pp-border);
  }

  body.page-custom .pp-case-showcase__panel.is-active .pp-case-showcase__body {
    display: grid;
    padding-top: 1.15rem;
  }

  body.page-custom .pp-case-showcase__copy .pp-eyebrow {
    display: none;
  }

  body.page-custom .pp-ruled-list--cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  body.page-custom .pp-scope {
    grid-template-columns: 1fr;
  }

  body.page-custom .pp-scope-col--yes {
    border-right: 0;
    border-bottom: 1px solid var(--pp-border);
  }

  body.page-custom .pp-domains-compose .pp-context-shot {
    max-width: none;
    margin-inline: 0;
  }

  body.page-custom .pp-domains-compose .pp-domain-grid {
    grid-template-columns: 1fr;
  }

  body.page-custom .pp-domains-compose .pp-domain,
  body.page-custom .pp-domains-compose .pp-domain:nth-child(odd),
  body.page-custom .pp-domains-compose .pp-domain:nth-child(even) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  body.page-custom .pp-principles-rail {
    grid-template-columns: 1fr;
  }

  body.page-custom .pp-principles-rail li,
  body.page-custom .pp-principles-rail li:nth-child(odd),
  body.page-custom .pp-principles-rail li:nth-child(even) {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--pp-border);
  }

  body.page-custom .pp-principles-rail li:last-child {
    border-bottom: 0;
  }
}

/* ═══════════════════════════════════════
   SIGNATURE: Link — 3-step workspace board
═══════════════════════════════════════ */
body.page-link .pp-section--board {
  background:
    linear-gradient(180deg, #e6eeec 0%, #f2f6f5 35%, #fafbfb 100%);
}
body.page-link .pp-kanban {
  margin-top: 2.25rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 22, 24, 0.12);
  background:
    linear-gradient(180deg, #f7faf9 0%, #eef3f2 100%);
  box-shadow:
    0 1px 2px rgba(12, 40, 40, 0.04),
    0 22px 48px rgba(12, 40, 40, 0.1);
  overflow: hidden;
}
body.page-link .pp-kanban-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid rgba(11, 22, 24, 0.1);
  background: #fff;
}
body.page-link .pp-kanban-live {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #008f88;
  box-shadow: 0 0 0 4px rgba(0, 143, 136, 0.18);
}
body.page-link .pp-kanban-bar strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pp-ink);
}
body.page-link .pp-kanban-bar > span:last-child {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pp-soft-muted);
}
body.page-link .pp-kanban-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-height: 0;
}
body.page-link .pp-kanban-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.9rem 0.75rem 1.1rem;
  border-right: 1px solid rgba(11, 22, 24, 0.08);
}
body.page-link .pp-kanban-col:last-child { border-right: 0; }
body.page-link .pp-kanban-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.15rem 0.15rem;
}
body.page-link .pp-kanban-col-head > span:first-child {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
}
body.page-link .pp-kanban-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  background: var(--col-accent, #008f88);
}
body.page-link .pp-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0.35rem;
}
body.page-link .pp-price--featured {
  padding-top: 2.15rem;
}
body.page-link .pp-price-badge {
  top: 0.85rem;
  left: auto;
  right: 1.1rem;
  z-index: 1;
}
body.page-link .pp-hero .pp-h1 {
  max-width: 12ch;
}
body.page-link .pp-section--approaches {
  background: var(--pp-paper);
}
body.page-link .pp-section--approaches .pp-h2,
body.page-link .pp-section--board .pp-h2,
body.page-link .pp-section--pricing .pp-h2 {
  max-width: 18ch;
}
body.page-link .pp-process--link {
  margin: 0 0 1.75rem;
}
body.page-link .pp-kanban-col:nth-child(1) { --col-accent: #5b6b6e; }
body.page-link .pp-kanban-col:nth-child(2) { --col-accent: #c9852d; }
body.page-link .pp-kanban-col:nth-child(3) { --col-accent: #008f88; }
body.page-link .pp-wo {
  position: relative;
  display: grid;
  grid-template-columns: 4px 1fr;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11, 22, 24, 0.1);
  box-shadow: 0 8px 20px rgba(12, 40, 40, 0.06);
  overflow: hidden;
}
body.page-link .pp-wo-pri { background: var(--col-accent, #008f88); }
body.page-link .pp-wo-body {
  padding: 0.85rem 0.85rem 0.9rem;
}
body.page-link .pp-wo h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
  line-height: 1.25;
}
body.page-link .pp-wo p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--pp-muted);
}
body.page-link .pp-wo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.75rem;
}
body.page-link .pp-wo-tags span {
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--pp-ink-soft);
  background: var(--pp-mist);
  border: 1px solid var(--pp-border);
}

@media (max-width: 991.98px) {
  body.page-link .pp-kanban-cols {
    grid-template-columns: 1fr;
  }
  body.page-link .pp-kanban-col {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 22, 24, 0.08);
  }
  body.page-link .pp-kanban-col:last-child { border-bottom: 0; }
  body.page-link .pp-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  body.page-link .pp-process--link {
    gap: 0.5rem;
  }
  body.page-link .pp-process--link li:not(:last-child)::after {
    display: none;
  }
}

/* ── Kare Signal — scoped only, does not change other product pages ── */
body.page-signal .pp-h1 {
  max-width: 18ch;
}

body.page-signal .pp-section {
  padding-block: clamp(3.25rem, 6vw, 5.25rem);
}

body.page-signal .pp-signal-intro {
  padding-block: clamp(2.5rem, 4.5vw, 3.75rem);
}

body.page-signal .pp-signal-intro__head {
  margin-bottom: 0;
}

body.page-signal .pp-signal-intro .pp-h2 {
  max-width: 24ch;
}

body.page-signal .pp-signal-intro .pp-lede {
  max-width: 46rem;
}

body.page-signal .pp-signal-intro .pp-support {
  margin-top: 0.85rem;
  max-width: 46rem;
}

body.page-signal .pp-signal-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pp-border);
}

body.page-signal .pp-signal-highlight {
  padding-right: 1.15rem;
}

body.page-signal .pp-signal-highlight:not(:last-child) {
  border-right: 1px solid var(--pp-border);
  margin-right: 1.15rem;
}

body.page-signal .pp-signal-highlight .ti {
  display: block;
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
  line-height: 1;
  color: var(--pp-brand);
}

body.page-signal .pp-signal-highlight h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
}

body.page-signal .pp-signal-highlight p {
  margin: 0;
  max-width: 22rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--pp-muted);
}

body.page-signal .pp-signal-showcase .pp-editorial-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

body.page-signal .pp-signal-showcase {
  position: relative;
}

body.page-signal .pp-signal-showcase .pp-h2 {
  max-width: 22ch;
}

body.page-signal .pp-signal-showcase__shot {
  margin: 0 0 0.85rem;
}

body.page-signal .pp-signal-showcase__shot a {
  box-shadow: var(--pp-shadow-shot);
}

body.page-signal .pp-signal-showcase__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

body.page-signal .pp-signal-gallery-extra {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.page-signal .pp-signal-feats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

body.page-signal .pp-signal-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: clamp(1.35rem, 2.5vw, 1.85rem) 0 0;
  padding: 0.95rem 1.05rem;
  list-style: none;
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  background: var(--pp-surface);
}

body.page-signal .pp-signal-workflow li {
  position: relative;
  margin: 0;
  padding: 0;
  min-width: 0;
}

body.page-signal .pp-signal-workflow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 0.15rem;
  right: -0.75rem;
  color: var(--pp-soft-muted);
  font-size: 0.85rem;
  line-height: 1;
  opacity: 0.7;
}

body.page-signal .pp-signal-workflow strong {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
}

body.page-signal .pp-signal-workflow span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--pp-muted);
}

body.page-signal .pp-signal-feat {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.3rem 1.2rem 1.15rem;
  border: 1px solid var(--pp-border);
  border-radius: 16px;
  background: var(--pp-surface);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.page-signal .pp-signal-feat:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 143, 136, 0.22);
  box-shadow: 0 10px 28px rgba(12, 20, 22, 0.06);
}

body.page-signal .pp-signal-feat__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 0 1rem;
  border-radius: 10px;
  background: var(--color-brand-soft);
  color: var(--pp-brand);
}

body.page-signal .pp-signal-feat__icon .ti {
  font-size: 1.15rem;
  line-height: 1;
}

body.page-signal .pp-signal-feat h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--pp-ink);
}

body.page-signal .pp-signal-feat > p:not(.pp-signal-feat__meta) {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--pp-muted);
}

body.page-signal .pp-signal-feat__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.05rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--pp-border);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--pp-soft-muted);
}

body.page-signal .pp-signal-feat__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f9e78;
  box-shadow: 0 0 0 3px rgba(47, 158, 120, 0.16);
}

body.page-signal .pp-signal-feat__timeline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 28px;
  height: 8px;
}

body.page-signal .pp-signal-feat__timeline::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 1px;
  background: rgba(0, 143, 136, 0.28);
}

body.page-signal .pp-signal-feat__timeline i {
  position: relative;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pp-brand);
  opacity: 0.38;
}

body.page-signal .pp-signal-feat__timeline i:nth-child(2) {
  width: 7px;
  height: 7px;
  opacity: 1;
}

body.page-signal .pp-signal-feat__bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
  height: 12px;
}

body.page-signal .pp-signal-feat__bars i {
  width: 3px;
  border-radius: 1px;
  background: var(--pp-brand);
}

body.page-signal .pp-signal-feat__bars i:nth-child(1) { height: 5px; opacity: 0.32; }
body.page-signal .pp-signal-feat__bars i:nth-child(2) { height: 10px; opacity: 0.72; }
body.page-signal .pp-signal-feat__bars i:nth-child(3) { height: 7px; opacity: 0.42; }
body.page-signal .pp-signal-feat__bars i:nth-child(4) { height: 12px; opacity: 0.9; }

body.page-signal .pp-signal-feat__trend {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
  height: 12px;
}

body.page-signal .pp-signal-feat__trend i {
  width: 3px;
  border-radius: 1px;
  background: var(--pp-brand);
}

body.page-signal .pp-signal-feat__trend i:nth-child(1) { height: 4px; opacity: 0.32; }
body.page-signal .pp-signal-feat__trend i:nth-child(2) { height: 7px; opacity: 0.48; }
body.page-signal .pp-signal-feat__trend i:nth-child(3) { height: 9px; opacity: 0.68; }
body.page-signal .pp-signal-feat__trend i:nth-child(4) { height: 12px; opacity: 0.9; }

body.page-signal .pp-signal-feat__value {
  display: inline-flex;
  align-items: center;
  padding: 0.08rem 0.38rem;
  border: 1px solid rgba(0, 143, 136, 0.18);
  border-radius: 4px;
  background: var(--color-brand-soft);
  color: var(--pp-brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

body.page-signal .pp-section--eco .pp-editorial-head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

body.page-signal .pp-section--eco .pp-h2 {
  max-width: 22ch;
}

body.page-signal .pp-signal-flow__example {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ecfc8;
}

body.page-signal .pp-signal-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.18fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0.7rem;
}

body.page-signal .pp-signal-flow__node {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 5.25rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  text-align: center;
}

body.page-signal .pp-signal-flow__node--end {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-signal .pp-signal-flow__node--core {
  background: rgba(0, 143, 136, 0.16);
  border: 1px solid rgba(110, 207, 200, 0.42);
  box-shadow: 0 0 36px rgba(0, 143, 136, 0.14);
}

body.page-signal .pp-signal-flow__name,
body.page-signal .pp-signal-flow__node--core strong {
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: #fff;
}

body.page-signal .pp-signal-flow__label {
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ecfc8;
}

body.page-signal .pp-signal-flow__node code {
  display: block;
  margin-top: 0.35rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #6ecfc8;
}

body.page-signal .pp-signal-flow__arrow {
  position: relative;
  align-self: center;
  width: 1.85rem;
  height: 2px;
  background: #6ecfc8;
}

body.page-signal .pp-signal-flow__arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #6ecfc8;
  border-top: 2px solid #6ecfc8;
  transform: translateY(-50%) rotate(45deg);
}

body.page-signal .pp-signal-flow__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

body.page-signal .pp-signal-flow__tags span {
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 207, 200, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.page-signal .pp-signal-principle {
  margin: 2rem 0 0;
  padding: 1.35rem 1.4rem 1.3rem;
  border-left: 2px solid rgba(110, 207, 200, 0.7);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.035);
}

body.page-signal .pp-signal-principle h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #fff;
}

body.page-signal .pp-signal-principle p {
  margin: 0 0 0.75rem;
  max-width: 46rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

body.page-signal .pp-signal-principle p:last-child {
  margin-bottom: 0;
}

body.page-signal .pp-signal-env .pp-h2 {
  max-width: 18ch;
}

body.page-signal .pp-signal-env__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}

body.page-signal .pp-signal-env .pp-eyebrow {
  margin-bottom: 0.7rem;
}

body.page-signal .pp-signal-env .pp-lede {
  margin-top: 0.85rem;
  font-size: 1.02rem;
  max-width: none;
}

body.page-signal .pp-signal-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 0.35rem;
  padding: 0;
  list-style: none;
}

body.page-signal .pp-signal-trust li {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--pp-border);
  background: var(--pp-surface);
  color: var(--pp-ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

body.page-signal .pp-signal-env__rows {
  margin-top: 0.35rem;
}

body.page-signal .pp-signal-env__rows article {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--pp-border);
}

body.page-signal .pp-signal-env__rows article:last-child {
  border-bottom: 1px solid var(--pp-border);
}

body.page-signal .pp-signal-env__rows .ti {
  margin-top: 0.12rem;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--pp-brand);
}

body.page-signal .pp-signal-env__rows h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
}

body.page-signal .pp-signal-env__rows p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--pp-muted);
}

body.page-signal .pp-signal-wide {
  margin: 0;
}

body.page-signal .pp-signal-wide a {
  box-shadow: var(--pp-shadow-shot);
}

body.page-signal .pp-signal-examples {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--pp-border);
}

body.page-signal .pp-signal-examples__label {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pp-brand);
}

body.page-signal .pp-signal-examples__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
}

body.page-signal .pp-signal-examples__grid h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
}

body.page-signal .pp-signal-examples__grid p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--pp-muted);
}

body.page-signal .pp-signal-examples__note {
  margin: 1.15rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--pp-muted);
}

body.page-signal .pp-signal-examples__note + .pp-signal-examples__note {
  margin-top: 0.55rem;
}

body.page-signal .pp-cta .pp-h2 {
  max-width: 32ch;
}

@media (max-width: 1100px) {
  body.page-signal .pp-signal-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 0;
  }

  body.page-signal .pp-signal-highlight:nth-child(2n) {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }

  body.page-signal .pp-signal-highlight:nth-child(-n+2) {
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--pp-border);
  }

  body.page-signal .pp-signal-feats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-signal .pp-signal-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
  }

  body.page-signal .pp-signal-workflow li:nth-child(2n)::after {
    content: none;
  }
}

@media (max-width: 991.98px) {
  body.page-signal .pp-signal-highlights {
    grid-template-columns: 1fr;
  }

  body.page-signal .pp-signal-highlight,
  body.page-signal .pp-signal-highlight:not(:last-child),
  body.page-signal .pp-signal-highlight:nth-child(2n),
  body.page-signal .pp-signal-highlight:nth-child(-n+2) {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--pp-border);
  }

  body.page-signal .pp-signal-highlight:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  body.page-signal .pp-signal-flow {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  body.page-signal .pp-signal-flow__arrow {
    width: 2px;
    height: 1.35rem;
    justify-self: center;
  }

  body.page-signal .pp-signal-flow__arrow::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  body.page-signal .pp-signal-env__grid {
    grid-template-columns: 1fr;
  }

  body.page-signal .pp-signal-examples__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 639.98px) {
  body.page-signal .pp-signal-feats {
    grid-template-columns: 1fr;
  }

  body.page-signal .pp-signal-workflow {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  body.page-signal .pp-signal-workflow li:not(:last-child) {
    padding-bottom: 0.85rem;
  }

  body.page-signal .pp-signal-workflow li:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
  }

  body.page-signal .pp-signal-showcase__pair {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-signal .pp-signal-feat,
  body.page-signal .pp-signal-feat:hover {
    transition: none;
    transform: none;
  }
}
