/* ============================================================
   PlayBaze BE — Main Stylesheet
   Brand: yellow #FED100 · teal #017E80 · dark #101D2C
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@1,700;1,800;1,900&family=Barlow:wght@400;500;600;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:          #101D2C;
  --c-surface:     #162234;
  --c-surface-2:   #1C2B40;
  --c-yellow:      #FED100;
  --c-yellow-dim:  rgba(254,209,0,0.12);
  --c-teal:        #017E80;
  --c-teal-dim:    rgba(1,126,128,0.12);
  --c-text:        #FFFFFF;
  --c-text-muted:  #8A9BB0;
  --c-border:      rgba(255,255,255,0.07);
  --c-border-2:    rgba(255,255,255,0.13);
  --radius:        8px;
  --radius-lg:     14px;
  --max-w:         980px;
  --font-head:     'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:     'Barlow', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-teal); text-decoration: none; }
a:hover { color: var(--c-yellow); }

img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.5rem; }
li + li { margin-top: 0.35rem; }

/* ---- Container ---- */
.pb-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER ---- */
.pb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16,29,44,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.pb-header .pb-container {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

/* Logo */
.pb-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.pb-logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.pb-footer .pb-logo-img {
  height: 80px;
}

/* Nav */
.pb-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.pb-nav a {
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.pb-nav a:hover,
.pb-nav a.active { color: var(--c-text); background: var(--c-surface-2); }

/* Header CTA */
.pb-header-cta { display: flex; gap: 8px; margin-left: auto; }

/* Buttons */
.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.pb-btn-primary {
  background: var(--c-yellow);
  color: #101D2C;
}
.pb-btn-primary:hover { background: #ffe040; color: #101D2C; }
.pb-btn-ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-2);
}
.pb-btn-ghost:hover { border-color: var(--c-text); background: var(--c-surface); color: var(--c-text); }
.pb-btn-teal { background: var(--c-teal); color: #101D2C; }
.pb-btn-teal:hover { background: #01a5a8; color: #101D2C; }

/* Hamburger */
.pb-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

/* ---- HERO ---- */
.pb-hero {
  background: linear-gradient(135deg, #131F30 0%, #101D2C 60%, #141E2C 100%);
  border-bottom: 1px solid var(--c-border);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.pb-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(1,126,128,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pb-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(254,209,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pb-hero-inner { position: relative; z-index: 1; }

.pb-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-yellow-dim);
  border: 1px solid rgba(254,209,0,0.25);
  color: var(--c-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pb-hero h1 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 16px;
}

.pb-hero h1 em {
  font-style: inherit;
  color: var(--c-yellow);
}

.pb-hero-meta {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.pb-hero-meta span { display: flex; align-items: center; gap: 5px; }

/* ---- AGE BADGE ---- */
.pb-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--c-yellow);
  color: #101D2C;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- LAYOUT ---- */
.pb-layout {
  padding: 48px 0 72px;
}

/* ---- SECTION ---- */
.pb-section {
  margin-bottom: 48px;
}

.pb-section h2 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--c-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-yellow);
  display: inline-block;
  line-height: 1.2;
}

.pb-section h3 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--c-text);
  margin: 28px 0 12px;
}

.pb-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 20px 0 8px;
}

.pb-section p {
  color: var(--c-text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.pb-section p strong,
.pb-section li strong { color: var(--c-text); }

.pb-section ul { margin-bottom: 14px; }
.pb-section ul li { color: var(--c-text-muted); }

.pb-section ol { margin-bottom: 14px; }
.pb-section ol li { color: var(--c-text-muted); }

/* ---- TABLES ---- */
.pb-table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border-2);
}

.pb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pb-table thead th {
  background: linear-gradient(90deg, #141E2E, var(--c-surface-2));
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 16px;
  text-align: left;
  white-space: nowrap;
}

.pb-table tbody td {
  padding: 12px 16px;
  border-top: 1px solid var(--c-border);
  color: var(--c-text-muted);
  vertical-align: top;
}

.pb-table tbody td:first-child {
  color: var(--c-text);
  font-weight: 600;
}

.pb-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.pb-table tbody tr:hover td { background: var(--c-surface); }

/* ---- NOTICE BOXES ---- */
.pb-notice {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

.pb-notice-warning {
  background: rgba(254,209,0,0.07);
  border-left: 3px solid var(--c-yellow);
  color: var(--c-text-muted);
}
.pb-notice-warning strong { color: var(--c-yellow); font-style: normal; }

.pb-notice-info {
  background: var(--c-teal-dim);
  border-left: 3px solid var(--c-teal);
  color: var(--c-text-muted);
}
.pb-notice-info strong { color: var(--c-teal); font-style: normal; }

/* ---- PROS CONS ---- */
.pb-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 600px) { .pb-pros-cons { grid-template-columns: 1fr; } }

.pb-pros, .pb-cons {
  background: var(--c-surface);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
}
.pb-pros { border-top: 2px solid var(--c-teal); }
.pb-cons { border-top: 2px solid #e84040; }

.pb-pros h4 { color: var(--c-teal); margin-top: 0; margin-bottom: 12px; }
.pb-cons h4 { color: #e84040; margin-top: 0; margin-bottom: 12px; }

.pb-pros ul li::marker { color: var(--c-teal); }
.pb-cons ul li::marker { color: #e84040; }

/* ---- STEPS ---- */
.pb-steps { list-style: none; padding: 0; margin: 16px 0 24px; counter-reset: steps; }
.pb-steps li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.pb-steps li:last-child { border-bottom: none; }
.pb-steps li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--c-yellow);
  color: #101D2C;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- FAQ Accordion ---- */
.pb-faq { margin: 20px 0; }
.pb-faq-item { border-bottom: 1px solid var(--c-border); }
.pb-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.2s;
}
.pb-faq-q:hover { color: var(--c-yellow); }
.pb-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--c-yellow);
  transition: transform 0.25s ease;
}
.pb-faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.pb-faq-a {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  padding-bottom: 16px;
  line-height: 1.75;
}
.pb-faq-a[hidden] { display: none !important; }

/* ---- SCORE TABLE ---- */
.pb-score-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.pb-score-label { flex: 1; font-weight: 600; font-size: 0.92rem; }
.pb-score-bar-wrap { flex: 2; background: var(--c-surface-2); border-radius: 4px; height: 6px; }
.pb-score-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--c-teal), var(--c-yellow)); }
.pb-score-val { min-width: 48px; text-align: right; font-weight: 700; color: var(--c-yellow); font-size: 0.92rem; }

