/* ================================================
   PALAVRA DA VIDA — Design System
   Way TV · Dark theme · Cyan-Purple palette
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300&display=swap');

/* ── Variables ──────────────────────────────── */
:root {
  --bg:        #09090f;
  --bg-2:      #111118;
  --bg-3:      #1a1a24;
  --border:    rgba(255,255,255,0.08);

  /* Way TV brand colours */
  --accent:       #00c8f0;
  --accent-2:     #7c5cfc;
  --accent-mid:   #3d9ef8;
  --grad:         linear-gradient(135deg, #00c8f0 0%, #3d9ef8 40%, #7c5cfc 100%);
  --glow:         rgba(0, 200, 240, 0.12);
  --glow-violet:  rgba(124, 92, 252, 0.12);

  /* aliases so existing code still works */
  --gold:      #00c8f0;
  --gold-dim:  #005f72;
  --gold-glow: rgba(0, 200, 240, 0.12);

  --text:      #e6e6f0;
  --text-dim:  #7a7a96;
  --text-muted:#3a3a52;
  --white:     #ffffff;
  --red:       #e0334c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-verse:   'Cormorant Garamond', Georgia, serif;

  --nav-h:    72px;
  --max-w:    1140px;
  --radius:   4px;
  --radius-lg:10px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Navigation ──────────────────────────────── */
.pdv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(9,9,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.pdv-nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Way TV logo block */
.pdv-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.pdv-logo__waytv {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.pdv-logo__divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

.pdv-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.pdv-logo__top {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pdv-logo__main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.pdv-logo__main span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pdv-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.pdv-nav__link {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: var(--radius);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.pdv-nav__link:hover,
.pdv-nav__link.active {
  color: var(--accent);
  background: var(--glow);
}

.pdv-nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.pdv-nav__social {
  display: flex;
  gap: 10px;
}
.pdv-nav__social a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 0.75rem;
  transition: border-color 0.2s, color 0.2s;
}
.pdv-nav__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pdv-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.pdv-hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s;
  transform-origin: center;
}
/* Hamburger → X when open */
.pdv-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.pdv-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pdv-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.pdv-hamburger.open { border-color: var(--accent); }

/* ── Mobile overlay ─────────────────────────── */
.pdv-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
}
.pdv-mobile-overlay.show { display: block; }

/* ── Mobile Menu ─────────────────────────────── */
.pdv-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(0,200,240,0.15);
  z-index: 999;
  padding: 12px 16px 20px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.pdv-mobile-menu.open { display: flex; }
.pdv-mobile-menu a {
  padding: 11px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  border-left: 2px solid transparent;
}
.pdv-mobile-menu a:hover {
  color: var(--accent);
  background: var(--glow);
  border-left-color: var(--accent);
}
.pdv-mobile-menu .pdv-mobile-menu__divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.pdv-mobile-menu__social {
  display: flex;
  gap: 10px;
  padding: 10px 16px 0;
}
.pdv-mobile-menu__social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  border-left: 1px solid var(--border);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0;
  flex-shrink: 0;
}

/* ── Hero ────────────────────────────────────── */
.pdv-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pdv-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 30% 50%, rgba(0,200,240,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(124,92,252,0.07) 0%, transparent 70%);
}

.pdv-hero__bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  opacity: 0.35;
}

.pdv-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  position: relative;
}
.pdv-hero__eyebrow::before,
.pdv-hero__eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--grad);
  flex-shrink: 0;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.pdv-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  position: relative;
  margin-bottom: 8px;
}
.pdv-hero__title em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pdv-hero__subtitle {
  font-family: var(--font-verse);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 32px;
  position: relative;
}

