/* ══════════════════════════════════════════════════════════════
   PoderDelPlacer — Design System
   Taste-skill: DESIGN_VARIANCE=8, MOTION_INTENSITY=6, VISUAL_DENSITY=4
   Font: Outfit (fontshare) | Palette: Deep black + wine accent
   ══════════════════════════════════════════════════════════════ */

:root {
  --bg:           #0b0b0f;
  --bg-surface:   #12121a;
  --bg-elevated:  #1a1a26;
  --border:       rgba(255, 255, 255, 0.06);
  --border-accent: rgba(255, 255, 255, 0.12);
  --text-primary: #e5e7eb;
  --text-secondary: #9ca3af;
  --text-muted:   #6b7280;
  --accent:       #8b2252;
  --accent-light: #a83268;
  --accent-dim:   rgba(139, 34, 82, 0.08);
  --accent-glow:  rgba(139, 34, 82, 0.15);
  --green:        #4ade80;
  --green-dim:    rgba(74, 222, 128, 0.06);
  --warn:         #f59e0b;
  --warn-dim:     rgba(245, 158, 11, 0.06);
  --red:          #ef4444;
  --red-dim:      rgba(239, 68, 68, 0.06);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --max-w:        1200px;
  --font:         'Outfit', system-ui, -apple-system, sans-serif;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(11, 11, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav-logo .accent { color: var(--accent-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  width: 28px; height: 28px;
}
.nav-toggle svg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(11, 11, 15, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:active { transform: scale(0.98) translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-light); }
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-light); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 60ch;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: min(100dvh, 900px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: calc(64px + 2rem);
  padding-bottom: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--accent-light); }
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  background: var(--bg-surface);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent-light); }

/* Hero visual — abstract stat blocks */
.hero-visual { position: relative; }
.hero-grid {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  position: relative;
  margin-left: auto;
}
.hero-grid-cell {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
  transition: border-color 0.4s;
}
.hero-grid-cell:hover { border-color: var(--border-accent); }
.hero-grid-cell:nth-child(1) { width: 55%; height: 44%; top: 5%; left: 0; }
.hero-grid-cell:nth-child(2) { width: 40%; height: 34%; top: 0; right: 0; background: var(--accent-dim); border-color: rgba(139, 34, 82, 0.15); }
.hero-grid-cell:nth-child(3) { width: 58%; height: 40%; bottom: 8%; right: 0; }
.hero-grid-cell:nth-child(4) { width: 38%; height: 30%; bottom: 12%; left: 3%; background: var(--green-dim); border-color: rgba(74, 222, 128, 0.12); }

.grid-data {
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.grid-data-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.grid-data-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.grid-data-value.wine { color: var(--accent-light); }
.grid-data-value.green { color: var(--green); }
.grid-data-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Ambient glow behind grid */
.hero-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-glow-wine { background: var(--accent); top: 20%; left: 10%; }
.hero-glow-blue { background: #3b82f6; bottom: 10%; right: 10%; opacity: 0.15; }

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(64px + 1.5rem);
    padding-bottom: 2rem;
    gap: 1.5rem;
  }
  .hero-visual { order: -1; }
  .hero-grid { max-width: 280px; margin: 0 auto; aspect-ratio: 1.1; }
  .hero h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-glow { width: 180px; height: 180px; }
  .grid-data { padding: 0.75rem; }
  .grid-data-value { font-size: 1rem; }
  .grid-data-label { font-size: 0.5625rem; }
  .grid-data-sub { font-size: 0.625rem; }
  .hero-grid { max-width: 260px; }
  .hero-grid-cell:nth-child(4) { width: 42%; }
}

/* ── PROBLEM SECTION ───────────────────────────────────────── */
.problem {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.problem-stat {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.problem-stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

/* ── LEARN SECTION (what you'll learn) ─────────────────────── */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.learn-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.learn-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.learn-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.learn-card-icon svg {
  width: 20px; height: 20px;
  color: var(--accent-light);
  stroke-width: 1.8;
  fill: none;
  stroke: currentColor;
}
.learn-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.learn-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .learn-grid { grid-template-columns: 1fr; }
}

/* ── CREDIBILITY ───────────────────────────────────────────── */
.credibility {
  border-top: 1px solid var(--border);
}
.cred-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.cred-text p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 58ch;
}
.cred-text p:last-child { margin-bottom: 0; }
.cred-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cred-stat-item {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}
.cred-stat-item .value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-light);
}
.cred-stat-item .label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .cred-content { grid-template-columns: 1fr; }
  .cred-stats { flex-direction: row; flex-wrap: wrap; }
  .cred-stat-item { flex: 1; min-width: 140px; }
}

