/* ══════════════════════════════════════════
   PALORAH V4 — Projekte Hub
   ══════════════════════════════════════════ */

/* ── HERO ────────────────────────────────── */
.phub-hero {
  min-height: 82vh;
  padding-top: calc(var(--nav-height) + var(--nav-top) + clamp(5rem, 9vw, 8rem));
  padding-bottom: clamp(4.5rem, 9vw, 7.5rem);
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.phub-hero > .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.phub-hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.042;
  z-index: 1;
}

/* Warm gold glow bottom-left (like main hero) */
.phub-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 0% 100%, rgba(212, 78, 24, 0.13) 0%, transparent 60%);
  z-index: 0;
}

/* Secondary champagne glow center-right */
.phub-hero__glow-2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 45% 50% at 85% 30%, rgba(201,169,110,0.07) 0%, transparent 65%);
  z-index: 0;
}

.phub-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 8.5vw, 9.5rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

/* Italic accent word in gold — Cormorant italic is stunning at large sizes */
.phub-hero__heading-em {
  font-style: italic;
  color: var(--color-accent);
}

.phub-hero__rule {
  width: min(520px, 72%);
  height: 1px;
  background: linear-gradient(to right, #D44E18 0%, #B05228 35%, #C49E1A 70%, transparent 100%);
}

.phub-hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 54ch;
}

.phub-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.25rem;
}

.phub-hero__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.5);
  flex-shrink: 0;
}

.phub-hero__sep {
  color: rgba(255, 255, 255, 0.18);
}

/* ── CATEGORIES ─────────────────────────── */
.phub-cats {
  background: var(--color-surface);
  padding: clamp(3rem, 5.5vw, 5rem) 0;
  position: relative;
}

.phub-cats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, #D44E18 20%, #B05228 50%, #C49E1A 80%, transparent 100%);
}

.phub-cats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

/* Vertical divider between columns */
.phub-cats__grid::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-border) 15%, var(--color-border) 85%, transparent 100%);
  pointer-events: none;
}

.phub-cat-item {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem) 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.phub-cat-item:last-child {
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
  padding-right: 0;
}

.phub-cat-item:nth-child(1) .phub-cat__num { color: #D44E18; }
.phub-cat-item:nth-child(2) .phub-cat__num { color: #B05228; }

.phub-cat__num {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.phub-cat__name {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.phub-cat__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  flex: 1;
  margin: 0;
  max-width: 44ch;
}

/* Actual filter button */
.phub-cat__btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  background: transparent;
  border: 1px solid rgba(var(--color-accent-rgb), 0.3);
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.phub-cat__btn.is-active {
  background: rgba(var(--color-accent-rgb), 0.1);
  border-color: var(--color-accent);
}

@media (hover: hover) {
  .phub-cat__btn:not(.phub-cat__btn--soon):hover {
    background: rgba(var(--color-accent-rgb), 0.08);
    border-color: rgba(var(--color-accent-rgb), 0.6);
  }
}

.phub-cat__btn--soon {
  color: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.1);
  cursor: default;
}

/* ── WORK / GRID ─────────────────────────── */
.phub-work {
  background: var(--color-surface);
  padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(5rem, 10vw, 8rem);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

/* Stagger reveals */
.hub-card:nth-child(2).reveal { transition-delay: 100ms; }
.hub-card:nth-child(3).reveal { transition-delay: 200ms; }
.hub-card:nth-child(4).reveal { transition-delay: 300ms; }

/* ── PROJECT CARD ────────────────────────── */
.hub-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: border-color 250ms var(--ease);
}

.hub-card.is-hidden { display: none; }

@media (hover: hover) {
  .hub-card:hover {
    border-color: rgba(var(--color-accent-rgb), 0.25);
  }
}

.hub-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.hub-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.hub-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.hub-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 11, 0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background 300ms var(--ease);
}

.hub-card__cta {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}

@media (hover: hover) {
  .hub-card:hover .hub-card__img     { transform: scale(1.04); }
  .hub-card:hover .hub-card__overlay { background: rgba(14, 12, 11, 0.55); }
  .hub-card:hover .hub-card__cta     { opacity: 1; transform: none; }
}

.hub-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hub-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hub-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.8;
}

.hub-card__niche {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.hub-card__title {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-family: var(--font-heading);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hub-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Brand color top accents */
.hub-card--fitness  { border-top: 3px solid #D44E18; }
.hub-card--gastro   { border-top: 3px solid #B05228; }
.hub-card--handwerk { border-top: 3px solid #C49E1A; }
.hub-card--praxis   { border-top: 3px solid #4E8FC8; }
.hub-card--barber   { border-top: 3px solid #C8902F; }
.hub-card--saskia   { border-top: 3px solid #9E7BB5; }
.hub-card--valtrion { border-top: 3px solid #8478D4; }

/* ── EMPTY STATE ─────────────────────────── */
.hub-empty {
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5rem) 2rem;
}

.hub-empty__text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.hub-empty__sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.26);
  margin-bottom: 2rem;
}

.hub-empty__reset {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid rgba(var(--color-accent-rgb), 0.25);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}

@media (hover: hover) {
  .hub-empty__reset:hover {
    background: rgba(var(--color-accent-rgb), 0.14);
    border-color: rgba(var(--color-accent-rgb), 0.4);
  }
}

/* ── METRICS (Dashboard Card) ──────────── */
.phub-metrics {
  background: var(--color-surface);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.5rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.phub-metrics::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, #D44E18 20%, #B05228 50%, #C49E1A 80%, transparent 100%);
}

.phub-metrics__waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  z-index: 1;
}

.phub-metrics__waves svg {
  width: 100%;
  height: 100%;
}

.phub-metrics .container {
  position: relative;
  z-index: 2;
}

.phub-metrics__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.phub-metrics__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.phub-metrics__em {
  font-style: italic;
  color: var(--color-accent);
}

/* ── Dashboard card ── */
.phub-dash {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

/* Browser chrome bar */
.phub-dash__chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.018);
}

.phub-dash__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.phub-dash__dot--r { background: rgba(255, 95,  87,  0.55); }
.phub-dash__dot--y { background: rgba(255, 189, 46,  0.55); }
.phub-dash__dot--g { background: rgba(39,  201, 63,  0.55); }

.phub-dash__chrome-title {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-left: 0.875rem;
}

/* Two-panel body: rings | divider | bars */
.phub-dash__body {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr;
  align-items: center;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(2rem, 4vw, 3.5rem);
}

/* Left — 2×2 ring grid */
.phub-dash__rings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2.25rem) clamp(0.875rem, 2vw, 1.75rem);
  justify-items: center;
}

.phub-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
}

.phub-metric__ring-wrap {
  position: relative;
  width:  clamp(88px, 9vw, 108px);
  height: clamp(88px, 9vw, 108px);
}

.phub-metric__ring {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}

.phub-metric__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 5;
}