.pdv-hero__verse {
  font-family: var(--font-verse);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.6;
  position: relative;
  border: 1px solid rgba(0,200,240,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  background: rgba(0,200,240,0.03);
}
.pdv-hero__verse cite {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pdv-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.pdv-hero__scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(var(--text-muted), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Intro Section ───────────────────────────── */
.pdv-intro {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 60px;
  align-items: center;
}

.pdv-intro__divider {
  background: linear-gradient(to bottom, transparent, rgba(0,200,240,0.3), transparent);
  height: 100%;
  min-height: 120px;
}

.pdv-intro__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.pdv-intro__text {
  font-family: var(--font-verse);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.pdv-intro__stat {
  text-align: center;
}
.pdv-intro__stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pdv-intro__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Section Header ──────────────────────────── */
.pdv-section-header {
  text-align: center;
  padding: 0 24px 48px;
}
.pdv-section-header__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.pdv-section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

/* ── Months Grid ─────────────────────────────── */
.pdv-months {
  padding: 80px 24px;
  background: var(--bg-2);
}

.pdv-months__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pdv-months__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pdv-month-card {
  background: var(--bg-2);
  padding: 32px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.pdv-month-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.pdv-month-card:hover {
  background: var(--bg-3);
}
.pdv-month-card:hover::before { transform: scaleX(1); }

.pdv-month-card__num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.pdv-month-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.25s;
}
.pdv-month-card:hover .pdv-month-card__name {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pdv-month-card__info {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pdv-month-card__arrow {
  margin-top: 8px;
  font-size: 1rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.pdv-month-card:hover .pdv-month-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Page Hero (month pages) ─────────────────── */
.pdv-page-hero {
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.pdv-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(0,200,240,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(124,92,252,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pdv-page-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.pdv-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.pdv-page-hero__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.pdv-page-hero__breadcrumb a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.pdv-page-hero__breadcrumb a:hover { color: var(--accent); }

/* ── Month Navigation ────────────────────────── */
.pdv-month-nav {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.pdv-month-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdv-month-nav__inner::-webkit-scrollbar { display: none; }

.pdv-month-nav__btn {
  padding: 14px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.pdv-month-nav__btn:hover { color: var(--text); }
.pdv-month-nav__btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Week Section ────────────────────────────── */
.pdv-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.pdv-week {
  margin-bottom: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s;
}
.pdv-week:hover { border-color: rgba(0,200,240,0.2); }

.pdv-week__header {
  background: var(--bg-2);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.pdv-week__header:hover { background: var(--bg-3); }

.pdv-week__badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--glow);
  border: 1px solid rgba(0,200,240,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  flex-shrink: 0;
}

.pdv-week__meta {
  flex: 1;
}
.pdv-week__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.pdv-week__days {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.pdv-week__chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.6rem;
  transition: transform 0.3s var(--ease), border-color 0.2s;
  flex-shrink: 0;
}
.pdv-week.open .pdv-week__chevron {
  transform: rotate(180deg);
  border-color: rgba(0,200,240,0.4);
  color: var(--accent);
}

.pdv-week__body {
  display: none;
  padding: 0 28px 28px;
  background: var(--bg);
}
.pdv-week.open .pdv-week__body { display: block; }

/* ── Readings List ───────────────────────────── */
.pdv-readings {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pdv-reading {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.pdv-reading:last-child { border-bottom: none; }
.pdv-reading:hover { background: var(--bg-2); }

.pdv-reading__day {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 42px;
}
.pdv-reading__refs {
  font-family: var(--font-verse);
  font-size: 0.95rem;
  color: var(--text);
}

/* ── Devotional ──────────────────────────────── */
.pdv-devotional {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-dim);
  font-family: var(--font-verse);
}
.pdv-devotional + .pdv-devotional { margin-top: 16px; }

/* ── Video ───────────────────────────────────── */
.pdv-video-wrap {
  margin: 24px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pdv-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* ── Two-col layout ──────────────────────────── */
.pdv-week-body-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .pdv-week-body-grid { grid-template-columns: 1fr; }
}

/* ── Promises section ────────────────────────── */
.pdv-promises {
  margin-top: 32px;
}
.pdv-promises__title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pdv-promise-category {
  margin-bottom: 20px;
}
.pdv-promise-category__name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.pdv-promise-item {
  padding: 12px 16px;
  border-left: 2px solid rgba(0,200,240,0.35);
  margin-bottom: 8px;
  background: rgba(0,200,240,0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pdv-promise-item__ref {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.pdv-promise-item__text {
  font-family: var(--font-verse);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Separator ───────────────────────────────── */
.pdv-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,200,240,0.3), rgba(124,92,252,0.3), transparent);
  margin: 40px 0;
}

/* ── Footer ──────────────────────────────────── */
.pdv-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.pdv-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.pdv-footer__brand {}
.pdv-footer__brand-waytv {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
}
.pdv-footer__brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pdv-footer__brand-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pdv-footer__brand-title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pdv-footer__brand-verse {
  font-family: var(--font-verse);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

.pdv-footer__heading {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pdv-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdv-footer__links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.pdv-footer__links a:hover { color: var(--accent); }

.pdv-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pdv-footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-size: 0.8rem;
}
.pdv-footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--glow);
}

.pdv-footer__copy {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}
.pdv-footer__copy a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.pdv-footer__copy a:hover { color: var(--accent); }

/* ── Cookie Banner ───────────────────────────── */
.pdv-cookie {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 380px;
  background: var(--bg-3);
  border: 1px solid rgba(0,200,240,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
}
.pdv-cookie.show { display: block; }
.pdv-cookie p {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.5;
}
.pdv-cookie__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pdv-cookie__btn {
  padding: 9px 20px;
  background: var(--grad);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s;
}
.pdv-cookie__btn:hover { opacity: 0.85; }
.pdv-cookie__privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.pdv-cookie__privacy:hover { color: var(--accent); }

/* ── Utilities ───────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .pdv-months__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .pdv-nav__links { display: none; }
  .pdv-hamburger { display: flex; }
  .pdv-nav__social { display: none; }
  .pdv-months__grid { grid-template-columns: repeat(2, 1fr); }
  .pdv-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .pdv-intro__divider { display: none; }
  .pdv-footer__inner { grid-template-columns: 1fr; }
  .pdv-footer__copy { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .pdv-months__grid { grid-template-columns: repeat(2, 1fr); }
  .pdv-month-card { padding: 20px 16px; }
  .pdv-logo__waytv { height: 34px; }
}

/* ── Animations ──────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s var(--ease) both;
}
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }
