/* ===========================================
   REVEAL.JS BOTANICAL THEME
   Adapted from slides.css for Reveal.js v5.
   Designed at canvas 1280x800. Reveal autoscales.
   =========================================== */

:root {
    --bg-primary: #0f1210;
    --bg-secondary: #1a1f1c;
    --bg-card: #161b18;
    --text-primary: #ece8e1;
    --text-secondary: #7a8077;
    --accent: #a8c686;
    --accent-warm: #d4a574;
    --accent-glow: rgba(168, 198, 134, 0.15);
    --accent-warm-glow: rgba(212, 165, 116, 0.12);
    --border: rgba(168, 198, 134, 0.1);
    --border-warm: rgba(212, 165, 116, 0.1);

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===========================================
   BASE — page + reveal container
   Reveal.js v5 wraps the page in <html class="reveal-viewport">
   which ships a white background. Override with our dark theme.
   =========================================== */
html, body,
html.reveal-viewport,
.reveal-viewport {
    background: var(--bg-primary) !important;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

.reveal {
    font-family: var(--font-body);
    font-size: 28px;
    color: var(--text-primary);
    background: var(--bg-primary);
}

.reveal .backgrounds,
.reveal .slide-background-content {
    background: transparent;
}

.reveal .slides {
    text-align: left;
}

.reveal .slides section,
.reveal .slides section > section {
    padding: 1.5rem 2rem;
    line-height: 1.5;
    box-sizing: border-box;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.reveal .slides section.center {
    text-align: center;
    align-items: center;
}

/* ===========================================
   ORGANIC BACKGROUND
   =========================================== */
.organic-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(168, 198, 134, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 165, 116, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(168, 198, 134, 0.04) 0%, transparent 40%);
}

.shape {
    position: fixed;
    z-index: 0;
    opacity: 0.04;
    pointer-events: none;
    animation: drift 25s ease-in-out infinite;
}
.shape-1 {
    width: 450px; height: 450px;
    border: 1px solid var(--accent);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    top: 5%; right: -5%;
}
.shape-2 {
    width: 350px; height: 350px;
    border: 1px solid var(--accent-warm);
    border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
    bottom: 5%; left: -3%;
    animation-delay: -8s;
}
.shape-3 {
    width: 200px; height: 200px;
    border: 1px solid var(--accent);
    border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%;
    top: 40%; left: 15%;
    animation-delay: -14s;
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(12px, -18px) rotate(4deg); }
    66% { transform: translate(-10px, 12px) rotate(-3deg); }
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 0.4em;
    text-transform: none;
    text-shadow: none;
}

.reveal h1 { font-size: 3.6em; }
.reveal h2 { font-size: 2.6em; }
.reveal h3 { font-size: 1.6em; font-weight: 500; }
.reveal h4 { font-size: 1.2em; }

.reveal em {
    font-style: italic;
    color: var(--accent);
}
.reveal .warm { color: var(--accent-warm); }

.reveal .overline {
    font-size: 0.62em;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    font-family: var(--font-body);
    display: block;
    margin-bottom: 0.4em;
}

.reveal .rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0.5em 0 0.8em;
}
.reveal .center .rule { margin-left: auto; margin-right: auto; }

.reveal p,
.reveal li {
    font-size: 0.85em;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 0.5em;
}

.reveal strong { color: var(--text-primary); font-weight: 600; }

.reveal .mono {
    font-family: var(--font-mono);
    font-size: 0.7em;
}

/* ===========================================
   LAYOUT HELPERS
   =========================================== */
.reveal .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.reveal .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 1rem;
}

.reveal .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 0.9rem;
}

.reveal .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
    gap: 0.75rem;
}

.reveal .stack {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* ===========================================
   CARDS
   =========================================== */
.reveal .card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    transition: border-color 0.3s, transform 0.3s;
}
.reveal .card:hover {
    border-color: rgba(168, 198, 134, 0.25);
    transform: translateY(-2px);
}
.reveal .card-warm { border-color: var(--border-warm); }
.reveal .card-warm:hover { border-color: rgba(212, 165, 116, 0.25); }
.reveal .card h3 { margin-bottom: 0.3em; font-size: 1.1em; }
.reveal .card p { font-size: 0.78em; }

