/* =====================================================
   PhantomGrid — custom.css
   Palette: deep indigo #0a0514 | violet #7c3aed | ghost-white #e8e0ff | muted #7a6fa0
   Design: grid-overlay background, diagonal splits, ghost-card hover
   ===================================================== */

:root {
  --pg-bg:       #0a0514;
  --pg-surface:  #110a22;
  --pg-card:     #160d2a;
  --pg-border:   rgba(124,58,237,.25);
  --pg-violet:   #7c3aed;
  --pg-violet2:  #a855f7;
  --pg-ghost:    #e8e0ff;
  --pg-muted:    #7a6fa0;
  --pg-white:    #f0ecff;
  --pg-radius:   6px;
  --pg-radius-lg:12px;
  --pg-mono:     'Courier New', Courier, monospace;
  --pg-grid-line:rgba(124,58,237,.12);
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--pg-bg);
  color: var(--pg-ghost);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle grid overlay on entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--pg-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--pg-grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

a { color: var(--pg-violet2); text-decoration: none; }
a:hover { color: var(--pg-ghost); }
address { font-style: normal; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pg-bg); }
::-webkit-scrollbar-thumb { background: var(--pg-violet); border-radius: 3px; }

/* ── Navbar ── */
.pg-navbar {
  background: rgba(10,5,20,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pg-border);
  padding: .9rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.pg-brand {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.5px;
  color: var(--pg-white) !important;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pg-brand .brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--pg-violet);
  border-radius: 4px;
  font-size: .65rem;
  font-family: var(--pg-mono);
  color: var(--pg-violet2);
  letter-spacing: 0;
  font-weight: 700;
}

.pg-brand .brand-violet { color: var(--pg-violet2); }

.pg-navbar .nav-link {
  color: var(--pg-muted) !important;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: .4rem .85rem !important;
  border-radius: var(--pg-radius);
  transition: color .2s, background .2s;
}
.pg-navbar .nav-link:hover,
.pg-navbar .nav-link.active { color: var(--pg-ghost) !important; background: rgba(124,58,237,.15); }

.pg-navbar .nav-cta {
  border: 1px solid var(--pg-violet);
  color: var(--pg-violet2) !important;
}
.pg-navbar .nav-cta:hover { background: var(--pg-violet); color: var(--pg-white) !important; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(168,85,247,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO — diagonal split ── */
.pg-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pg-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pg-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.35) saturate(1.4);
}

/* Diagonal overlay */
.pg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10,5,20,.97) 45%, rgba(10,5,20,.3) 100%);
  z-index: 1;
}

.pg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.pg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--pg-mono);
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pg-violet2);
  margin-bottom: 1.25rem;
}
.pg-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--pg-violet2);
}

.pg-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--pg-white);
  margin-bottom: 1.25rem;
  letter-spacing: -1.5px;
}

.pg-hero h1 .hl {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pg-violet2);
}

.pg-hero-lead {
  font-size: 1rem;
  color: var(--pg-muted);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.pg-hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pg-hero-nodes {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.pg-hero-node {
  display: flex;
  flex-direction: column;
}
.pg-hero-node .n {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--pg-mono);
  color: var(--pg-violet2);
  line-height: 1;
}
.pg-hero-node .l {
  font-size: .68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pg-muted);
  margin-top: .2rem;
}

/* ── Buttons ── */
.btn-pg {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: .7rem 1.4rem;
  border-radius: var(--pg-radius);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-pg-solid {
  background: var(--pg-violet);
  color: var(--pg-white);
}
.btn-pg-solid:hover { background: var(--pg-violet2); color: var(--pg-white); transform: translateY(-1px); }

.btn-pg-outline {
  background: transparent;
  color: var(--pg-violet2);
  border: 1px solid var(--pg-violet);
}
.btn-pg-outline:hover { background: rgba(124,58,237,.15); color: var(--pg-ghost); }

/* ── Section labels ── */
.pg-label {
  font-family: var(--pg-mono);
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pg-violet2);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .4rem;
}
.pg-label::before {
  content: '//';
  opacity: .6;
}

