/* ============================================================
   DISCLAIMER PAGE — reuses FIFAScoring.com's gold/navy theme.
   Identical design tokens & component classes to privacypolicy.css
   so this page feels like a native part of the site.
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #FFD700;
  --gold-light:  #FFE55C;
  --gold-dark:   #C9A000;
  --red:         #CC0000;
  --red-bright:  #FF1A1A;
  --navy:        #001D4A;
  --navy-mid:    #002966;
  --navy-light:  #003580;
  --dark:        #050D1A;
  --darker:      #020810;
  --white:       #FFFFFF;
  --off-white:   #F0F4FF;
  --text-muted:  #8899BB;
  --card-bg:     rgba(0, 30, 80, 0.6);
  --card-border: rgba(255, 215, 0, 0.15);
  --glass:       rgba(0, 20, 60, 0.7);

  --page-padding:    clamp(10px, 4vw, 5%);
  --body-min-margin: 5px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--darker);
  color: var(--white);
  overflow-x: hidden;
  padding: 0 var(--body-min-margin);
  min-width: 320px;
}

img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; }
p { line-height: 1.8; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--gold-light); }

/* ============================================================
   PARTICLES
   ============================================================ */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--page-padding);
  background: rgba(2, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px !important;
  width: auto !important;
  display: inline-block !important;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
  transition: filter 0.2s;
}

.nav-logo-img:hover {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold), var(--white), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--off-white);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.25s;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}

.nav-links a.active {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.08);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
#pp-hero {
  min-height: 62vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 110px clamp(10px, 4vw, 40px) 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,  rgba(0, 50, 150, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 15% 100%, rgba(204, 0, 0, 0.2)   0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 100%, rgba(0, 90, 180, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #020810 0%, #001230 45%, #020810 100%);
  z-index: 1;
}

.hero-pitch-lines {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 59px, rgba(255,255,255,0.5) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.5) 60px);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.6rem, 2vw, 0.78rem);
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.page-word {
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--text-muted);
  letter-spacing: 10px;
  text-transform: uppercase;
}

.page-name {
  font-size: clamp(3rem, 9vw, 6.5rem);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite, fadeUp 0.8s ease forwards 0.4s;
  letter-spacing: 6px;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(0.88rem, 2.2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 26px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.55s;
}

.hero-subtitle strong { color: var(--gold); }

.hero-meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.66rem, 1.8vw, 0.82rem);
  letter-spacing: 2px;
  color: var(--off-white);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-meta-strip .sep { color: var(--text-muted); font-size: 0.7rem; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.05s;
}

.scroll-cue span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 215, 0, 0.35);
  border-radius: 12px;
  position: relative;
}

.scroll-cue span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%  { top: 5px;  opacity: 1; }
  80% { top: 18px; opacity: 0; }
  100%{ top: 5px;  opacity: 0; }
}

/* ============================================================
   TABLE OF CONTENTS BANNER
   ============================================================ */
.toc-banner {
  position: relative;
  z-index: 5;
  background: linear-gradient(135deg,
    rgba(0, 40, 120, 0.3),
    rgba(0, 20, 60, 0.5),
    rgba(0, 40, 120, 0.3));
  border-top:    1px solid rgba(255, 215, 0, 0.15);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  padding: clamp(14px, 3vw, 22px) var(--page-padding);
}

.toc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.toc-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.toc-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.toc-links a:hover {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.06);
}

/* ============================================================
   MAIN CONTENT WRAPPER
   ============================================================ */
#pp-main {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, #020810 0%, #001230 30%, #020810 60%, #00101E 100%);
}

.pp-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) var(--page-padding) clamp(48px, 7vw, 80px);
}

/* ============================================================
   INTRO BLOCK
   ============================================================ */
.pp-intro {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 36px);
  margin-bottom: clamp(40px, 6vw, 64px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pp-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.pp-intro p {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: var(--text-muted);
  line-height: 1.9;
}

/* ============================================================
   PP SECTIONS
   ============================================================ */
.pp-section {
  margin-bottom: clamp(44px, 7vw, 72px);
}

.pp-section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.pp-section-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: rgba(255, 215, 0, 0.18);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 2px;
  margin-top: 2px;
  user-select: none;
}

