/* === Service detail page === */
  .detail-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(154,165,181,0.7);
    text-decoration: none;
    margin-bottom: 1.5rem;
  }
  .detail-breadcrumb:hover { color: #e8ecf2; }
  .detail-breadcrumb svg { flex-shrink: 0; }

  .detail-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .detail-pillar {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(232,236,242,0.1);
    background: rgba(31,33,40,0.5);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: rgba(154,165,181,0.85);
  }

  .deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }
  @media (min-width: 768px) {
    .deliverables-grid { grid-template-columns: repeat(4, 1fr); }
  }
  .deliverable-tile {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(232,236,242,0.07);
    background: rgba(31,33,40,0.5);
    transition: border-color 0.25s ease, background 0.25s ease;
  }
  .deliverable-tile:hover {
    border-color: rgba(237,50,134,0.25);
    background: rgba(237,50,134,0.05);
  }
  .deliverable-tile-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
  }
  .deliverable-tile-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e8ecf2;
    display: block;
    margin-bottom: 0.35rem;
  }
  .deliverable-tile-desc {
    font-size: 0.8rem;
    color: rgba(154,165,181,0.8);
    line-height: 1.5;
  }

  .engagement-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
  }
  @media (min-width: 768px) {
    .engagement-detail-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .engagement-detail-card {
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(232,236,242,0.07);
    background: rgba(31,33,40,0.5);
    position: relative;
    transition: border-color 0.25s ease;
  }
  .engagement-detail-card.is-default {
    border-color: rgba(237,50,134,0.35);
    background: rgba(237,50,134,0.06);
  }
  .engagement-detail-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: #ed3286;
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .spotlight-card {
    display: grid;
    gap: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(232,236,242,0.07);
    background: rgba(31,33,40,0.5);
    margin-top: 3rem;
    transition: border-color 0.3s ease;
  }
  .spotlight-card:hover { border-color: rgba(237,50,134,0.25); }
  @media (min-width: 768px) {
    .spotlight-card { grid-template-columns: 1fr 1fr; }
  }
  .spotlight-img-wrap {
    position: relative;
    min-height: 280px;
    overflow: hidden;
  }
  .spotlight-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .spotlight-card:hover .spotlight-img-wrap img { transform: scale(1.04); }
  .spotlight-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237,50,134,0.15) 0%, transparent 60%);
  }
  .spotlight-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .tools-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .tool-pill {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(232,236,242,0.1);
    background: rgba(31,33,40,0.4);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: rgba(154,165,181,0.9);
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  .tool-pill:hover {
    border-color: rgba(56,235,199,0.3);
    color: #38ebc7;
  }

  .spectrum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
  }
  @media (min-width: 768px) {
    .spectrum-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .spectrum-card {
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(232,236,242,0.07);
    background: rgba(31,33,40,0.4);
    transition: border-color 0.25s ease, background 0.25s ease;
  }
  .spectrum-card:hover {
    border-color: rgba(56,235,199,0.25);
    background: rgba(56,235,199,0.04);
  }
  .spectrum-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(56,235,199,0.1);
  }
  .nav-current {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ed3286;
  }

  .focus-section-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 0;
  }
  @media (min-width: 1024px) {
    .focus-section-grid {
      grid-template-columns: 0.42fr 1fr;
      gap: 4rem;
      align-items: start;
    }
  }
  .focus-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .focus-standard-pill {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(56,235,199,0.25);
    background: rgba(56,235,199,0.08);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #38ebc7;
  }
  .focus-standard-pill.is-muted {
    border-color: rgba(232,236,242,0.12);
    background: rgba(31,33,40,0.45);
    color: rgba(154,165,181,0.9);
  }
  .focus-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  @media (min-width: 640px) {
    .focus-features { grid-template-columns: repeat(2, 1fr); }
  }
  .focus-feature {
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(232,236,242,0.07);
    background: rgba(31,33,40,0.45);
    transition: border-color 0.25s ease, background 0.25s ease;
  }
  .focus-feature:hover {
    border-color: rgba(56,235,199,0.22);
    background: rgba(56,235,199,0.04);
  }
  .focus-feature.is-accent:hover {
    border-color: rgba(237,50,134,0.28);
    background: rgba(237,50,134,0.05);
  }
  .focus-feature-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(154,165,181,0.75);
    display: block;
    margin-bottom: 0.5rem;
  }
  .focus-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #e8ecf2;
    margin-bottom: 0.5rem;
  }
  .focus-feature-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(154,165,181,0.9);
  }
  .focus-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .focus-example-pill {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(232,236,242,0.1);
    background: rgba(24,25,29,0.6);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    color: rgba(154,165,181,0.85);
  }
