﻿/* ===========================================================
   /index â€” institutional redesign
   Palette: cream + deep teal + champagne
   Typography: Plus Jakarta Sans + Instrument Serif accent
   =========================================================== */
.pgm-page {
  --ink:          #0F172A;
  --ink-soft:     #1E293B;
  --slate:        #475569;
  --slate-soft:   #64748B;
  --slate-line:   #E5E2DA;
  --cream:        #FAF7F0;
  --cream-deep:   #F4EFE3;
  --primary:      #0E5C8A;
  --primary-deep: #07314A;
  --primary-darkest: #051E2E;
  --primary-soft: #E8F0F4;
  --accent:       #C9A269;
  --accent-deep:  #A8814A;
  --accent-soft:  #FAF3E4;

  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
}
.pgm-page *,
.pgm-page *::before,
.pgm-page *::after { box-sizing: border-box; }

/* serif accent for italic emphasis */
.pgm-page em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* â”€â”€ HERO â€” editorial split (cream bg, photo as accent) â”€â”€â”€â”€ */
.pgm-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  color: var(--ink);
  padding: clamp(5.5rem, 10vh, 8rem) 0 clamp(3.5rem, 8vh, 6rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pgm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 14% 12%, rgba(14,92,138,0.05), transparent 35%),
    radial-gradient(circle at 88% 86%, rgba(201,162,105,0.06), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.pgm-hero__grid {
  position: relative; z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Visual wrapper holds slider + decorative backplate */
.pgm-hero__visual {
  position: relative;
  width: 100%;
  padding: 0 18px 18px 0;       /* space for backplate offset */
}
.pgm-hero__visual-deco {
  position: absolute;
  top: 18px; left: 18px; right: 0; bottom: 0;
  border: 1.5px solid rgba(201,162,105,0.45);
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
}
.pgm-hero__visual-deco::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,162,105,0.18);
  border-radius: 16px;
}
.pgm-hero__visual-deco::after {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 56px; height: 56px;
  border: 1.5px solid rgba(56,189,248,0.5);
  border-radius: 12px;
  transform: rotate(8deg);
}
html[data-theme="light"] .pgm-hero__visual-deco { border-color: rgba(168,129,74,0.5); }
html[data-theme="light"] .pgm-hero__visual-deco::before { border-color: rgba(168,129,74,0.22); }
html[data-theme="light"] .pgm-hero__visual-deco::after { border-color: rgba(14,92,138,0.55); }
.pgm-hero__col-text {
  display: flex; flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.pgm-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.45rem 0.95rem;
  background: rgba(14,92,138,0.07);
  border: 1px solid rgba(14,92,138,0.15);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}
.pgm-hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.pgm-hero__title {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
}
.pgm-hero__title em {
  color: var(--primary);
  font-weight: 400;
  font-size: 1.06em;
  line-height: 1;
  display: inline-block;
  transform: translateY(0.04em);
}
.pgm-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
  max-width: 48ch;
  margin: 0;
}
.pgm-hero .c-search {
  margin: 0.5rem 0 0;
  max-width: 560px;
}
.pgm-hero__actions {
  display: flex; gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.pgm-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.pgm-btn:hover { transform: translateY(-1px); }
.pgm-btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15,23,42,0.18);
}
.pgm-btn--primary:hover { background: var(--ink-soft); box-shadow: 0 8px 20px rgba(15,23,42,0.22); color: #fff; }
.pgm-btn--ghost {
  background: transparent;
  border-color: rgba(15,23,42,0.18);
  color: var(--ink);
}
.pgm-btn--ghost:hover { background: rgba(15,23,42,0.04); border-color: rgba(15,23,42,0.28); color: var(--ink); }
.pgm-btn--accent {
  background: var(--accent);
  color: var(--primary-deep);
  box-shadow: 0 4px 12px rgba(201,162,105,0.3);
}
.pgm-btn--accent:hover { background: var(--accent-deep); color: #fff; box-shadow: 0 8px 20px rgba(168,129,74,0.4); }
.pgm-btn i { font-size: 1rem; }

.pgm-hero__meta {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--slate-soft);
  display: flex; align-items: center; gap: 0.5rem;
}
.pgm-hero__meta i { color: var(--accent-deep); font-size: 0.875rem; }

.pgm-hero__col-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 5/6;
  max-height: 640px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 36px 90px -28px rgba(15,23,42,0.55), 0 16px 48px -16px rgba(15,23,42,0.25);
  background: var(--primary-deep);
  isolation: isolate;
}

/* Slider */
.pgm-hero__slides {
  position: absolute; inset: 0;
}
.pgm-hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.pgm-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.pgm-hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 7s ease-out;
  will-change: transform;
}
.pgm-hero__slide.is-active img {
  transform: scale(1.08);
}
@@media (prefers-reduced-motion: reduce) {
  .pgm-hero__slide img { transition: none !important; transform: none !important; }
}
.pgm-hero__slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,49,74,0.72) 100%);
  pointer-events: none;
}

/* Navigation arrows */
.pgm-hero__nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
  z-index: 3;
}
.pgm-hero__col-visual:hover .pgm-hero__nav { opacity: 1; }
.pgm-hero__nav:hover { background: rgba(255,255,255,0.32); transform: translateY(-50%) scale(1.08); }
.pgm-hero__nav--prev { left: 0.875rem; }
.pgm-hero__nav--next { right: 0.875rem; }
.pgm-hero__nav:focus-visible { opacity: 1; outline: 2px solid var(--accent); outline-offset: 2px; }

