/* ═══════════════════════════════════════════
   PROJECT DETAIL PAGE
   ═══════════════════════════════════════════ */

/* ── Scroll-reveal animation ── */
.pd-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.pd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Back link ── */
.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  margin-bottom: 2rem;
}
.pd-hero__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: inherit;
}

.pd-hero__video-wrapper iframe {
    position: absolute;
    inset: 0; /* shorthand for top/right/bottom/left = 0 */
    width: 100%;
    height: 100%;
    border: 0;
}

/* If your original image had specific styling, mirror it here */
.pd-hero__img {
    /* Your existing image styles - remove or keep as fallback */
}
.pd-back:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-bright);
  border-color: rgba(255, 255, 255, 0.2);
}

.pd-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

body.light .pd-back {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
  color: #374151;
}

body.light .pd-back:hover {
  background: rgba(0, 0, 0, 0.07);
  color: #0f172a;
}

/* ── Page wrapper ── */
.pd-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 24px 80px;
}

@media (max-width: 768px) {
  .pd-wrapper {
    padding: 120px 16px 60px;
  }
}

/* ── Hero banner ── */
.pd-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  border: 1px solid var(--border-glass);
}

.pd-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content below hero image */
.pd-hero__below {
  margin-bottom: 3rem;
}

.pd-hero__below .pd-hero__title {
  margin-top: 0.75rem;
}

.pd-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 680px;
  margin-top: 0.5rem;
}

body.light .pd-hero__subtitle {
  color: #4b5563;
}

/* Add inside your existing .pd-lightbox block */
.pd-lightbox__img {
  transform: scale(0.92);
  /* already set — just confirm this exists */
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* SVG wrap mirrors lbImg animation */
#lbSvgWrap {
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 575px) {
  .pd-hero {
    aspect-ratio: 16 / 9;
  }
}

/* ── Tags ── */
.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.pd-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

.pd-tag__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-400);
}

body.light .pd-tag {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: #374151;
}

/* ── Hero title ── */
.pd-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-bright);
}

body.light .pd-hero__title {
  color: #0f172a;
}

/* ── Content layout ── */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 960px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Glass card mixin ── */
.pd-glass {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  transition: border-color 0.3s;
}

.pd-glass:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

body.light .pd-glass {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light .pd-glass:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

/* ── Section titles ── */
.pd-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pd-section-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}

body.light .pd-section-badge {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
  color: #6b7280;
}

.pd-section-title {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-bright);
  margin-bottom: 1.25rem;
}

.pd-section-title .gradient-word {
  background: linear-gradient(135deg, var(--blue-400), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light .pd-section-title {
  color: #0f172a;
}

/* ── Description block ── */
.pd-description {
  margin-bottom: 3rem;
}

.pd-description p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.pd-description p:last-child {
  margin-bottom: 0;
}

body.light .pd-description p {
  color: #4b5563;
}

/* ── Key highlights ── */
.pd-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.pd-highlight {
  padding: 1.5rem;
  text-align: center;
}

.pd-highlight__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(168, 85, 247, 0.15));
  color: var(--blue-400);
}

.pd-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.pd-highlight__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

body.light .pd-highlight__value {
  color: #0f172a;
}

.pd-highlight__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   SCREENSHOTS GALLERY
   ═══════════════════════════════════════════ */
.pd-gallery {
  margin-bottom: 3rem;
}

.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 575px) {
  .pd-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.pd-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.3s, box-shadow 0.3s;
}

.pd-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

body.light .pd-gallery-item:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pd-gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

.pd-gallery-item:hover img {
  transform: scale(1.04);
}

.pd-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.pd-gallery-item:hover .pd-gallery-item__overlay {
  opacity: 1;
}

.pd-gallery-item__zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: scale(0.7);
  transition: transform 0.3s var(--ease-out-expo);
}

.pd-gallery-item:hover .pd-gallery-item__zoom {
  transform: scale(1);
}

.pd-gallery-item__zoom svg {
  width: 20px;
  height: 20px;
}

.pd-gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.pd-gallery-item:hover .pd-gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   FLOWCHARTS / DIAGRAMS
   ═══════════════════════════════════════════ */
.pd-diagrams {
  margin-bottom: 3rem;
}