.phub-metric__fill {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 314.16;
  stroke-dashoffset: 314.16;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phub-dash__rings .phub-metric:nth-child(1) .phub-metric__fill { stroke: #D44E18; }
.phub-dash__rings .phub-metric:nth-child(2) .phub-metric__fill { stroke: #B05228; }
.phub-dash__rings .phub-metric:nth-child(3) .phub-metric__fill { stroke: #C49E1A; }
.phub-dash__rings .phub-metric:nth-child(4) .phub-metric__fill { stroke: var(--color-accent); }

.phub-dash__rings .phub-metric:nth-child(2) .phub-metric__fill { transition-delay: 120ms; }
.phub-dash__rings .phub-metric:nth-child(3) .phub-metric__fill { transition-delay: 240ms; }
.phub-dash__rings .phub-metric:nth-child(4) .phub-metric__fill { transition-delay: 360ms; }

.phub-metric__score {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.phub-metric__label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.05em;
}

/* Panel divider */
.phub-dash__divider {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom,
    transparent 0%, var(--color-border) 15%, var(--color-border) 85%, transparent 100%);
  margin: 0 clamp(2rem, 3.5vw, 3rem);
  flex-shrink: 0;
}

/* Right — bar chart */
.phub-dash__bars {
  display: flex;
  flex-direction: column;
}

.phub-dash__bars-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.125rem;
}

.phub-bar {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.phub-dash__bars > .phub-bar:nth-child(5) { border-bottom: none; }

.phub-bar__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.phub-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phub-bar__name {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phub-bar__track {
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  overflow: hidden;
}

.phub-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--bar-color);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.phub-bar__score {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.03em;
  min-width: 2.5ch;
  text-align: right;
}

/* Axis tick labels beneath the bars */
.phub-bar__axis {
  display: flex;
  justify-content: space-between;
  padding-top: 0.625rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: 0.04em;
}

/* Card footer */
.phub-dash__footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.phub-dash__footer-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

/* ── Responsive ─────────────── */
@media (prefers-reduced-motion: reduce) {
  .phub-metric__fill { transition: none; }
  .phub-bar__fill    { transition: none; }
}

@media (max-width: 960px) {
  .phub-dash__body {
    grid-template-columns: 1fr;
    padding: clamp(1.75rem, 3vw, 2.5rem);
  }
  .phub-dash__divider {
    width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border) 15%, var(--color-border) 85%, transparent);
    margin: clamp(1.75rem, 3vw, 2.5rem) 0;
  }
  .phub-dash__rings {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .phub-dash__rings { grid-template-columns: repeat(2, 1fr); }
  .phub-bar { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
  .phub-bar__track { grid-column: 1 / -1; }
  .phub-bar__axis  { display: none; }
  .phub-dash__footer { flex-wrap: wrap; gap: 0.5rem; }
}

/* ── VALUES ──────────────────────────────── */
.phub-values {
  background: var(--color-primary);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  position: relative;
  overflow: hidden;
}

.phub-values::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, #D44E18 20%, #B05228 50%, #C49E1A 80%, transparent 100%);
}

.phub-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.phub-value {
  padding: 0 clamp(1.5rem, 2.5vw, 2.5rem);
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phub-value:first-child {
  border-left: none;
  padding-left: 0;
}

.phub-value__num {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.phub-value:nth-child(1) .phub-value__num { color: #D44E18; }
.phub-value:nth-child(2) .phub-value__num { color: #B05228; }
.phub-value:nth-child(3) .phub-value__num { color: #C49E1A; }

.phub-value__name {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.phub-value__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.72;
}

/* ── CTA ─────────────────────────────────── */
.phub-cta {
  background: var(--color-surface);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.phub-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, #D44E18 20%, #B05228 50%, #C49E1A 80%, transparent 100%);
}

.phub-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.phub-cta__rings {
  position: absolute;
  width: clamp(400px, 60vw, 760px);
  height: clamp(400px, 60vw, 760px);
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.07);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.phub-cta__rings::before {
  content: '';
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.05);
}

.phub-cta__rings::after {
  content: '';
  position: absolute;
  inset: -70px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.04);
}

.phub-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.phub-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-top: 0.5rem;
}

.phub-cta__sub {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 50ch;
  line-height: 1.65;
}

.phub-cta__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .phub-cats__grid { grid-template-columns: 1fr; }
  .phub-cats__grid::before { display: none; }
  .phub-cat-item { padding: clamp(1.5rem, 3vw, 2rem) 0; border-top: 1px solid var(--color-border); }
  .phub-cat-item:first-child { border-top: none; padding-top: 0; }
  .phub-cat-item:last-child { padding-left: 0; }

  .hub-grid { grid-template-columns: 1fr; }

  .phub-values__grid { grid-template-columns: 1fr; }
  .phub-value {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: clamp(1.5rem, 3vw, 2rem) 0;
  }
  .phub-value:first-child { border-top: none; padding-top: 0; }

  .phub-cta__actions { flex-direction: column; align-items: stretch; }
}