/* Slide counter top-right */
.pgm-hero__counter {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  z-index: 3;
  display: inline-flex; align-items: baseline; gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  background: rgba(11,11,11,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'JetBrains Mono', 'Plus Jakarta Sans', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pgm-hero__counter-current { color: var(--accent); font-size: 0.9375rem; font-weight: 800; }
.pgm-hero__counter-sep { color: rgba(255,255,255,0.4); margin: 0 0.05rem; }
.pgm-hero__counter-total { color: rgba(255,255,255,0.55); }

/* Dots - vertical bars on right edge */
.pgm-hero__dots {
  position: absolute;
  top: 50%; right: 1.25rem;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0.5rem;
  z-index: 3;
  padding: 0.7rem 0.4rem;
  background: rgba(11,11,11,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pgm-hero__dots button {
  width: 3px; height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 0; padding: 0;
  cursor: pointer;
  transition: height 0.35s ease, background 0.2s;
}
.pgm-hero__dots button.is-active {
  background: var(--accent);
  height: 40px;
}
.pgm-hero__dots button:hover { background: rgba(255,255,255,0.75); }
.pgm-hero__dots button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.pgm-hero__photo-frame {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  pointer-events: none;
  z-index: 2;
}
.pgm-hero__photo-caption {
  position: absolute;
  left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  z-index: 2;
  padding: 1.1rem 1.4rem;
  background: rgba(11,11,11,0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  display: flex; flex-direction: column;
  gap: 0.4rem;
}
.pgm-hero__photo-caption::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 999px;
}
.pgm-hero__photo-caption small {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 800;
}
.pgm-hero__photo-caption span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* â”€â”€ STATS BAND (between hero and pillars-intro) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pgm-stats {
  background: #fff;
  border-top: 1px solid var(--slate-line);
  border-bottom: 1px solid var(--slate-line);
  padding: 0;
}
.pgm-stats__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}
.pgm-stats__item {
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  gap: 0.35rem;
  border-right: 1px solid var(--slate-line);
}
.pgm-stats__item:last-child { border-right: 0; }
.pgm-stats__num {
  font-size: clamp(1.625rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 0.15rem;
}
.pgm-stats__num sup {
  font-size: 0.625em;
  color: var(--accent-deep);
  font-weight: 600;
}
.pgm-stats__label {
  font-size: 0.8125rem;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* â”€â”€ PILLARS INTRO (deep teal, restrained) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pgm-pillars-intro {
  background: var(--primary-deep);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pgm-pillars-intro::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,162,105,0.08), transparent 40%);
  pointer-events: none;
}
.pgm-pillars-intro > .container { position: relative; z-index: 1; max-width: 880px; }
.pgm-pillars-intro__label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(201,162,105,0.15);
  color: var(--accent);
  border: 1px solid rgba(201,162,105,0.3);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.pgm-pillars-intro__title {
  font-size: clamp(1.875rem, 4.2vw, 2.625rem);
  font-weight: 700; line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto 1rem;
  max-width: 22ch;
}
.pgm-pillars-intro__title em {
  color: var(--accent);
}
.pgm-pillars-intro__lead {
  font-size: 1.0625rem; line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  margin: 0 auto;
}

/* â”€â”€ 3. STICKY SCENE (Dua Pilar) â€” palette updated â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pgm-scene {
  display: flex; align-items: stretch;
  background: var(--primary-deep);
  color: #fff;
  position: relative;
  /* NO overflow:hidden â€” breaks position:sticky on Chromium+Lenis */
  /* NO isolation:isolate â€” same reason                            */
}
.pgm-scene--inovasi { background: var(--primary); }
.pgm-scene__imgcol {
  width: 50%; min-width: 0;
  align-self: stretch;
  min-height: 200vh;          /* explicit scroll room for sticky */
}
.pgm-scene__sticky-img {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
}
.pgm-scene__sticky-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pgm-scene--inovasi .pgm-scene__sticky-img img { object-position: center 30%; }

/* dotted texture pattern on dark scene */
.pgm-scene::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.pgm-scene--inovasi::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
}

/* â”€â”€ Scene ornaments (Â§6 programdesign.md) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pgm-scene__orn { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.pgm-scene__orn-orb {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  filter: blur(80px);
  top: -120px; right: -120px;
  animation: pgmOrnOrb 14s ease-in-out infinite;
}
.pgm-scene__orn--blue .pgm-scene__orn-orb { background: radial-gradient(circle, rgba(56,189,248,0.32), transparent 70%); }
.pgm-scene__orn--gold .pgm-scene__orn-orb { background: radial-gradient(circle, rgba(201,162,105,0.3), transparent 70%); }
@@keyframes pgmOrnOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 60px) scale(1.2); }
}
.pgm-scene__orn-orb--2 {
  width: 320px; height: 320px;
  top: auto; bottom: -80px; right: auto; left: -80px;
  animation-delay: -6s; animation-duration: 18s;
}
.pgm-scene__orn-line {
  position: absolute; top: 8%; right: 7%; bottom: 8%;
  width: 1px;
}
.pgm-scene__orn--blue .pgm-scene__orn-line { background: linear-gradient(180deg, transparent, rgba(56,189,248,0.5), transparent); }
.pgm-scene__orn--gold .pgm-scene__orn-line { background: linear-gradient(180deg, transparent, rgba(201,162,105,0.5), transparent); }
.pgm-scene__orn-line::before {
  content: ''; position: absolute; top: -80px; left: -2px;
  width: 5px; height: 80px; filter: blur(3px);
  animation: pgmOrnSpark 6s linear infinite;
}
.pgm-scene__orn--blue .pgm-scene__orn-line::before { background: linear-gradient(180deg, transparent, #7DD3FC, transparent); }
.pgm-scene__orn--gold .pgm-scene__orn-line::before { background: linear-gradient(180deg, transparent, var(--accent), transparent); }
@@keyframes pgmOrnSpark {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(calc(100vh + 80px)); opacity: 0; }
}
.pgm-scene__orn-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  animation: pgmOrnDot 4.5s ease-in-out infinite;
}
.pgm-scene__orn--blue .pgm-scene__orn-dot { background: #7DD3FC; box-shadow: 0 0 24px rgba(125,211,252,0.8); }
.pgm-scene__orn--gold .pgm-scene__orn-dot { background: var(--accent); box-shadow: 0 0 24px rgba(201,162,105,0.8); }
.pgm-scene__orn-dot--a { top: 18%; left: 12%; animation-delay: 0s; }
.pgm-scene__orn-dot--b { top: 55%; left: 8%; animation-delay: 1.5s; width: 6px; height: 6px; }
.pgm-scene__orn-dot--c { top: 35%; right: 18%; animation-delay: 3s; width: 8px; height: 8px; }
.pgm-scene__orn-dot--d { bottom: 22%; right: 28%; animation-delay: 4.2s; }
@@keyframes pgmOrnDot {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.55; }
  50%      { transform: translateY(-16px) scale(1.25); opacity: 1; }
}

/* right edge progress dots (decoration) */
.pgm-scene__dots {
  position: absolute; top: 50%; right: 1.25rem;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0.625rem;
  z-index: 2;
}
.pgm-scene__dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.pgm-scene__dots span.is-active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201,162,105,0.7);
}
.pgm-scene__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,49,74,0.15) 0%, rgba(7,49,74,0.05) 45%, rgba(7,49,74,0.55) 100%);
}
/* Big round badge at bottom-left of image */
.pgm-scene__badge {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 2;
  width: clamp(120px, 14vw, 160px);
  height: clamp(120px, 14vw, 160px);
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.15rem;
  box-shadow: 0 20px 50px rgba(7,49,74,0.45), inset 0 0 0 1px rgba(255,255,255,0.12);
  text-align: center;
}
.pgm-scene__badge span {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.pgm-scene__badge small {
  font-size: 0.625rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-top: 0.25rem;
}
.pgm-scene__badge--gold {
  background: var(--accent);
  box-shadow: 0 20px 50px rgba(168,129,74,0.45), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.pgm-scene__badge--gold span { color: var(--primary-deep); }
.pgm-scene__badge--gold small { color: rgba(7,49,74,0.85); }

.pgm-scene__text {
  width: 50%; min-width: 0;
  min-height: 200vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;            /* clip ornaments here, NOT on .pgm-scene */
  isolation: isolate;
}
.pgm-scene__text-inner {
  position: relative; z-index: 2;
  max-width: 540px;
  display: flex; flex-direction: column; gap: 1.25rem;
}

/* scene chip + typography */
.pgm-scene__chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  align-self: flex-start;
}
.pgm-scene__chip--blue {
  background: rgba(255,255,255,0.1);
  color: #7DD3FC;
  border: 1px solid rgba(255,255,255,0.15);
}
.pgm-scene__chip--gold {
  background: rgba(201,162,105,0.18);
  color: var(--accent);
  border: 1px solid rgba(201,162,105,0.4);
}
.pgm-scene__chip svg { flex-shrink: 0; }
.pgm-scene__h {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0; color: #fff;
  max-width: 13ch;
}
.pgm-scene__lead {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.85); margin: 0;
}
.pgm-scene__lead strong { color: #fff; font-weight: 600; }

.pgm-scene__bullet {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pgm-scene__bullet:first-of-type { padding-top: 0; border-top: 0; }
.pgm-scene__bullet > div { flex: 1; min-width: 0; }
.pgm-scene__bullet strong {
  display: block;
  font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.3rem;
}
.pgm-scene__bullet p {
  margin: 0;
  font-size: 0.875rem; line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.pgm-scene__bullet-num {
  flex: 0 0 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 800;
  color: var(--primary-deep);
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.pgm-scene__bullet-num--gold {
  background: var(--accent);
  color: var(--primary-deep);
}

.pgm-scene__stat {
  margin-top: 0.5rem;
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  align-self: flex-start;
}
.pgm-scene__stat-num {
  font-size: 2.25rem; font-weight: 800; line-height: 1;
  color: #7DD3FC;
}
.pgm-scene__stat--gold .pgm-scene__stat-num { color: var(--accent); }
.pgm-scene__stat-label {
  font-size: 0.8125rem; line-height: 1.45;
  color: rgba(255,255,255,0.75);
  max-width: 240px;
}

/* â”€â”€ STACK SLIDER (Program Unggulan) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pgm-stack-section {
  position: relative; background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(6rem, 12vw, 10rem);
  isolation: isolate;
}
.pgm-stack-header {
  text-align: center; max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}
.pgm-stack-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(14,92,138,0.06);
  color: var(--primary);
  border: 1px solid rgba(14,92,138,0.15);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.pgm-stack-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.pgm-stack-title em { color: var(--primary); }
.pgm-stack-lead { font-size: 1rem; line-height: 1.65; color: var(--slate); margin: 0; }

.pgm-stack-list {
  list-style: none; padding: 0; margin: 0;
  max-width: 960px; margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}
.pgm-stack-card {
  position: sticky;
  top: calc(var(--nav-h, 72px) + 1.5rem + var(--i, 0) * 14px);
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 20px 50px -22px rgba(15,23,42,0.22);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 360px;
  transition: transform 0.4s ease;
  border: 1px solid rgba(15,23,42,0.06);
}
.pgm-stack-card:hover { transform: translateY(-4px); }
.pgm-stack-card__media {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  min-height: 240px;
}
.pgm-stack-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.pgm-stack-card:hover .pgm-stack-card__media img { transform: scale(1.04); }
.pgm-stack-card__media-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 4rem;
}
.pgm-stack-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,49,74,0.5) 0%, transparent 55%);
}
.pgm-stack-card__index {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 800;
  color: var(--primary-deep);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.pgm-stack-card__badge {
  position: absolute; top: 1.5rem; right: 1.25rem; z-index: 2;
  padding: 0.4rem 0.85rem;
  background: var(--accent);
  color: var(--primary-deep);
  border-radius: 999px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pgm-stack-card__badge--prioritas { background: var(--primary); color: #fff; }
.pgm-stack-card__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; justify-content: center; gap: 0.875rem;
}
.pgm-stack-card__eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.pgm-stack-card__title {
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 700; line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink); margin: 0;
}
.pgm-stack-card__desc {
  font-size: 0.9375rem; line-height: 1.65;
  color: var(--slate); margin: 0;
}
.pgm-stack-card__more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem; font-weight: 700;
  color: var(--primary); text-decoration: none;
  align-self: flex-start;
}
.pgm-stack-card__more i { transition: transform 0.2s; }
.pgm-stack-card:hover .pgm-stack-card__more i { transform: translateX(4px); }

/* â”€â”€ search input override on cream hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pgm-hero .c-search__input {
  background: #fff;
  border: 1px solid var(--slate-line);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(15,23,42,0.06);
  height: 56px;
}
.pgm-hero .c-search__input:focus { outline: 2px solid var(--primary); outline-offset: 2px; border-color: var(--primary); }
.pgm-hero .c-search__submit {
  background: var(--ink);
  color: #fff;
  height: 42px;
}
.pgm-hero .c-search__submit:hover { background: var(--ink-soft); }
.pgm-hero .c-search__icon { color: var(--slate-soft); }

/* â”€â”€ reduced motion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@@media (prefers-reduced-motion: reduce) {
  .pgm-stack-card { position: static !important; }
  .pgm-scene__orn-orb,
  .pgm-scene__orn-line::before,
  .pgm-scene__orn-dot { animation: none !important; }
}

/* â”€â”€ mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@@media (max-width: 900px) {
  .pgm-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pgm-hero__visual { padding: 0 10px 10px 0; order: -1; }
  .pgm-hero__visual-deco { top: 10px; left: 10px; }
  .pgm-hero__visual-deco::after { display: none; }
  .pgm-hero__col-visual { aspect-ratio: 16/11; max-height: 420px; }
  .pgm-hero__title { max-width: none; }
  .pgm-hero__dots { top: auto; right: auto; bottom: 1rem; left: 50%; transform: translateX(-50%); flex-direction: row; padding: 0.4rem 0.7rem; }
  .pgm-hero__dots button { width: 22px; height: 3px; }
  .pgm-hero__dots button.is-active { width: 40px; height: 3px; }
  .pgm-hero__counter { top: 1rem; right: 1rem; font-size: 0.6875rem; padding: 0.4rem 0.75rem; }

  .pgm-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .pgm-stats__item:nth-child(2) { border-right: 0; }
  .pgm-stats__item:nth-child(3), .pgm-stats__item:nth-child(4) { border-top: 1px solid var(--slate-line); }

  .pgm-scene { flex-direction: column; gap: 0; }
  .pgm-scene--inovasi { flex-direction: column-reverse; }
  .pgm-scene__imgcol, .pgm-scene__text { width: 100%; }
  /* Critical: collapse the 200vh scroll budget â€” it's only needed for desktop sticky */
  .pgm-scene__imgcol { min-height: 0; align-self: auto; }
  .pgm-scene__sticky-img { position: relative; height: 56vh; min-height: 320px; }
  .pgm-scene__text { min-height: auto; padding: clamp(2rem, 6vw, 3rem) 1.5rem; }
  .pgm-scene__bullet-num { flex: 0 0 36px; height: 36px; }

  .pgm-stack-card { grid-template-columns: 1fr; position: static; }
  .pgm-stack-card__media { aspect-ratio: 16/10; min-height: 200px; }
}

/* ============================================================
   DARK UNIFIED THEME â€” every section on rgb(11,11,11)
   ============================================================ */
.pgm-page {
  background: rgb(11, 11, 11);
  color: #E5E5E5;
}

/* All section backgrounds â†’ transparent so .pgm-page #0B0B0B shows */
.pgm-hero,
.pgm-stats,
.pgm-pillars-intro,
.pgm-scene,
.pgm-scene--inovasi,
.pgm-stack-section { background: transparent; }

.pgm-hero::before { display: none; }

/* HERO â€” invert from cream to dark */
.pgm-hero__eyebrow {
  background: rgba(56,189,248,0.08);
  color: #38BDF8;
  border-color: rgba(56,189,248,0.18);
}
.pgm-hero__eyebrow::before { background: var(--accent); }
.pgm-hero__title { color: #fff; }
.pgm-hero__title em { color: var(--accent); }
.pgm-hero__subtitle { color: rgba(255,255,255,0.7); }
.pgm-hero__meta { color: rgba(255,255,255,0.55); }
.pgm-hero__meta i { color: var(--accent); }
.pgm-hero .c-search__input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  box-shadow: none;
}
.pgm-hero .c-search__input::placeholder { color: rgba(255,255,255,0.4); }
.pgm-hero .c-search__input:focus { border-color: var(--accent); outline-color: var(--accent); }
.pgm-hero .c-search__icon { color: rgba(255,255,255,0.45); }
.pgm-hero .c-search__submit { background: #fff; color: rgb(11,11,11); }
.pgm-hero .c-search__submit:hover { background: var(--accent); color: rgb(11,11,11); }

.pgm-btn--primary { background: #fff; color: rgb(11,11,11); box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.pgm-btn--primary:hover { background: var(--accent); color: rgb(11,11,11); }
.pgm-btn--ghost { border-color: rgba(255,255,255,0.18); color: #fff; }
.pgm-btn--ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.32); color: #fff; }

.pgm-hero__col-visual { box-shadow: 0 32px 80px -20px rgba(0,0,0,0.8); }
.pgm-hero__photo-frame { border-color: rgba(255,255,255,0.06); }

/* STATS BAND */
.pgm-stats {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pgm-stats__item { border-right-color: rgba(255,255,255,0.06); }
.pgm-stats__num { color: #fff; }
.pgm-stats__num sup { color: var(--accent); }
.pgm-stats__label { color: rgba(255,255,255,0.6); }

/* SCENE â€” subtle dot pattern + slight bg tint for visual layering */
.pgm-scene::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
}

/* STACK SECTION + cards â†’ dark */
.pgm-stack-eyebrow {
  background: rgba(56,189,248,0.08);
  color: #38BDF8;
  border-color: rgba(56,189,248,0.18);
}
.pgm-stack-title { color: #fff; }
.pgm-stack-title em { color: #38BDF8; }
.pgm-stack-lead { color: rgba(255,255,255,0.65); }

.pgm-stack-card {
  background: #161616;
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 24px 60px -20px rgba(0,0,0,0.6);
}
.pgm-stack-card__index { background: rgba(255,255,255,0.95); color: rgb(11,11,11); }
.pgm-stack-card__eyebrow { color: #38BDF8; }
.pgm-stack-card__title { color: #fff; }
.pgm-stack-card__desc { color: rgba(255,255,255,0.65); }
.pgm-stack-card__more { color: #38BDF8; }

/* SECTION (mini alur / gallery / partners) global overrides on this page */
.pgm-page .section,
.pgm-page .section--tint {
  background: transparent !important;
  color: #fff;
}
.pgm-page .section-label { color: #38BDF8; }
.pgm-page .section-title { color: #fff; }
.pgm-page .section-subtitle { color: rgba(255,255,255,0.65); }

/* Mini alur section padding reduced to close gap to CTA */
.pgm-page > .section,
.pgm-page > .section--tint { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* â•­â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â•®
   â”‚ Cara Mengajukan â€” SCROLLYTELLING pattern                 â”‚
   â”‚ Outer wrapper drives scroll length; inner sticky stays   â”‚
   â”‚ pinned in viewport for the full duration. JS reads outer â”‚
   â”‚ scroll position to switch active step.                   â”‚
   â•°â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â•¯ */
.pgm-alur-scroll {
  position: relative;
  /* 5 steps Ã— ~50vh each = 250vh of scroll â€” feels snappy and quick. */
  height: 250vh;
}
.pgm-alur-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vh, 2rem);
  padding-block: clamp(1.5rem, 3vh, 2.5rem);
  overflow: hidden;
}
.pgm-alur-sticky .section-header { margin-bottom: 0; }
.pgm-alur-sticky .section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }
.pgm-alur-sticky .section-subtitle { margin: 0 auto; }
.pgm-alur-sticky .c-alur { padding-block: 0; }
.pgm-alur-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* Mobile: scrollytelling disabled â€” fall back to natural flow */
@@media (max-width: 991px) {
  .pgm-alur-scroll { height: auto; }
  .pgm-alur-sticky {
    position: static;
    height: auto;
    padding-block: clamp(2.5rem, 5vw, 4rem);
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

/* prefers-reduced-motion: collapse to natural flow */
@@media (prefers-reduced-motion: reduce) {
  .pgm-alur-scroll { height: auto; }
  .pgm-alur-sticky { position: static; height: auto; padding-block: clamp(2.5rem, 5vw, 4rem); }
}

/* Mini alur â€” dark variant */
.pgm-page .c-mini-alur::before {
  background: linear-gradient(90deg, rgba(56,189,248,0.4), rgba(212,176,122,0.4));
}
.pgm-page .c-mini-alur__num {
  background: #161616;
  border: 2px solid rgba(255,255,255,0.15);
  color: #38BDF8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.pgm-page .c-mini-alur__step:hover .c-mini-alur__num {
  border-color: var(--accent);
  color: var(--accent);
}
.pgm-page .c-mini-alur__label { color: #fff; }

.pgm-page .btn-blue {
  background: #fff;
  color: rgb(11,11,11);
  border-color: #fff;
}
.pgm-page .btn-blue:hover { background: var(--accent); color: rgb(11,11,11); border-color: var(--accent); }
.pgm-page .btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.pgm-page .btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.35); color: #fff; }

/* Gallery items â€” darker borders */
.pgm-page .section [style*="border:1px solid var(--clr-border)"] {
  border-color: rgba(255,255,255,0.08) !important;
}

/* Partner logos â€” invert grayscale */
.pgm-page .section--tint a img,
.pgm-page .section--tint > .container img {
  filter: grayscale(60%) invert(0.85) brightness(0.95) !important;
}
.pgm-page .section--tint a:hover img {
  filter: grayscale(0%) invert(0.85) brightness(1) !important;
}
.pgm-page .section--tint span[style*="background:#fff"] {
  background: #161616 !important;
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.1) !important;
}

/* CTA BAND â€” transparent, blends with continuous canvas */
.pgm-page .cta-band {
  background: transparent;
  padding-block: clamp(3rem, 5vw, 4.5rem);
  margin: 0;
  position: relative;
  overflow: hidden;
}
.pgm-page .cta-band::before { background: none !important; }
.pgm-page .cta-band h2 { color: #fff; }
.pgm-page .cta-band .btn-blue {
  background: linear-gradient(135deg, #FFC947 0%, #F9A703 100%);
  color: var(--clr-blue-deeper, #033a5d);
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(249,167,3,0.35);
}
.pgm-page .cta-band .btn-blue:hover {
  background: linear-gradient(135deg, #FFD56B 0%, #FFB833 100%);
  color: var(--clr-blue-deeper, #033a5d);
  box-shadow: 0 12px 32px rgba(249,167,3,0.5);
  transform: translateY(-2px);
}
.pgm-page .cta-band .btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.pgm-page .cta-band .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* CTA â€” enhanced layout */
.pgm-cta__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 720px;
}
.pgm-cta__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  background: rgba(249,167,3,0.18);
  border: 1px solid rgba(249,167,3,0.4);
  color: var(--clr-gold, #f9a703);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pgm-cta__title {
  font-size: clamp(1.875rem, 4vw, 2.75rem) !important;
  font-weight: 800 !important; line-height: 1.15 !important;
  letter-spacing: -0.02em;
  margin: 0 !important;
  max-width: 16ch;
}
.pgm-cta__lead {
  font-size: 1.0625rem; line-height: 1.65;
  color: #fff;
  max-width: 52ch;
  margin: 0 0 0.5rem;
}
.pgm-cta__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* CTA decoration â€” keep clean; remove jarring rings */
.pgm-cta__deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.pgm-cta__ring,
.pgm-cta__ring--2 { display: none; }    /* removed: rings looked like debris */

.pgm-cta__dot {
  position: absolute; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-gold, #f9a703);
  box-shadow: 0 0 14px rgba(249,167,3,0.7);
  animation: pgmOrnDot 4.5s ease-in-out infinite;
  opacity: 0.6;
}
.pgm-cta__dot--a { top: 30%; left: 18%; }
.pgm-cta__dot--b { top: 22%; right: 20%; background: #7DD3FC; box-shadow: 0 0 14px rgba(125,211,252,0.6); animation-delay: 1.5s; }
.pgm-cta__dot--c { bottom: 26%; left: 26%; animation-delay: 3s; }

/* (Old leftover light-mode CTA rules removed â€” see armoured rules at bottom of file) */

/* Kill gap between CTA and footer on this page (both themes) */
html[data-theme="dark"] body { background: rgb(11,11,11); }
body:has(.pgm-page) .site-footer { margin-top: 0; }

/* ============================================================
   LIGHT THEME OVERRIDE â€” html[data-theme="light"]
   User: "light mode bisa pakai background putih saja lah"
   ============================================================ */
html[data-theme="light"] .pgm-page {
  background: linear-gradient(180deg,
    #FAF7F0 0%,
    #FAF7F0 8%,
    #FFFFFF 18%,
    #F4F8FB 32%,
    #FAFAFA 48%,
    #F8F4EB 62%,
    #FFFFFF 78%,
    #F4F8FB 90%,
    #FAF7F0 100%);
  color: #0F172A;
}

/* Hero */
html[data-theme="light"] .pgm-hero::before {
  display: block;
  background-image:
    radial-gradient(circle at 14% 12%, rgba(14,92,138,0.05), transparent 35%),
    radial-gradient(circle at 88% 86%, rgba(201,162,105,0.06), transparent 40%);
}
html[data-theme="light"] .pgm-hero__eyebrow {
  background: rgba(14,92,138,0.07);
  color: #0E5C8A;
  border-color: rgba(14,92,138,0.18);
}
html[data-theme="light"] .pgm-hero__eyebrow::before { background: #C9A269; }
html[data-theme="light"] .pgm-hero__title { color: #0F172A; }
html[data-theme="light"] .pgm-hero__title em { color: #0E5C8A; }
html[data-theme="light"] .pgm-hero__subtitle { color: #475569; }
html[data-theme="light"] .pgm-hero__meta { color: #64748B; }
html[data-theme="light"] .pgm-hero__meta i { color: #A8814A; }
html[data-theme="light"] .pgm-hero .c-search__input {
  background: #fff; border-color: #E2E5EA; color: #0F172A;
  box-shadow: 0 4px 14px rgba(15,23,42,0.06);
}
html[data-theme="light"] .pgm-hero .c-search__input::placeholder { color: rgba(15,23,42,0.4); }
html[data-theme="light"] .pgm-hero .c-search__input:focus { border-color: #0E5C8A; outline-color: #0E5C8A; }
html[data-theme="light"] .pgm-hero .c-search__icon { color: #64748B; }
html[data-theme="light"] .pgm-hero .c-search__submit { background: #0F172A; color: #fff; }
html[data-theme="light"] .pgm-hero .c-search__submit:hover { background: #1E293B; }
html[data-theme="light"] .pgm-btn--primary { background: #0F172A; color: #fff; box-shadow: 0 4px 12px rgba(15,23,42,0.18); }
html[data-theme="light"] .pgm-btn--primary:hover { background: #1E293B; color: #fff; }
html[data-theme="light"] .pgm-btn--ghost { border-color: rgba(15,23,42,0.18); color: #0F172A; }
html[data-theme="light"] .pgm-btn--ghost:hover { background: rgba(15,23,42,0.04); color: #0F172A; border-color: rgba(15,23,42,0.28); }
html[data-theme="light"] .pgm-hero__photo-frame { border-color: rgba(255,255,255,0.08); }
html[data-theme="light"] .pgm-hero__col-visual { box-shadow: 0 32px 80px -32px rgba(15,23,42,0.45), 0 12px 40px -12px rgba(15,23,42,0.18); }

/* Stats */
html[data-theme="light"] .pgm-stats { border-color: #E2E5EA; }
html[data-theme="light"] .pgm-stats__item { border-right-color: #E2E5EA; }
html[data-theme="light"] .pgm-stats__num { color: #0F172A; }
html[data-theme="light"] .pgm-stats__num sup { color: #A8814A; }
html[data-theme="light"] .pgm-stats__label { color: #475569; }

/* Pillars intro */
html[data-theme="light"] .pgm-pillars-intro::before {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(14,92,138,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,162,105,0.07), transparent 40%);
}
html[data-theme="light"] .pgm-pillars-intro__label {
  background: rgba(201,162,105,0.1); color: #A8814A; border-color: rgba(201,162,105,0.3);
}
html[data-theme="light"] .pgm-pillars-intro__title { color: #0F172A; }
html[data-theme="light"] .pgm-pillars-intro__title em { color: #A8814A; }
html[data-theme="light"] .pgm-pillars-intro__lead { color: #475569; }

/* Scenes */
html[data-theme="light"] .pgm-scene { color: #0F172A; }
html[data-theme="light"] .pgm-scene::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(15,23,42,0.05) 1px, transparent 0);
}
html[data-theme="light"] .pgm-scene__chip--blue {
  background: rgba(14,92,138,0.08); color: #0E5C8A; border-color: rgba(14,92,138,0.2);
}
html[data-theme="light"] .pgm-scene__chip--gold {
  background: rgba(201,162,105,0.1); color: #A8814A; border-color: rgba(201,162,105,0.28);
}
html[data-theme="light"] .pgm-scene__h { color: #0F172A; }
html[data-theme="light"] .pgm-scene__lead { color: #475569; }
html[data-theme="light"] .pgm-scene__lead strong { color: #0F172A; }
html[data-theme="light"] .pgm-scene__bullet { border-top-color: rgba(15,23,42,0.08); }
html[data-theme="light"] .pgm-scene__bullet strong { color: #0F172A; }
html[data-theme="light"] .pgm-scene__bullet p { color: #475569; }
html[data-theme="light"] .pgm-scene__bullet-num { background: #0F172A; color: #fff; }
html[data-theme="light"] .pgm-scene__bullet-num--gold { background: #A8814A; color: #fff; }
html[data-theme="light"] .pgm-scene__stat {
  background: rgba(15,23,42,0.04); border-color: rgba(15,23,42,0.08);
}
html[data-theme="light"] .pgm-scene__stat-num { color: #0E5C8A; }
html[data-theme="light"] .pgm-scene__stat--gold .pgm-scene__stat-num { color: #A8814A; }
html[data-theme="light"] .pgm-scene__stat-label { color: #475569; }
html[data-theme="light"] .pgm-scene__dots span { background: rgba(15,23,42,0.18); }

/* Stack */
html[data-theme="light"] .pgm-stack-eyebrow {
  background: rgba(14,92,138,0.06); color: #0E5C8A; border-color: rgba(14,92,138,0.18);
}
html[data-theme="light"] .pgm-stack-title { color: #0F172A; }
html[data-theme="light"] .pgm-stack-title em { color: #0E5C8A; }
html[data-theme="light"] .pgm-stack-lead { color: #475569; }
html[data-theme="light"] .pgm-stack-card {
  background: #fff;
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 20px 50px -22px rgba(15,23,42,0.22);
}
html[data-theme="light"] .pgm-stack-card__index { background: rgba(15,23,42,0.95); color: #fff; }
html[data-theme="light"] .pgm-stack-card__eyebrow { color: #0E5C8A; }
html[data-theme="light"] .pgm-stack-card__title { color: #0F172A; }
html[data-theme="light"] .pgm-stack-card__desc { color: #475569; }
html[data-theme="light"] .pgm-stack-card__more { color: #0E5C8A; }

/* Section, mini-alur, gallery, partners, CTA */
html[data-theme="light"] .pgm-page .section,
html[data-theme="light"] .pgm-page .section--tint { color: #0F172A; }
html[data-theme="light"] .pgm-page .section-label { color: #0E5C8A; }
html[data-theme="light"] .pgm-page .section-title { color: #0F172A; }
html[data-theme="light"] .pgm-page .section-subtitle { color: #475569; }
html[data-theme="light"] .pgm-page .c-mini-alur::before {
  background: linear-gradient(90deg, rgba(14,92,138,0.3), rgba(201,162,105,0.3));
}
html[data-theme="light"] .pgm-page .c-mini-alur__num {
  background: #fff; border: 2px solid rgba(15,23,42,0.12);
  color: #0E5C8A; box-shadow: 0 4px 12px rgba(15,23,42,0.06);
}
html[data-theme="light"] .pgm-page .c-mini-alur__step:hover .c-mini-alur__num {
  border-color: #A8814A; color: #A8814A;
}
html[data-theme="light"] .pgm-page .c-mini-alur__label { color: #0F172A; }
html[data-theme="light"] .pgm-page .btn-blue {
  background: #0E5C8A; color: #fff; border-color: #0E5C8A;
}
html[data-theme="light"] .pgm-page .btn-blue:hover { background: #07314A; border-color: #07314A; color: #fff; }
html[data-theme="light"] .pgm-page .btn-ghost {
  background: transparent; border-color: rgba(15,23,42,0.18); color: #0F172A;
}
html[data-theme="light"] .pgm-page .btn-ghost:hover { background: rgba(15,23,42,0.04); color: #0F172A; }
html[data-theme="light"] .pgm-page .section [style*="border:1px solid"] {
  border-color: rgba(15,23,42,0.08) !important;
}
html[data-theme="light"] .pgm-page .section--tint a img,
html[data-theme="light"] .pgm-page .section--tint > .container img {
  filter: grayscale(60%) !important;
}
html[data-theme="light"] .pgm-page .section--tint a:hover img {
  filter: grayscale(0%) !important;
}
html[data-theme="light"] .pgm-page .section--tint span[style*="background"] {
  background: #fff !important; color: #475569 !important; border-color: #E2E5EA !important;
}
html[data-theme="light"] .pgm-page .cta-band {
  background: transparent;
}
/* ============================================================
   CTA â€” Clean color rules + soft radial backdrop
   Dark: white text. Light: ink text. No ambiguity.
   ============================================================ */
.pgm-cta__inner { position: relative; z-index: 5; }
.pgm-cta__title, .pgm-cta__lead { position: relative; z-index: 5; }

/* Soft radial backdrop â€” matches page bg color, gives text breathing room
   without breaking continuous canvas */
.pgm-cta__inner::before {
  content: '';
  position: absolute;
  inset: -2.5rem -4rem;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 85% at 50% 50%,
    var(--cta-backdrop) 0%,
    transparent 75%);
}
.pgm-page { --cta-backdrop: rgba(11, 11, 11, 0.7); }
html[data-theme="light"] .pgm-page { --cta-backdrop: rgba(250, 247, 240, 0.85); }

/* === DARK MODE CTA === */
html[data-theme="dark"] .pgm-page .cta-band .pgm-cta__title,
html[data-theme="dark"] .pgm-page .cta-band h2 { color: #ffffff !important; }
html[data-theme="dark"] .pgm-page .cta-band .pgm-cta__lead { color: #ffffff !important; opacity: 0.9; }
html[data-theme="dark"] .pgm-page .cta-band .pgm-cta__eyebrow {
  background: rgba(249,167,3,0.2);
  color: #FFC947;
  border-color: rgba(249,167,3,0.45);
}
html[data-theme="dark"] .pgm-page .cta-band .btn-ghost {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}
html[data-theme="dark"] .pgm-page .cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
}

/* === LIGHT MODE CTA === */
html[data-theme="light"] .pgm-page .cta-band .pgm-cta__title,
html[data-theme="light"] .pgm-page .cta-band h2 { color: #0F172A !important; text-shadow: none !important; }
html[data-theme="light"] .pgm-page .cta-band .pgm-cta__lead { color: #0F172A !important; text-shadow: none !important; opacity: 0.82; }
html[data-theme="light"] .pgm-page .cta-band .pgm-cta__eyebrow {
  background: rgba(14,92,138,0.10);
  color: #0E5C8A;
  border-color: rgba(14,92,138,0.28);
}
html[data-theme="light"] .pgm-page .cta-band .btn-ghost {
  background: transparent !important;
  border: 1.5px solid rgba(15, 23, 42, 0.35) !important;
  color: #0F172A !important;
}
html[data-theme="light"] .pgm-page .cta-band .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.06) !important;
  border-color: rgba(15, 23, 42, 0.55) !important;
  color: #0F172A !important;
}
html[data-theme="light"] .pgm-page .cta-band::before {
  background-image:
    radial-gradient(circle at 50% 55%, rgba(249,167,3,0.25), transparent 60%);
  background-size: auto;
}
html[data-theme="light"] .pgm-page .cta-band .btn-blue {
  background: linear-gradient(135deg, #FFC947 0%, #F9A703 100%);
  color: #07314A;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(249,167,3,0.35);
}
html[data-theme="light"] .pgm-page .cta-band .btn-blue:hover {
  background: linear-gradient(135deg, #FFD56B 0%, #FFB833 100%);
  color: #07314A;
  box-shadow: 0 12px 32px rgba(249,167,3,0.5);
}
/* (Old leftover light-mode btn-ghost rules removed â€” see armoured rules earlier) */

/* ============================================================
   Dotnav â€” vertical section nav, right edge, fixed
   ============================================================ */
.pgm-dotnav {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column;
  gap: 0.875rem;
  padding: 0.875rem 0.5rem;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}
html[data-theme="dark"] .pgm-dotnav {
  background: rgba(11,11,11,0.55);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.pgm-dotnav__item {
  position: relative;
  display: flex; align-items: center;
  text-decoration: none;
  padding: 0.25rem;
}
.pgm-dotnav__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15,23,42,0.32);
  transition: all 0.25s var(--ease-out);
  flex-shrink: 0;
}
html[data-theme="dark"] .pgm-dotnav__dot { background: rgba(255,255,255,0.32); }
.pgm-dotnav__item:hover .pgm-dotnav__dot {
  background: var(--clr-blue);
  transform: scale(1.3);
}
.pgm-dotnav__item.is-active .pgm-dotnav__dot {
  background: var(--clr-blue);
  width: 10px; height: 10px;
  box-shadow: 0 0 0 4px rgba(14,92,138,0.18);
}
.pgm-dotnav__label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  background: var(--clr-text-primary);
  color: #fff;
  border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}
html[data-theme="dark"] .pgm-dotnav__label {
  background: rgba(255,255,255,0.95);
  color: rgb(11,11,11);
}
.pgm-dotnav__label::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: inherit;
}
.pgm-dotnav__item:hover .pgm-dotnav__label,
.pgm-dotnav__item:focus-visible .pgm-dotnav__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@@media (max-width: 991px) {
  .pgm-dotnav { display: none; }
}

/* ============================================================
   PAGE-WIDE ORNAMENTS â€” fixed layer behind all sections
   ============================================================ */
.pgm-page { position: relative;
  /* Decorative color tokens derived from brand palette */
  --orn-line:    rgba(6, 122, 193, 0.14);    /* topographic contour â€” brand teal */
  --orn-line-2:  rgba(249, 167, 3, 0.10);    /* topographic contour â€” brand gold */
  --orn-flow-a:  #067ac1;                    /* flow ribbon start */
  --orn-flow-b:  #f9a703;                    /* flow ribbon mid */
  --orn-mesh-a:  rgba(6, 122, 193, 0.06);
  --orn-mesh-b:  rgba(249, 167, 3, 0.05);
}
html[data-theme="dark"] .pgm-page {
  --orn-line:    rgba(125, 211, 252, 0.10);
  --orn-line-2:  rgba(212, 176, 122, 0.08);
  --orn-flow-a:  #38BDF8;
  --orn-flow-b:  #D4B07A;
  --orn-mesh-a:  rgba(56, 189, 248, 0.05);
  --orn-mesh-b:  rgba(212, 176, 122, 0.04);
}
.pgm-ornaments {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;        /* clip ornaments to .pgm-page only â€” no leak into footer */
}

/* Global SVG flow ribbons + topographic contour lines â€”
   spans full .pgm-page height, ties all sections into one canvas */
.pgm-orn-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.95;
}
.pgm-orn-svg .pgm-orn-contour path { stroke-width: 1; fill: none; vector-effect: non-scaling-stroke; }
.pgm-orn-svg .pgm-orn-contour--blue path { stroke: var(--orn-line); }
.pgm-orn-svg .pgm-orn-contour--gold path { stroke: var(--orn-line-2); }
.pgm-orn-svg .pgm-orn-ribbon {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.pgm-orn-svg .pgm-orn-ribbon--main { stroke-dasharray: 4 8; }
.pgm-orn-svg .pgm-orn-ribbon--alt  { stroke-dasharray: 2 10; opacity: 0.55; stroke-width: 1; }
html[data-theme="light"] .pgm-orn-svg { opacity: 1; }

/* Subtle ambient mesh â€” single gradient over whole page */
.pgm-orn-mesh {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 40% at 15% 12%, var(--orn-mesh-a), transparent 65%),
    radial-gradient(ellipse 50% 35% at 88% 28%, var(--orn-mesh-b), transparent 60%),
    radial-gradient(ellipse 60% 30% at 22% 55%, var(--orn-mesh-b), transparent 60%),
    radial-gradient(ellipse 55% 32% at 80% 72%, var(--orn-mesh-a), transparent 60%),
    radial-gradient(ellipse 80% 25% at 50% 95%, var(--orn-mesh-b), transparent 60%);
}
.pgm-page > section,
.pgm-page > div:not(.pgm-ornaments) { position: relative; z-index: 1; }

/* dot grid full-viewport */
.pgm-orn-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
}
html[data-theme="light"] .pgm-orn-grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(14,92,138,0.1) 1px, transparent 0);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 95%);
  opacity: 0.7;
}

/* drift orbs */
.pgm-orn-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.pgm-orn-orb--1 {
  width: 520px; height: 520px;
  top: -120px; right: -140px;
  background: radial-gradient(circle, rgba(56,189,248,0.22), transparent 70%);
  animation: pgmDrift1 24s ease-in-out infinite alternate;
}
.pgm-orn-orb--2 {
  width: 420px; height: 420px;
  top: 40%; left: -160px;
  background: radial-gradient(circle, rgba(212,176,122,0.18), transparent 70%);
  animation: pgmDrift2 28s ease-in-out infinite alternate;
}
.pgm-orn-orb--3 {
  width: 380px; height: 380px;
  bottom: -100px; right: 20%;
  background: radial-gradient(circle, rgba(56,189,248,0.16), transparent 70%);
  animation: pgmDrift3 32s ease-in-out infinite alternate;
}
html[data-theme="light"] .pgm-orn-orb { filter: blur(60px); }
html[data-theme="light"] .pgm-orn-orb--1 { background: radial-gradient(circle, rgba(14,92,138,0.55), transparent 60%); }
html[data-theme="light"] .pgm-orn-orb--2 { background: radial-gradient(circle, rgba(201,162,105,0.6), transparent 60%); }
html[data-theme="light"] .pgm-orn-orb--3 { background: radial-gradient(circle, rgba(14,92,138,0.42), transparent 60%); }
@@keyframes pgmDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 60px) scale(1.15); }
}
@@keyframes pgmDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, -80px) scale(1.2); }
}
@@keyframes pgmDrift3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, -100px) scale(1.1); }
}

/* vertical accent spine + traveling spark */
.pgm-orn-spine {
  position: absolute;
  left: clamp(16px, 3vw, 48px);
  top: 100px; bottom: 60px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(212,176,122,0.18) 12%,
    rgba(212,176,122,0.28) 50%,
    rgba(212,176,122,0.18) 88%,
    transparent 100%);
  overflow: hidden;
}
html[data-theme="light"] .pgm-orn-spine {
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(168,129,74,0.6) 8%,
    rgba(168,129,74,0.95) 50%,
    rgba(168,129,74,0.6) 92%,
    transparent 100%);
}
.pgm-orn-spine__spark {
  position: absolute; top: 0; left: -2px;
  width: 5px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--accent, #D4B07A), transparent);
  filter: blur(2px);
  animation: pgmSpineSpark 8s linear infinite;
}
@@keyframes pgmSpineSpark {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(calc(100vh + 80px)); opacity: 0; }
}

/* mirror spine on right edge (slightly different rhythm) */
.pgm-orn-spine--right {
  left: auto; right: clamp(16px, 3vw, 48px);
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(56,189,248,0.14) 18%,
    rgba(56,189,248,0.24) 50%,
    rgba(56,189,248,0.14) 82%,
    transparent 100%);
}
html[data-theme="light"] .pgm-orn-spine--right {
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(14,92,138,0.55) 14%,
    rgba(14,92,138,0.9) 50%,
    rgba(14,92,138,0.55) 86%,
    transparent 100%);
}
.pgm-orn-spine--right .pgm-orn-spine__spark {
  background: linear-gradient(180deg, transparent, #38BDF8, transparent);
  animation: pgmSpineSpark 11s linear infinite;
  animation-delay: -4s;
}
html[data-theme="light"] .pgm-orn-spine--right .pgm-orn-spine__spark {
  background: linear-gradient(180deg, transparent, #0E5C8A, transparent);
}

/* floating glow dots scattered across viewport */
.pgm-orn-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent, #D4B07A);
  box-shadow: 0 0 12px rgba(212,176,122,0.6);
  animation: pgmOrnDotPulse 5s ease-in-out infinite;
}
.pgm-orn-dot--a { top: 14%; left: 22%; animation-delay: 0s; }
.pgm-orn-dot--b { top: 28%; right: 26%; animation-delay: 1.2s; background: #38BDF8; box-shadow: 0 0 12px rgba(56,189,248,0.6); }
.pgm-orn-dot--c { top: 56%; left: 18%; animation-delay: 2.4s; width: 4px; height: 4px; }
.pgm-orn-dot--d { top: 78%; right: 18%; animation-delay: 3.6s; background: #38BDF8; box-shadow: 0 0 12px rgba(56,189,248,0.6); }
.pgm-orn-dot--e { top: 42%; right: 12%; animation-delay: 4.2s; width: 5px; height: 5px; }
html[data-theme="light"] .pgm-orn-dot {
  width: 10px; height: 10px;
  background: #A8814A;
  box-shadow: 0 0 18px rgba(168,129,74,0.85), 0 0 0 6px rgba(168,129,74,0.15);
}
html[data-theme="light"] .pgm-orn-dot--b,
html[data-theme="light"] .pgm-orn-dot--d {
  background: #0E5C8A;
  box-shadow: 0 0 18px rgba(14,92,138,0.85), 0 0 0 6px rgba(14,92,138,0.15);
}
html[data-theme="light"] .pgm-orn-dot--c { width: 8px; height: 8px; }
html[data-theme="light"] .pgm-orn-dot--e { width: 9px; height: 9px; }
html[data-theme="light"] .pgm-orn-dot--f,
html[data-theme="light"] .pgm-orn-dot--h { background: #0E5C8A; box-shadow: 0 0 18px rgba(14,92,138,0.85), 0 0 0 6px rgba(14,92,138,0.15); }
@@keyframes pgmOrnDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50%      { transform: scale(1.4); opacity: 1; }
}

/* reduce motion */
/* Extra accent dots for visibility â€” spread across full page height */
.pgm-orn-dot--f { top: 8%; right: 8%; animation-delay: 0.6s; }
.pgm-orn-dot--g { top: 36%; left: 7%; animation-delay: 1.8s; }
.pgm-orn-dot--h { top: 65%; right: 7%; animation-delay: 3s; }
.pgm-orn-dot--i { bottom: 8%; left: 22%; animation-delay: 4.5s; }
.pgm-orn-dot--j { top: 25%; left: 38%; animation-delay: 0.3s; }
.pgm-orn-dot--k { top: 48%; right: 32%; animation-delay: 2.1s; }
.pgm-orn-dot--l { top: 82%; left: 44%; animation-delay: 3.9s; }

/* Section bridge â€” subtle vertical lines that flow between sections */
.pgm-orn-bridge {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(180deg,
    transparent 0,
    transparent 8px,
    rgba(212,176,122,0.18) 8px,
    rgba(212,176,122,0.18) 12px);
  transform: translateX(-50%);
  opacity: 0.6;
}
html[data-theme="light"] .pgm-orn-bridge {
  background: repeating-linear-gradient(180deg,
    transparent 0,
    transparent 10px,
    rgba(168,129,74,0.45) 10px,
    rgba(168,129,74,0.45) 14px);
  opacity: 0.7;
}

/* Additional drift orb for middle of page */
.pgm-orn-orb--4 {
  width: 460px; height: 460px;
  top: 50%; left: 35%;
  background: radial-gradient(circle, rgba(212,176,122,0.16), transparent 70%);
  animation: pgmDrift4 26s ease-in-out infinite alternate;
}
.pgm-orn-orb--5 {
  width: 360px; height: 360px;
  top: 75%; right: 30%;
  background: radial-gradient(circle, rgba(56,189,248,0.14), transparent 70%);
  animation: pgmDrift5 30s ease-in-out infinite alternate;
}
html[data-theme="light"] .pgm-orn-orb--4 { background: radial-gradient(circle, rgba(201,162,105,0.55), transparent 60%); }
html[data-theme="light"] .pgm-orn-orb--5 { background: radial-gradient(circle, rgba(14,92,138,0.45), transparent 60%); }
@@keyframes pgmDrift4 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 80px) scale(1.18); }
}
@@keyframes pgmDrift5 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-90px, 60px) scale(1.12); }
}

@@media (prefers-reduced-motion: reduce) {
  .pgm-orn-orb,
  .pgm-orn-spine__spark,
  .pgm-orn-dot { animation: none !important; }
}

@@media (max-width: 768px) {
  .pgm-orn-spine, .pgm-orn-spine--right { display: none; }
  .pgm-orn-orb { filter: blur(80px); }
}