.pd-diagram-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pd-diagram-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.3s;
}

.pd-diagram-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

body.light .pd-diagram-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

.pd-diagram-card__thumb {
  flex-shrink: 0;
  width: 180px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.pd-diagram-card__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

.pd-diagram-card:hover .pd-diagram-card__thumb img {
  transform: scale(1.06);
}

.pd-diagram-card__info {
  flex: 1;
  min-width: 0;
}

.pd-diagram-card__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple-light);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

body.light .pd-diagram-card__label {
  background: rgba(168, 85, 247, 0.08);
  color: #7c3aed;
}

.pd-diagram-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.35rem;
}

body.light .pd-diagram-card__title {
  color: #0f172a;
}

.pd-diagram-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 575px) {
  .pd-diagram-card {
    flex-direction: column;
    gap: 1rem;
  }

  .pd-diagram-card__thumb {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════ */
.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
}

@media (max-width: 960px) {
  .pd-sidebar {
    position: static;
  }
}

/* Metadata card */
.pd-meta-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pd-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pd-meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--blue-400);
  flex-shrink: 0;
}

body.light .pd-meta-icon {
  background: rgba(0, 0, 0, 0.04);
  color: var(--blue-500);
}

.pd-meta-icon svg {
  width: 16px;
  height: 16px;
}

.pd-meta-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}

.pd-meta-value {
  font-size: 0.875rem;
  color: var(--text-bright);
  font-weight: 500;
}

body.light .pd-meta-value {
  color: #0f172a;
}

/* Tech stack card */
.pd-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-tech-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-body);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.pd-tech-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-bright);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

body.light .pd-tech-pill {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
  color: #374151;
}

/* CTA buttons */
.pd-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pd-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--purple));
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
}

.pd-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
  color: #fff;
}

.pd-btn-primary svg {
  width: 16px;
  height: 16px;
}

.pd-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  background: transparent;
  border: 1px solid var(--border-glass);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.pd-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-bright);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.pd-btn-outline svg {
  width: 16px;
  height: 16px;
}

body.light .pd-btn-outline {
  border-color: rgba(0, 0, 0, 0.12);
  color: #374151;
}

body.light .pd-btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #0f172a;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.pd-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.pd-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out-expo);
}

.pd-lightbox.is-active .pd-lightbox__img {
  transform: scale(1);
}

.pd-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.pd-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.pd-lightbox__close svg {
  width: 20px;
  height: 20px;
}

.pd-lightbox__caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  white-space: nowrap;
}

/* Nav arrows */
.pd-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.pd-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.08);
}

.pd-lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.pd-lightbox__prev {
  left: 24px;
}

.pd-lightbox__next {
  right: 24px;
}

/* ── Related projects ── */
.pd-related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-glass);
}

body.light .pd-related {
  border-color: rgba(0, 0, 0, 0.08);
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.pd-related-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}

.pd-related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

body.light .pd-related-card {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light .pd-related-card:hover {
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pd-related-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

.pd-related-card:hover .pd-related-card__img {
  transform: scale(1.05);
}

.pd-related-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.pd-related-card__tag {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-400);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.pd-related-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.35rem;
}

body.light .pd-related-card__title {
  color: #0f172a;
}

.pd-related-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pd-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pd-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
  margin: 2.5rem 0;
}

/* ── Stagger delays ── */
.pd-reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.pd-reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.pd-reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.pd-reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

.pd-reveal[data-delay="5"] {
  transition-delay: 0.4s;
}

.pd-reveal[data-delay="6"] {
  transition-delay: 0.48s;
}

/* ── Timeline / Progress section ── */
.pd-timeline {
  margin-bottom: 3rem;
}

.pd-timeline-list {
  position: relative;
  padding-left: 28px;
}

.pd-timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-400), var(--purple-light));
  border-radius: 2px;
  opacity: 0.3;
}

.pd-timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.pd-timeline-item:last-child {
  padding-bottom: 0;
}

.pd-timeline-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--blue-400);
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.3);
}

body.light .pd-timeline-item::before {
  background: var(--bg-light);
}

.pd-timeline-phase {
  font-size: 0.6875rem;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pd-timeline-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.2rem;
}

body.light .pd-timeline-title {
  color: #0f172a;
}

.pd-timeline-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}