.pp-section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.58rem, 1.6vw, 0.68rem);
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.pp-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.05;
}

/* ============================================================
   PP CARDS
   ============================================================ */
.pp-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: clamp(22px, 3.5vw, 40px);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

.pp-card p {
  font-size: clamp(0.84rem, 2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.9;
}

.pp-card-spacer { margin-top: 14px; }

.pp-card-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}

.pp-card-lead { margin-bottom: 18px; }

/* ============================================================
   DEFINITIONS / KEY-POINT GRID
   ============================================================ */
.def-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  gap: 12px;
  margin-top: 20px;
}

.def-item {
  background: rgba(0, 20, 60, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}

.def-item:hover { border-color: rgba(255, 215, 0, 0.22); }

.def-term {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.def-body {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   PP LIST
   ============================================================ */
.pp-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-list li {
  font-size: clamp(0.83rem, 2vw, 0.93rem);
  color: var(--text-muted);
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}

.pp-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 3px;
}

.pp-list-detailed li {
  padding: 10px 10px 10px 22px;
  background: rgba(0, 20, 60, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.pp-list-detailed li:hover { border-color: rgba(255, 215, 0, 0.18); }
.pp-list-detailed li strong { color: var(--off-white); }

/* ============================================================
   USE / TOPIC GRID (reused for disclaimer categories)
   ============================================================ */
.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
  gap: 12px;
  margin-top: 20px;
}

.use-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(0, 20, 60, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
  transition: border-color 0.2s;
}

.use-item:hover { border-color: rgba(255, 215, 0, 0.22); }

.use-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.use-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--off-white);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.use-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(0, 40, 120, 0.25);
  border: 1px solid rgba(0, 120, 255, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 16px;
}

.info-box-red {
  background: rgba(204, 0, 0, 0.1);
  border-color: rgba(204, 0, 0, 0.3);
  margin-top: 0;
  margin-bottom: 16px;
}

.info-box-gold {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
}

.info-box-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   DISCLOSURE / DISCLAIMER BLOCKS
   ============================================================ */
.disclosure-block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclosure-block:first-child { padding-top: 0; }
.disclosure-block:last-child  { border-bottom: none; padding-bottom: 0; }

/* ============================================================
   CONTACT CARD
   ============================================================ */
.contact-card { text-align: center; }

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.25);
  transition: all 0.25s;
  text-decoration: none;
}

.contact-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 12px 36px rgba(255, 215, 0, 0.35);
  transform: translateY(-2px);
  color: var(--dark);
}

.contact-url {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.contact-url-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-url a {
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.contact-url a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  position: relative;
  z-index: 5;
  padding: clamp(36px, 6vw, 60px) var(--page-padding) 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.footer-col { display: flex; flex-direction: column; gap: 0; }

.footer-nav-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-nav-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  display: block;
}

.footer-nav a:hover { color: var(--gold); }
.footer-nav a.active { color: var(--gold); }

.footer-brand-col {
  flex: 0 0 auto;
  align-items: flex-start;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
}

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.9;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(136, 153, 187, 0.5);
  letter-spacing: 0.5px;
  text-align: center;
}

.footer-bottom-sep { opacity: 0.3; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .def-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --page-padding: clamp(10px, 4vw, 24px); }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(2, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    flex-direction: column;
    padding: 14px var(--page-padding);
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 6px; font-size: 0.9rem; }

  .toc-inner { gap: 12px; }
  .toc-label { width: 100%; }

  .pp-section-header { gap: 14px; }
  .pp-section-num { font-size: 2rem; }

  .use-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-nav-col { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .footer-bottom-sep { display: none; }
}

@media (max-width: 600px) {
  :root { --page-padding: 12px; }

  #pp-hero { min-height: 55vh; }

  .use-grid { grid-template-columns: 1fr; }
  .def-grid { grid-template-columns: 1fr; }

  .pp-section-header { flex-direction: column; gap: 8px; }
  .pp-section-num { font-size: 1.6rem; margin-top: 0; }

  .contact-cta { gap: 14px; }
  .contact-btn { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .page-name { font-size: 2.8rem; letter-spacing: 3px; }
  .pp-section-title { font-size: 1.3rem; }
  .toc-links a { font-size: 0.62rem; padding: 3px 7px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .contact-btn, .nav-links a, .toc-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}