/* ===========================================
   META / FOOTER
   =========================================== */
.reveal .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
}
.reveal .meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75em;
    color: var(--text-secondary);
}
.reveal .meta-dot {
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

/* ===========================================
   HIGHLIGHT BOX
   =========================================== */
.reveal .highlight-box {
    background: var(--accent-glow);
    border: 1px solid rgba(168, 198, 134, 0.2);
    border-radius: 8px;
    padding: 1rem 1.2rem;
}
.reveal .highlight-box-warm {
    background: var(--accent-warm-glow);
    border-color: rgba(212, 165, 116, 0.2);
}
.reveal .highlight-box p { color: var(--text-primary); }

/* ===========================================
   BADGE
   =========================================== */
.reveal .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72em;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    border: 1px solid rgba(168, 198, 134, 0.15);
    margin: 0;
}
.reveal .badge-warm {
    color: var(--accent-warm);
    background: var(--accent-warm-glow);
    border-color: rgba(212, 165, 116, 0.15);
}

/* ===========================================
   REVEAL.JS CONTROLS / PROGRESS
   =========================================== */
.reveal .progress {
    color: var(--accent);
    height: 3px;
    background: rgba(255, 255, 255, 0.04);
}
.reveal .progress span {
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    transition: transform 0.4s var(--ease-out-expo);
}
.reveal .controls {
    color: var(--accent);
}
.reveal .slide-number {
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.7em;
    opacity: 0.5;
}

/* ===========================================
   FRAGMENT ANIMATIONS — fade-up by default
   =========================================== */
.reveal .fragment.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
}
.reveal .fragment.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   CLASE 4 SPECIFIC
   =========================================== */
.reveal .technique-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid rgba(168, 198, 134, 0.2);
    margin-bottom: 0.4rem;
}
.reveal .technique-tag.warm {
    background: var(--accent-warm-glow);
    color: var(--accent-warm);
    border-color: rgba(212, 165, 116, 0.2);
}

.reveal .prompt-example {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.7em;
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre-wrap;
    overflow: hidden;
    max-width: 720px;
    text-align: left;
}
.reveal .prompt-example .user { color: var(--accent); }
.reveal .prompt-example .magic { color: var(--accent-warm); font-weight: 600; }
.reveal .prompt-example .ai { color: var(--text-secondary); font-style: italic; }
.reveal .prompt-example .label,
.reveal .label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    margin-bottom: 0.4rem;
    background: var(--accent-glow);
    color: var(--accent);
}

.reveal .danger-box {
    background: rgba(220, 70, 70, 0.08);
    border: 1px solid rgba(220, 70, 70, 0.22);
    border-radius: 8px;
    padding: 1rem 1.2rem;
}
.reveal .danger-box p { color: var(--text-primary); }

.reveal .safe-box {
    background: var(--accent-glow);
    border: 1px solid rgba(168, 198, 134, 0.25);
    border-radius: 8px;
    padding: 1rem 1.2rem;
}
.reveal .safe-box p { color: var(--text-primary); }

.reveal .checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}
.reveal .checklist li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.82em;
    color: var(--text-secondary);
}
.reveal .checklist li .check {
    color: var(--accent);
    font-weight: 700;
    min-width: 1.2em;
}
.reveal .checklist.warm li .check { color: var(--accent-warm); }

/* Context window bars */
.reveal .context-bars {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}
.reveal .ctx-row {
    display: grid;
    grid-template-columns: 130px 1fr 90px;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.72em;
}
.reveal .ctx-row .ctx-name {
    color: var(--text-primary);
    font-weight: 600;
}
.reveal .ctx-row .ctx-name small {
    display: block;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: var(--font-mono);
    font-size: 0.85em;
}
.reveal .ctx-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.reveal .ctx-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    border-radius: 100px;
}
.reveal .ctx-bar-fill.muted {
    background: var(--text-secondary);
    opacity: 0.4;
}
.reveal .ctx-tokens {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 0.85em;
    text-align: right;
}
.reveal .ctx-tokens.muted { color: var(--text-secondary); }

/* Comparison table */
.reveal .demo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72em;
    font-family: var(--font-body);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}
.reveal .demo-table th,
.reveal .demo-table td {
    padding: 0.55rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.reveal .demo-table thead th {
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 600;
    font-family: var(--font-mono);
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.reveal .demo-table tbody tr:last-child td { border-bottom: none; }
.reveal .demo-table tbody td { color: var(--text-secondary); }
.reveal .demo-table tbody td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}
.reveal .demo-table tbody td .num {
    font-family: var(--font-mono);
    color: var(--accent-warm);
}

/* RCIF grid */
.reveal .rcif-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}
.reveal .rcif-cell {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.8rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: left;
}
.reveal .rcif-cell .letter {
    font-family: var(--font-display);
    font-size: 1.8em;
    color: var(--accent);
    font-weight: 600;
    line-height: 1;
}
.reveal .rcif-cell .role {
    font-family: var(--font-mono);
    font-size: 0.55em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    opacity: 0.75;
}
.reveal .rcif-cell .desc {
    font-size: 0.72em;
    color: var(--text-primary);
    font-weight: 500;
}
.reveal .rcif-cell .desc small {
    display: block;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.85em;
    margin-top: 0.2rem;
}
.reveal .rcif-cell.warm .letter,
.reveal .rcif-cell.warm .role { color: var(--accent-warm); }

/* OCR pair */
.reveal .ocr-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}
.reveal .ocr-doc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.reveal .ocr-doc .ocr-tag {
    font-family: var(--font-mono);
    font-size: 0.6em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    opacity: 0.75;
    margin-bottom: 0.3rem;
}
.reveal .ocr-doc.image-pdf .ocr-tag { color: var(--accent-warm); }
.reveal .ocr-line {
    height: 6px;
    border-radius: 100px;
    background: var(--text-secondary);
    opacity: 0.45;
}
.reveal .ocr-line.short { width: 60%; }
.reveal .ocr-line.med { width: 80%; }
.reveal .ocr-doc.image-pdf .ocr-line {
    background: repeating-linear-gradient(
        90deg,
        rgba(212, 165, 116, 0.25) 0,
        rgba(212, 165, 116, 0.25) 3px,
        transparent 3px,
        transparent 5px
    );
    opacity: 1;
    height: 8px;
    filter: blur(0.4px);
}
.reveal .ocr-doc .ocr-foot {
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 0.62em;
    color: var(--text-secondary);
    line-height: 1.5;
}
.reveal .ocr-doc .ocr-foot strong { color: var(--accent); font-weight: 600; }
.reveal .ocr-doc.image-pdf .ocr-foot strong { color: var(--accent-warm); }

.reveal .kbd-inline {
    font-family: var(--font-mono);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
    font-size: 0.85em;
    color: var(--text-primary);
}

.reveal .brain-icon { font-size: 2.4em; }

.reveal .card-icon {
    font-size: 1.8em;
    margin-bottom: 0.4em;
}

/* ===========================================
   VS COMPARISON
   =========================================== */
.reveal .vs-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.2rem;
    align-items: center;
}
.reveal .vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.reveal .vs-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(transparent, var(--accent), transparent);
    opacity: 0.3;
}
.reveal .vs-label {
    font-family: var(--font-display);
    font-size: 1.1em;
    color: var(--accent);
    font-style: italic;
}

/* ===========================================
   STEP / FLOW
   =========================================== */
.reveal .step {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    text-align: left;
}
.reveal .step-num {
    font-family: var(--font-display);
    font-size: 1.6em;
    color: var(--accent);
    font-weight: 600;
    line-height: 1.2;
    min-width: 1.6ch;
}
.reveal .step-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.15em;
    font-size: 1.05em;
}
.reveal .step-content p {
    font-size: 0.78em;
    margin: 0;
}

/* ===========================================
   CODE BLOCK
   =========================================== */
.reveal .code-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    font-family: var(--font-mono);
    font-size: 0.65em;
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre-wrap;
    overflow: hidden;
    text-align: left;
}
.reveal .code-block .prompt { color: var(--accent); }
.reveal .code-block .output { color: var(--accent-warm); }
.reveal .code-block .comment {
    color: rgba(122, 128, 119, 0.7);
    font-style: italic;
}

/* ===========================================
   QUOTE
   =========================================== */
.reveal .quote {
    font-family: var(--font-display);
    font-size: 1.4em;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    border-left: 2px solid var(--accent);
    padding-left: 1.2rem;
    max-width: 700px;
    text-align: left;
}
.reveal .quote-attr {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.55em;
    color: var(--text-secondary);
    margin-top: 0.5em;
}

/* ===========================================
   BULLET LIST
   =========================================== */
.reveal .bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    text-align: left;
}
.reveal .bullet-list li {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    font-size: 0.85em;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}
.reveal .bullet-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    min-width: 5px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.5em;
}

/* ===========================================
   TONE TAGS (Clase 2)
   =========================================== */
.reveal .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
}
.reveal .tone-tag {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.72em;
    font-weight: 500;
    transition: border-color 0.3s, transform 0.3s;
}
.reveal .tone-tag.warm {
    border-color: var(--border-warm);
    color: var(--accent-warm);
}
.reveal .tone-tag:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.reveal .tone-tag.warm:hover { border-color: var(--accent-warm); }

/* ===========================================
   PRIMARY BUTTON / QR CARD (Clase 1, 2)
   =========================================== */
.reveal .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.78em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px -10px var(--accent-glow);
}
.reveal .primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -10px var(--accent-glow);
    filter: brightness(1.1);
}

.reveal .qr-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    max-width: 280px;
    margin: 0.6rem auto;
}
.reveal .qr-card img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* ===========================================
   RESPONSIVE — mobile (< 768px)
   The canvas is set to 720x1100 (portrait) via JS on mobile.
   These rules adjust layout to fit a portrait aspect ratio.
   =========================================== */
@media screen and (max-width: 768px) {
    .reveal {
        font-size: 24px;
    }

    .reveal .slides section,
    .reveal .slides section > section {
        padding: 1rem 0.9rem;
    }

    .reveal h1 { font-size: 2.6em; }
    .reveal h2 { font-size: 2em; }
    .reveal h3 { font-size: 1.3em; }

    /* Stack horizontal layouts vertically */
    .reveal .split,
    .reveal .grid-2,
    .reveal .grid-3,
    .reveal .ocr-pair {
        grid-template-columns: 1fr !important;
        gap: 0.6rem;
    }

    .reveal .rcif-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .reveal .rcif-cell .letter { font-size: 1.5em; }

    /* Compact context bars */
    .reveal .context-bars { gap: 0.5rem; }
    .reveal .ctx-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    .reveal .ctx-row .ctx-tokens { text-align: left; }

    /* Compact tables */
    .reveal .demo-table { font-size: 0.62em; }
    .reveal .demo-table th,
    .reveal .demo-table td { padding: 0.4rem 0.55rem; }

    /* Compact OCR boxes */
    .reveal .ocr-doc { min-height: 130px; padding: 0.7rem 0.8rem; }

    /* Meta wraps tighter */
    .reveal .meta { gap: 0.7rem; margin-top: 0.8rem; }
    .reveal .meta-item { font-size: 0.7em; }

    /* Hide background shapes — they crowd a small viewport */
    .shape { display: none; }

    /* Tighter prompt examples */
    .reveal .prompt-example { font-size: 0.62em; padding: 0.7rem 0.8rem; }

    /* Cards slim down */
    .reveal .card { padding: 0.8rem 0.9rem; }
}

/* ===========================================
   PRINT / PDF — keep theme dark on PDF export
   =========================================== */
@media print {
    .organic-bg, .shape { display: none; }
}