.pg-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--pg-white);
  letter-spacing: -1px;
  margin: 0;
}

/* ── Divider bar ── */
.pg-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pg-violet), transparent);
  border: none;
  margin: 0;
}

/* ── FEATURED REVIEW — horizontal card ── */
.pg-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius-lg);
  overflow: hidden;
  background: var(--pg-card);
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, box-shadow .25s;
}
.pg-featured:hover {
  border-color: var(--pg-violet);
  box-shadow: 0 0 32px rgba(124,58,237,.2);
  color: inherit;
}
@media (max-width:767px) {
  .pg-featured { grid-template-columns: 1fr; }
}

.pg-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.pg-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.pg-featured:hover .pg-featured-img img { transform: scale(1.04); }

.pg-featured-score {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--pg-violet);
  color: var(--pg-white);
  font-family: var(--pg-mono);
  font-size: 1.1rem;
  font-weight: 900;
  padding: .35rem .7rem;
  border-radius: var(--pg-radius);
}

.pg-featured-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}

.pg-featured-genre {
  font-family: var(--pg-mono);
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pg-violet2);
}

.pg-featured-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--pg-white);
  letter-spacing: -.5px;
  line-height: 1.25;
  margin: 0;
}

.pg-featured-excerpt {
  font-size: .875rem;
  color: var(--pg-muted);
  line-height: 1.7;
  margin: 0;
}

.pg-featured-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: var(--pg-muted);
  border-top: 1px solid var(--pg-border);
  padding-top: .75rem;
  margin-top: .25rem;
}
.pg-featured-meta strong { color: var(--pg-ghost); }

/* ── Review Cards ── */
.pg-card {
  display: flex;
  flex-direction: column;
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  height: 100%;
}
.pg-card:hover {
  border-color: var(--pg-violet);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124,58,237,.18);
  color: inherit;
}

.pg-card-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.pg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  filter: saturate(1.1);
}
.pg-card:hover .pg-card-img img { transform: scale(1.06); }

.pg-card-genre {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(10,5,20,.85);
  border: 1px solid var(--pg-violet);
  color: var(--pg-violet2);
  font-family: var(--pg-mono);
  font-size: .6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 3px;
}

.pg-card-score {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: var(--pg-violet);
  color: var(--pg-white);
  font-family: var(--pg-mono);
  font-size: .9rem;
  font-weight: 900;
  padding: .25rem .55rem;
  border-radius: var(--pg-radius);
}

.pg-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

.pg-card-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--pg-white);
  letter-spacing: -.3px;
  line-height: 1.3;
}

.pg-card-excerpt {
  font-size: .8rem;
  color: var(--pg-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.pg-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: var(--pg-muted);
  border-top: 1px solid var(--pg-border);
  padding-top: .6rem;
  margin-top: .25rem;
}

.pg-platform {
  background: rgba(124,58,237,.15);
  border: 1px solid var(--pg-border);
  color: var(--pg-violet2);
  font-family: var(--pg-mono);
  font-size: .6rem;
  padding: .15rem .45rem;
  border-radius: 3px;
}

/* ── Filter pills ── */
.pg-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.pg-filter-btn {
  background: transparent;
  border: 1px solid var(--pg-border);
  color: var(--pg-muted);
  font-family: var(--pg-mono);
  font-size: .65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all .2s;
}
.pg-filter-btn:hover,
.pg-filter-btn.active {
  border-color: var(--pg-violet);
  color: var(--pg-violet2);
  background: rgba(124,58,237,.12);
}

/* ── Tournament Events ── */
.pg-event {
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius-lg);
  padding: 1.25rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.pg-event::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pg-violet);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s;
}
.pg-event:hover::before { transform: scaleY(1); }
.pg-event:hover { border-color: var(--pg-violet); box-shadow: 0 4px 20px rgba(124,58,237,.12); }

.pg-event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .6rem;
}