/* ---- CARD / INFO TABLE ---- */
.pb-info-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 20px 0 28px;
}

/* ---- LEGAL PLACEHOLDER ---- */
.pb-legal-placeholder {
  text-align: center;
  padding: 80px 20px;
  color: var(--c-text-muted);
}
.pb-legal-placeholder h2 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  color: var(--c-yellow);
  margin-bottom: 16px;
  display: block;
  border: none;
  padding: 0;
}

/* ---- FOOTER ---- */
.pb-footer {
  background: #0B1520;
  border-top: 1px solid var(--c-border-2);
  padding: 48px 0 32px;
  margin-top: 40px;
}

.pb-footer-top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pb-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.pb-footer-nav a {
  color: var(--c-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  transition: all 0.2s;
  text-decoration: none;
}
.pb-footer-nav a:hover { border-color: var(--c-yellow); color: var(--c-yellow); }

.pb-footer-hr { border: none; border-top: 1px solid var(--c-border); margin: 0 0 28px; }

.pb-footer-disclaimer {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.8;
}
.pb-footer-disclaimer p { margin-bottom: 8px; }
.pb-footer-disclaimer a { color: var(--c-teal); }
.pb-footer-disclaimer a:hover { color: var(--c-yellow); }
.pb-footer-copy {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  opacity: 0.7;
}

.pb-footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pb-footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--c-text-muted);
}
.pb-footer-badge-age {
  background: var(--c-yellow);
  color: #101D2C;
  font-size: 0.82rem;
  border-color: var(--c-yellow);
}

/* ---- REVIEW META ---- */
.pb-review-meta {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.pb-review-meta strong { color: var(--c-text); }

/* ---- OVERALL SCORE ---- */
.pb-total-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-yellow-dim);
  border: 1px solid rgba(254,209,0,0.3);
  border-radius: var(--radius);
  padding: 10px 20px;
  margin: 16px 0;
}
.pb-total-score-num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  color: var(--c-yellow);
  line-height: 1;
}
.pb-total-score-label { font-size: 0.82rem; color: var(--c-text-muted); }

/* ---- MOBILE NAV ---- */
.pb-nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 12px 20px 16px;
  gap: 4px;
}
.pb-nav-mobile.open { display: flex; }
.pb-nav-mobile a {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pb-nav-mobile a:hover { background: var(--c-surface-2); color: var(--c-text); }
.pb-nav-mobile .pb-btn { width: 100%; text-align: center; margin-top: 4px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .pb-nav { display: none; }
  .pb-header-cta { display: none; }
  .pb-hamburger { display: block; }

  .pb-hero { padding: 36px 0 32px; }
  .pb-hero h1 { font-size: 1.8rem; }

  .pb-layout { padding: 32px 0 48px; }
  .pb-section h2 { font-size: 1.3rem; }

  .pb-footer-top { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .pb-table thead th, .pb-table tbody td { padding: 10px 12px; font-size: 0.82rem; }
}

/* ---- BANNERS ---- */
.pb-banner {
  position: relative;
  border: 1px solid rgba(254,209,0,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
  min-height: 440px;
}
.pb-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--c-yellow);
  border-radius: 4px 0 0 4px;
  z-index: 3;
}
.pb-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(16,29,44,0.95) 0%, rgba(16,29,44,0.4) 45%, transparent 70%),
    linear-gradient(to right, rgba(16,29,44,0.85) 0%, rgba(16,29,44,0.3) 50%, transparent 75%);
  z-index: 1;
}
.pb-banner-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pb-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pb-banner-content {
  position: relative;
  z-index: 2;
  width: 55%;
  min-height: 440px;
  padding: 32px 32px 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pb-banner-tag {
  color: var(--c-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pb-banner-title {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 10px;
}
.pb-banner-title em {
  color: var(--c-yellow);
  font-style: italic;
}
.pb-banner-body {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 20px;
  background: rgba(254,209,0,0.13);
  border-left: 3px solid rgba(254,209,0,0.7);
  padding: 9px 14px;
  border-radius: 0 6px 6px 0;
}
.pb-banner-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pb-btn-store {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.pb-btn-store svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .pb-banner { min-height: 390px; }
  .pb-banner-content { width: 100%; padding: 22px 22px 28px 30px; min-height: 390px; }
  .pb-banner::after { background: linear-gradient(to top, rgba(16,29,44,0.97) 0%, rgba(16,29,44,0.5) 50%, transparent 80%), linear-gradient(to right, rgba(16,29,44,0.7) 0%, transparent 60%); }
  .pb-banner::before { width: 100%; height: 4px; right: 0; bottom: auto; border-radius: 0; }
  .pb-banner-title { font-size: 1.4rem; }
}

/* ---- Footer enlarged + hero background image ---- */
.pb-footer { padding: 80px 0 56px; margin-top: 56px; }
.pb-footer .pb-logo-img { height: 104px; }
.pb-footer-top { gap: 56px; margin-bottom: 40px; }
.pb-footer-nav a { font-size: 0.9rem; padding: 7px 15px; }
.pb-footer-disclaimer { font-size: 0.88rem; line-height: 1.9; }
.pb-footer-copy { font-size: 0.84rem; margin-top: 26px; }
.pb-footer-badge { font-size: 0.78rem; padding: 5px 12px; }
@media (max-width: 768px) {
  .pb-footer { padding: 56px 0 40px; }
  .pb-footer .pb-logo-img { height: 84px; }
}
.pb-hero { position: relative; overflow: hidden; }
.pb-hero-inner { position: relative; z-index: 1; }
.pb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(7px);
  opacity: 0.30;
  transform: scale(1.1);
  pointer-events: none;
}

/* ===== Rich hero + stat tiles (colorful landing) ===== */
.pb-hero-rich { padding: 0; min-height: 460px; display: flex; align-items: center; }
.pb-hero-media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center right; background-repeat: no-repeat;
}
.pb-hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16,29,44,0.97) 0%, rgba(16,29,44,0.9) 30%, rgba(16,29,44,0.45) 60%, rgba(16,29,44,0.12) 100%),
    linear-gradient(0deg, rgba(11,21,32,0.75) 0%, transparent 45%);
}
.pb-hero-slash {
  position: absolute; left: 0; bottom: -1px; z-index: 2; pointer-events: none;
  width: 62%; height: 12px; background: var(--c-yellow);
  clip-path: polygon(0 0, 100% 0, calc(100% - 46px) 100%, 0 100%);
}
.pb-hero-rich .pb-hero-inner { position: relative; z-index: 3; width: 100%; }
.pb-hero-copy { max-width: 580px; padding: 48px 0; }
.pb-hero-copy .pb-hero-tag { margin-bottom: 18px; }
.pb-hero-sub { color: #d3ddeb; font-size: 1.02rem; line-height: 1.65; margin: 6px 0 24px; max-width: 500px; }
.pb-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.pb-btn-lg { padding: 14px 32px; font-size: 0.95rem; }
.pb-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--c-border-2);
  color: var(--c-text); font-size: 0.8rem; font-weight: 600;
  padding: 8px 15px; border-radius: 999px;
}
.pb-pill .pb-age-badge { width: 24px; height: 24px; font-size: 0.62rem; }

.pb-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 4px 0 44px; }
.pb-stat {
  background: linear-gradient(165deg, var(--c-surface-2), var(--c-surface));
  border: 1px solid var(--c-border-2); border-radius: var(--radius-lg);
  padding: 22px 16px; text-align: center; position: relative; overflow: hidden;
}
.pb-stat::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--c-yellow); }
.pb-stat-num { display: block; font-family: var(--font-head); font-style: italic; font-weight: 900; font-size: 2rem; color: var(--c-yellow); line-height: 1; }
.pb-stat-label { display: block; margin-top: 9px; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--c-text-muted); }

@media (max-width: 760px) {
  .pb-hero-rich { min-height: 0; }
  .pb-hero-media { background-position: 78% center; opacity: 0.5; }
  .pb-hero-veil { background: linear-gradient(0deg, rgba(16,29,44,0.96) 25%, rgba(16,29,44,0.7) 100%); }
  .pb-hero-copy { max-width: 100%; padding: 34px 0 40px; }
  .pb-hero-sub { max-width: 100%; }
  .pb-stats { grid-template-columns: repeat(2, 1fr); }
}