/* ── GUIDE PREVIEW ─────────────────────────────────────────── */
.preview {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.preview-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}
.preview-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.preview-item .step-num {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.preview-visual {
  position: relative;
}
.preview-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.preview-card-line {
  height: 10px;
  border-radius: 5px;
  background: var(--border-accent);
  margin-bottom: 0.75rem;
}
.preview-card-line:nth-child(2) { width: 80%; }
.preview-card-line:nth-child(3) { width: 60%; }
.preview-card-line:nth-child(4) { width: 90%; background: var(--accent-dim); }
.preview-card-line:nth-child(5) { width: 45%; }
@media (max-width: 768px) {
  .preview-content { grid-template-columns: 1fr; }
  .preview-visual { order: -1; }
}

/* ── PRODUCTS SECTION ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.product-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  transition: border-color 0.3s;
}
.product-card:hover { border-color: var(--border-accent); }
.product-type {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}
.product-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.product-card .btn { width: 100%; justify-content: center; font-size: 0.8125rem; padding: 0.75rem 1rem; }
.affiliate-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ── NEWSLETTER ────────────────────────────────────────────── */
.newsletter {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-accent);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--accent); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-form .btn { white-space: nowrap; }
.form-msg {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  min-height: 1.5em;
}
.form-msg.success { color: var(--green); }
.form-msg.error { color: var(--red); }
@media (max-width: 640px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 70ch;
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── GUIDE HERO ────────────────────────────────────────────── */
.guide-hero {
  padding-top: calc(64px + 3rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.guide-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.guide-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.guide-meta-item svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* ── GUIDE BODY ────────────────────────────────────────────── */
.guide-body {
  padding: clamp(2rem, 4vw, 4rem) 0;
}
.guide-body .container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .guide-body .container { grid-template-columns: 1fr; gap: 2rem; }
  .guide-sidebar { order: 99; position: static !important; }
  .sidebar-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .guide-hero { padding-top: calc(64px + 2rem); }
  .guide-article h2 { font-size: 1.25rem; margin-top: 2rem; padding-top: 1.5rem; }
  .guide-article h3 { font-size: 1rem; }
  .callout { padding: 1rem; font-size: 0.875rem; }
}

/* ── GUIDE ARTICLE ─────────────────────────────────────────── */
.guide-article {
  max-width: 65ch;
}
.guide-article h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.guide-article h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.guide-article h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.guide-article p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.guide-article strong {
  color: var(--text-primary);
  font-weight: 600;
}
.guide-article ul, .guide-article ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}
.guide-article li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.375rem;
  list-style: disc;
}
.guide-article ol li { list-style: decimal; }

/* Callout boxes */
.callout {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.callout-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.callout-title svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.callout-warn {
  background: var(--warn-dim);
  border: 1px solid rgba(245, 158, 11, 0.15);
}
.callout-warn .callout-title { color: var(--warn); }
.callout-info {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
}
.callout-info .callout-title { color: #60a5fa; }
.callout-success {
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.12);
}
.callout-success .callout-title { color: var(--green); }

/* ── GUIDE SIDEBAR ─────────────────────────────────────────── */
.guide-sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
}
.sidebar-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sidebar-toc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar-toc a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.5;
  display: block;
}
.sidebar-toc a:hover { color: var(--accent-light); }
.sidebar-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(139, 34, 82, 0.2);
  border-radius: var(--radius-lg);
  background: var(--accent-dim);
}
.sidebar-cta h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sidebar-cta p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ── CHECKLIST ─────────────────────────────────────────────── */
.checklist {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  margin: 2rem 0;
}
.checklist h3 {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}
.checklist-items {
  padding-left: 0;
}
.checklist-items li {
  list-style: none !important;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.checklist-items li:last-child { border-bottom: none; }
.check-box {
  width: 20px; height: 20px;
  border-radius: 4px;
  border: 2px solid var(--border-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── DISCLAIMER PAGE ───────────────────────────────────────── */
.disclaimer-page {
  padding-top: calc(64px + 3rem);
}
.disclaimer-page h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.disclaimer-page h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.disclaimer-page p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 65ch;
}

/* ── GRAIN OVERLAY ─────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.025;
  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%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── PRINT ─────────────────────────────────────────────────── */
@media print {
  .nav, .footer, .newsletter, .guide-sidebar { display: none; }
  body { background: white; color: black; }
  .guide-body .container { grid-template-columns: 1fr; }
  .checklist { border: 1px solid #ccc; }
  .check-box { border-color: #666; }
  body::after { display: none; }
}