.pg-event-name {
  font-size: .95rem;
  font-weight: 800;
  color: var(--pg-white);
  letter-spacing: -.3px;
  line-height: 1.3;
}

.pg-badge {
  font-family: var(--pg-mono);
  font-size: .58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pg-badge-live { background: rgba(239,68,68,.15); color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.pg-badge-open { background: rgba(124,58,237,.15); color: var(--pg-violet2); border: 1px solid var(--pg-border); }
.pg-badge-closed { background: rgba(100,100,120,.1); color: var(--pg-muted); border: 1px solid var(--pg-border); }

.pg-event-meta {
  font-size: .78rem;
  color: var(--pg-muted);
  margin-bottom: .75rem;
  line-height: 1.6;
}

.pg-event-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pg-event-date {
  font-family: var(--pg-mono);
  font-size: .68rem;
  color: var(--pg-muted);
  letter-spacing: .5px;
}

/* ── Stats bar ── */
.pg-stats {
  background: var(--pg-surface);
  border-top: 1px solid var(--pg-border);
  border-bottom: 1px solid var(--pg-border);
  padding: 2rem 0;
}
.pg-stat { text-align: center; }
.pg-stat .n {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--pg-mono);
  color: var(--pg-violet2);
  line-height: 1;
}
.pg-stat .l {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pg-muted);
  margin-top: .3rem;
}
.pg-stat-div { width: 1px; height: 40px; background: var(--pg-border); }

/* ── Page hero ── */
.pg-page-hero {
  background: var(--pg-surface);
  border-bottom: 1px solid var(--pg-border);
  padding: 4rem 0 2.5rem;
}
.pg-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--pg-white);
  letter-spacing: -1.5px;
  margin: .5rem 0 0;
}

.pg-breadcrumb {
  font-size: .72rem;
  color: var(--pg-muted);
  margin-bottom: .75rem;
}
.pg-breadcrumb a { color: var(--pg-muted); }
.pg-breadcrumb a:hover { color: var(--pg-violet2); }

/* ── CTA section ── */
.pg-cta {
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, transparent 70%);
  pointer-events: none;
}
.pg-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--pg-white);
  letter-spacing: -1px;
  margin-bottom: .75rem;
}
.pg-cta p { color: var(--pg-muted); max-width: 480px; margin: 0 auto 1.75rem; }

/* Newsletter form */
.pg-nl-wrap {
  display: flex;
  gap: .5rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.pg-nl-input {
  flex: 1;
  min-width: 200px;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius);
  color: var(--pg-ghost);
  padding: .65rem 1rem;
  font-size: .85rem;
  outline: none;
  transition: border-color .2s;
}
.pg-nl-input:focus { border-color: var(--pg-violet); }
.pg-nl-input::placeholder { color: var(--pg-muted); }
.pg-nl-success { display: none; font-size: .8rem; color: #86efac; margin-top: .75rem; font-family: var(--pg-mono); }

/* ── Contact form ── */
.pg-input {
  width: 100%;
  background: var(--pg-surface);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius);
  color: var(--pg-ghost);
  padding: .7rem 1rem;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.pg-input:focus { border-color: var(--pg-violet); }
.pg-input::placeholder { color: var(--pg-muted); }
textarea.pg-input { resize: vertical; min-height: 130px; }
select.pg-input option { background: var(--pg-surface); }
.pg-label-form {
  display: block;
  font-family: var(--pg-mono);
  font-size: .65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pg-muted);
  margin-bottom: .4rem;
}
.pg-form-success { display: none; font-size: .8rem; color: #86efac; margin-top: .75rem; font-family: var(--pg-mono); }

/* ── Info items ── */
.pg-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--pg-border);
}
.pg-info-item:last-child { border-bottom: none; }
.pg-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.pg-info-item strong { display: block; font-size: .75rem; color: var(--pg-ghost); font-family: var(--pg-mono); letter-spacing: 1px; text-transform: uppercase; margin-bottom: .2rem; }
.pg-info-item span, .pg-info-item address { font-size: .82rem; color: var(--pg-muted); }

/* ── Team cards ── */
.pg-team-card {
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.pg-team-card:hover { border-color: var(--pg-violet); transform: translateY(-3px); }
.pg-team-avatar {
  width: 56px;
  height: 56px;
  border: 2px solid var(--pg-violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  background: rgba(124,58,237,.1);
}
.pg-team-card h6 { font-size: .95rem; font-weight: 800; color: var(--pg-white); margin-bottom: .2rem; }
.pg-team-role { font-family: var(--pg-mono); font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pg-violet2); margin-bottom: .75rem; }
.pg-team-card p { font-size: .8rem; color: var(--pg-muted); line-height: 1.65; margin: 0; }

/* ── Footer ── */
.pg-footer {
  background: var(--pg-surface);
  border-top: 1px solid var(--pg-border);
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
}
.pg-footer-brand {
  font-size: 1rem;
  font-weight: 900;
  color: var(--pg-white) !important;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  text-decoration: none;
}
.pg-footer p { font-size: .82rem; color: var(--pg-muted); margin-bottom: .75rem; }
.pg-footer address { font-size: .8rem; color: var(--pg-muted); line-height: 1.7; }
.pg-footer address a { color: var(--pg-violet2); }
.pg-footer h6 {
  font-family: var(--pg-mono);
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pg-muted);
  margin-bottom: 1rem;
}
.pg-footer ul { list-style: none; padding: 0; margin: 0; }
.pg-footer ul li { margin-bottom: .5rem; }
.pg-footer ul li a { font-size: .82rem; color: var(--pg-muted); transition: color .2s; }
.pg-footer ul li a:hover { color: var(--pg-violet2); }
.pg-footer-bottom {
  border-top: 1px solid var(--pg-border);
  padding-top: 1.25rem;
  margin-top: 2rem;
  font-size: .72rem;
  color: var(--pg-muted);
}
.pg-footer-bottom a { color: var(--pg-muted); }
.pg-footer-bottom a:hover { color: var(--pg-violet2); }

/* ── Cookie banner ── */
.pg-cookie {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 560px);
  background: var(--pg-card);
  border: 1px solid var(--pg-violet);
  border-radius: var(--pg-radius-lg);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.pg-cookie p { font-size: .8rem; color: var(--pg-muted); margin: 0; flex: 1; }
.pg-cookie a { color: var(--pg-violet2); }
.pg-cookie-btns { display: flex; gap: .5rem; flex-shrink: 0; }

/* ── Policy pages ── */
.pg-policy {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.pg-policy .last-updated {
  font-family: var(--pg-mono);
  font-size: .72rem;
  color: var(--pg-muted);
  margin-bottom: 2rem;
}
.pg-policy h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pg-white);
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--pg-border);
}
.pg-policy h3 { font-size: .95rem; font-weight: 700; color: var(--pg-ghost); margin: 1.25rem 0 .5rem; }
.pg-policy p, .pg-policy li { font-size: .875rem; color: var(--pg-muted); line-height: 1.8; }
.pg-policy ul { padding-left: 1.25rem; }
.pg-policy li { margin-bottom: .4rem; }
.pg-policy table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .82rem; }
.pg-policy th { text-align: left; padding: .6rem .9rem; background: var(--pg-surface); color: var(--pg-ghost); font-weight: 700; border: 1px solid var(--pg-border); }
.pg-policy td { padding: .6rem .9rem; color: var(--pg-muted); border: 1px solid var(--pg-border); }
.pg-policy code { background: var(--pg-surface); border: 1px solid var(--pg-border); color: var(--pg-violet2); padding: .1rem .35rem; border-radius: 3px; font-size: .8rem; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .pg-navbar .navbar-collapse { background: rgba(10,5,20,.97); padding: 1rem; border-radius: var(--pg-radius-lg); margin-top: .5rem; border: 1px solid var(--pg-border); }
}
@media (max-width: 575px) {
  .pg-hero { min-height: 80vh; }
  .pg-cta { padding: 2rem 1.25rem; }
}
