/* ===== FFAI Whitepaper Styles ===== */
/* Professional, authoritative design with Playfair Display for headings */

/* ===== CSS Variables ===== */
:root {
    --wp-primary: #6366f1;
    --wp-primary-dark: #4f46e5;
    --wp-primary-light: #818cf8;
    --wp-secondary: #06b6d4;
    --wp-accent: #f59e0b;
    --wp-success: #10b981;
    --wp-danger: #ef4444;

    --wp-bg-dark: #0a0a0f;
    --wp-bg-card: #12121a;
    --wp-bg-elevated: #1a1a25;
    --wp-bg-sidebar: #0d0d14;
    --wp-border: rgba(255, 255, 255, 0.08);
    --wp-border-active: rgba(99, 102, 241, 0.5);

    --wp-text-primary: #f8fafc;
    --wp-text-secondary: #94a3b8;
    --wp-text-muted: #64748b;

    --wp-gradient: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --wp-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);

    --wp-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --wp-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --wp-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

    --wp-radius-sm: 6px;
    --wp-radius-md: 12px;
    --wp-radius-lg: 20px;

    --wp-sidebar-width: 280px;
    --wp-content-max: 900px;
    --wp-transition: all 0.3s ease;

    --wp-font-heading: 'Playfair Display', Georgia, serif;
    --wp-font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --wp-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--wp-font-body);
    background: var(--wp-bg-dark);
    color: var(--wp-text-primary);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--wp-transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Navigation ===== */
.wp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--wp-border);
    padding: 16px 0;
}

.wp-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wp-logo-icon {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.wp-logo-text {
    font-family: var(--wp-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--wp-text-primary);
}

.wp-logo-divider {
    width: 1px;
    height: 24px;
    background: var(--wp-border);
    margin: 0 8px;
}

.wp-logo-label {
    font-size: 14px;
    color: var(--wp-text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wp-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wp-nav-link {
    font-size: 14px;
    color: var(--wp-text-secondary);
}

.wp-nav-link:hover {
    color: var(--wp-primary-light);
}

.wp-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--wp-gradient);
    border: none;
    border-radius: var(--wp-radius-md);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wp-transition);
}

.wp-nav-btn svg {
    width: 18px;
    height: 18px;
}

.wp-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.wp-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.wp-mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--wp-text-primary);
}

/* ===== Sidebar ===== */
.wp-sidebar {
    position: fixed;
    left: 0;
    top: 72px;
    bottom: 0;
    width: var(--wp-sidebar-width);
    background: var(--wp-bg-sidebar);
    border-right: 1px solid var(--wp-border);
    padding: 32px 0;
    overflow-y: auto;
    z-index: 100;
    transition: var(--wp-transition);
}

.wp-sidebar-header {
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--wp-border);
    margin-bottom: 16px;
}

.wp-sidebar-title {
    font-family: var(--wp-font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.wp-sidebar-close {
    display: none;
}

.wp-toc {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
}

.wp-toc-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--wp-text-muted);
    border-radius: var(--wp-radius-sm);
    border-left: 2px solid transparent;
    transition: var(--wp-transition);
}

.wp-toc-link:hover {
    color: var(--wp-text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.wp-toc-link.active {
    color: var(--wp-primary-light);
    background: rgba(99, 102, 241, 0.1);
    border-left-color: var(--wp-primary);
}

.wp-sidebar-footer {
    padding: 24px;
    margin-top: auto;
    border-top: 1px solid var(--wp-border);
}

.wp-version {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: var(--wp-text-muted);
}

/* Mobile TOC Toggle */
.wp-toc-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    padding: 12px 20px;
    background: var(--wp-gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--wp-shadow-lg);
    align-items: center;
    gap: 8px;
}

.wp-toc-toggle svg {
    width: 18px;
    height: 18px;
}

/* ===== Main Content ===== */
.wp-main {
    margin-left: var(--wp-sidebar-width);
    min-height: 100vh;
    padding-top: 72px;
}

.wp-content {
    max-width: var(--wp-content-max);
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== Cover Section ===== */
.wp-cover {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    margin-bottom: 80px;
    overflow: hidden;
}

.wp-cover-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wp-cover-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, transparent 0%, var(--wp-bg-dark) 100%);
}

.wp-cover-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.wp-cover-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.wp-cover-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--wp-border);
    border-radius: 50px;
    font-size: 13px;
    color: var(--wp-text-secondary);
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wp-badge-icon {
    color: var(--wp-primary);
}

.wp-cover-title {
    margin-bottom: 24px;
}

.wp-title-accent {
    display: block;
    font-family: var(--wp-font-heading);
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 700;
    background: var(--wp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.wp-title-main {
    display: block;
    font-family: var(--wp-font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    color: var(--wp-text-primary);
    letter-spacing: 2px;
}

.wp-cover-subtitle {
    font-size: 20px;
    color: var(--wp-text-secondary);
    margin-bottom: 16px;
}

.wp-cover-tagline {
    font-size: 16px;
    color: var(--wp-text-muted);
    margin-bottom: 40px;
}

.wp-cover-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.wp-meta-item {
    text-align: center;
}

.wp-meta-label {
    display: block;
    font-size: 11px;
    color: var(--wp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.wp-meta-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--wp-text-primary);
}

.wp-meta-value.status-live {
    color: var(--wp-success);
}

.wp-cover-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wp-stat {
    text-align: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    min-width: 160px;
}

.wp-stat-value {
    display: block;
    font-family: var(--wp-font-heading);
    font-size: 32px;
    font-weight: 700;
    background: var(--wp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.wp-stat-label {
    font-size: 13px;
    color: var(--wp-text-muted);
}

/* ===== Sections ===== */
.wp-section {
    margin-bottom: 80px;
    padding-top: 40px;
}

.wp-section-title {
    font-family: var(--wp-font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--wp-border);
    color: var(--wp-text-primary);
}

.wp-subsection-title {
    font-family: var(--wp-font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--wp-text-primary);
}

/* ===== Typography ===== */
.wp-section p {
    margin-bottom: 20px;
    color: var(--wp-text-secondary);
}

.wp-section p strong {
    color: var(--wp-text-primary);
    font-weight: 600;
}

.wp-list {
    margin: 20px 0;
    padding-left: 24px;
}

.wp-list li {
    margin-bottom: 12px;
    color: var(--wp-text-secondary);
    position: relative;
}

.wp-list li::marker {
    color: var(--wp-primary);
}

/* ===== Abstract Box ===== */
.wp-abstract-box {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--wp-radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.wp-abstract-box p {
    color: var(--wp-text-secondary);
}

.wp-abstract-box p:last-child {
    margin-bottom: 0;
}

.wp-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wp-keyword {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--wp-border);
    border-radius: 50px;
    font-size: 13px;
    color: var(--wp-text-muted);
}

/* ===== Highlight Box ===== */
.wp-highlight-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--wp-radius-lg);
    margin: 24px 0;
}

.wp-highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.15);
    border-radius: var(--wp-radius-md);
}

.wp-highlight-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--wp-secondary);
}

.wp-highlight-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wp-secondary);
}

.wp-highlight-content p {
    margin: 0;
    font-size: 15px;
}

/* ===== Quote ===== */
.wp-quote {
    margin: 32px 0;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--wp-primary);
    border-radius: 0 var(--wp-radius-lg) var(--wp-radius-lg) 0;
}

.wp-quote blockquote {
    font-family: var(--wp-font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--wp-text-primary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.wp-quote cite {
    font-size: 14px;
    color: var(--wp-text-muted);
    font-style: normal;
}

/* ===== Problem Grid ===== */
.wp-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.wp-problem-card {
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
}

.wp-problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--wp-radius-md);
    margin-bottom: 16px;
}

.wp-problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--wp-danger);
}

.wp-problem-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wp-text-primary);
}

.wp-problem-card p {
    font-size: 14px;
    margin: 0;
}

/* ===== Comparison Table ===== */
.wp-comparison-table {
    margin: 24px 0;
    overflow-x: auto;
}

.wp-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--wp-bg-card);
    border-radius: var(--wp-radius-lg);
    overflow: hidden;
}

.wp-comparison-table th,
.wp-comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--wp-border);
}

.wp-comparison-table th {
    background: var(--wp-bg-elevated);
    font-weight: 600;
    color: var(--wp-text-primary);
    font-size: 14px;
}

.wp-comparison-table td {
    font-size: 14px;
    color: var(--wp-text-secondary);
}

.wp-comparison-table td.positive {
    color: var(--wp-success);
}

.wp-comparison-table td.negative {
    color: var(--wp-text-muted);
}

.wp-comparison-table tr:last-child td {
    border-bottom: none;
}

/* ===== Architecture Diagram ===== */
.wp-architecture-diagram {
    margin: 32px 0;
    padding: 32px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
}

.wp-diagram-title {
    text-align: center;
    font-size: 14px;
    color: var(--wp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.wp-diagram-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.wp-diagram-layer {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-md);
}

.wp-layer-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--wp-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wp-layer-items {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.wp-layer-item {
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--wp-radius-sm);
    font-size: 13px;
    color: var(--wp-text-secondary);
}

.wp-diagram-arrow {
    font-size: 24px;
    color: var(--wp-text-muted);
}

/* ===== Value Props ===== */
.wp-value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.wp-value-card {
    padding: 28px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    position: relative;
    overflow: hidden;
}

.wp-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wp-gradient);
}

.wp-value-number {
    font-family: var(--wp-font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.15);
    position: absolute;
    top: 16px;
    right: 20px;
}

.wp-value-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--wp-text-primary);
}

.wp-value-card p {
    font-size: 15px;
    margin: 0;
}

/* ===== Mechanism Flow ===== */
.wp-mechanism-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 32px 0;
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    overflow-x: auto;
}

.wp-flow-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.wp-flow-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.wp-flow-content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--wp-text-primary);
}

.wp-flow-content p {
    font-size: 12px;
    color: var(--wp-text-muted);
    margin: 0;
}

.wp-flow-arrow {
    font-size: 24px;
    color: var(--wp-primary);
    flex-shrink: 0;
}

/* ===== Formula Box ===== */
.wp-formula-box {
    margin: 24px 0;
    padding: 24px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--wp-radius-lg);
}

.wp-formula-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--wp-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wp-formula {
    margin-bottom: 16px;
}

.wp-formula code {
    font-family: var(--wp-font-mono);
    font-size: 16px;
    color: var(--wp-text-primary);
}

.wp-formula-note {
    font-size: 14px;
    margin: 0;
}

/* ===== Chain Grid ===== */
.wp-chain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.wp-chain-card {
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
}

.wp-chain-card.primary {
    border-color: var(--wp-primary);
    background: rgba(99, 102, 241, 0.05);
}

.wp-chain-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.wp-chain-logo {
    width: 32px;
    height: 32px;
}

.wp-chain-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--wp-text-primary);
}

.wp-chain-card ul {
    list-style: none;
    font-size: 14px;
}

.wp-chain-card li {
    color: var(--wp-text-muted);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.wp-chain-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--wp-primary);
}

/* ===== Code Block ===== */
.wp-code-block {
    margin: 24px 0;
    border-radius: var(--wp-radius-lg);
    overflow: hidden;
    background: #1e1e2e;
    border: 1px solid var(--wp-border);
}

.wp-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--wp-border);
}

.wp-code-lang {
    font-size: 12px;
    font-weight: 600;
    color: var(--wp-primary);
    text-transform: uppercase;
}

.wp-code-file {
    font-size: 12px;
    color: var(--wp-text-muted);
}

.wp-code-block pre {
    padding: 20px;
    overflow-x: auto;
    margin: 0;
}

.wp-code-block code {
    font-family: var(--wp-font-mono);
    font-size: 13px;
    line-height: 1.6;
    color: #cdd6f4;
}

/* ===== Oracle Diagram ===== */
.wp-oracle-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin: 24px 0;
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
}

.wp-oracle-source,
.wp-oracle-output {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--wp-radius-md);
}

.wp-oracle-source h5,
.wp-oracle-output h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--wp-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wp-oracle-source ul,
.wp-oracle-output ul {
    list-style: none;
    font-size: 13px;
}

.wp-oracle-source li,
.wp-oracle-output li {
    color: var(--wp-text-secondary);
    margin-bottom: 6px;
}

.wp-oracle-middle {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wp-oracle-node {
    padding: 12px 20px;
    background: var(--wp-gradient);
    border-radius: var(--wp-radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-align: center;
}

/* ===== Security Grid ===== */
.wp-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.wp-security-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
}

.wp-security-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.wp-security-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-text-primary);
    margin-bottom: 8px;
}

.wp-security-item p {
    font-size: 12px;
    color: var(--wp-text-muted);
    margin: 0;
}

/* ===== Token Specs ===== */
.wp-token-specs {
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    overflow: hidden;
    margin: 24px 0;
}

.wp-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--wp-border);
}

.wp-spec-row:last-child {
    border-bottom: none;
}

.wp-spec-label {
    font-size: 14px;
    color: var(--wp-text-muted);
}

.wp-spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-text-primary);
}

.wp-spec-value.mono {
    font-family: var(--wp-font-mono);
    font-size: 12px;
    color: var(--wp-primary);
}

/* ===== Distribution Chart ===== */
.wp-distribution {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    margin: 32px 0;
}

.wp-distribution-chart {
    display: flex;
    justify-content: center;
}

.wp-donut {
    position: relative;
    width: 280px;
    height: 280px;
}

.wp-donut svg {
    transform: rotate(-90deg);
}

.wp-donut-segment {
    transition: all 0.5s ease;
}

.wp-donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.wp-donut-value {
    display: block;
    font-family: var(--wp-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--wp-text-primary);
}

.wp-donut-label {
    font-size: 12px;
    color: var(--wp-text-muted);
}

.wp-distribution-legend {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wp-legend-item {
    display: grid;
    grid-template-columns: 12px 1fr auto auto;
    align-items: center;
    gap: 12px;
}

.wp-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.wp-legend-label {
    font-size: 14px;
    color: var(--wp-text-secondary);
}

.wp-legend-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--wp-text-primary);
}

.wp-legend-amount {
    font-size: 12px;
    color: var(--wp-text-muted);
    font-family: var(--wp-font-mono);
}

/* ===== Vesting Table ===== */
.wp-vesting-table {
    overflow-x: auto;
    margin: 24px 0;
}

.wp-vesting-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--wp-bg-card);
    border-radius: var(--wp-radius-lg);
    overflow: hidden;
}

.wp-vesting-table th,
.wp-vesting-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--wp-border);
    font-size: 14px;
}

.wp-vesting-table th {
    background: var(--wp-bg-elevated);
    font-weight: 600;
    color: var(--wp-text-primary);
}

.wp-vesting-table td {
    color: var(--wp-text-secondary);
}

.wp-vesting-table tr:last-child td {
    border-bottom: none;
}

/* ===== Utility Grid ===== */
.wp-utility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.wp-utility-card {
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    text-align: center;
    transition: var(--wp-transition);
}

.wp-utility-card:hover {
    border-color: var(--wp-primary);
    transform: translateY(-2px);
}

.wp-utility-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--wp-radius-md);
}

.wp-utility-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--wp-primary);
}

.wp-utility-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wp-text-primary);
}

.wp-utility-card p {
    font-size: 13px;
    color: var(--wp-text-muted);
    margin: 0;
}

/* ===== Presale Tiers ===== */
.wp-presale-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.wp-tier-card {
    padding: 28px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    position: relative;
}

.wp-tier-card.active {
    border-color: var(--wp-success);
    background: rgba(16, 185, 129, 0.05);
}

.wp-tier-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 12px;
    background: var(--wp-success);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.wp-tier-badge.upcoming {
    background: var(--wp-text-muted);
}

.wp-tier-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--wp-text-primary);
}

.wp-tier-price {
    font-family: var(--wp-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--wp-primary);
    margin-bottom: 20px;
}

.wp-tier-details {
    border-top: 1px solid var(--wp-border);
    padding-top: 20px;
}

.wp-tier-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
}

.wp-tier-row span:first-child {
    color: var(--wp-text-muted);
}

.wp-tier-row span:last-child {
    color: var(--wp-text-primary);
    font-weight: 500;
}

/* ===== Product Showcase ===== */
.wp-product-showcase {
    margin: 24px 0;
}

.wp-product-main {
    padding: 32px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid var(--wp-primary);
    border-radius: var(--wp-radius-lg);
    position: relative;
}

.wp-product-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 6px 16px;
    background: var(--wp-gradient);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.wp-product-main h4 {
    font-family: var(--wp-font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--wp-text-primary);
}

.wp-product-desc {
    font-size: 16px;
    margin-bottom: 24px;
}

.wp-product-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.wp-feature {
    text-align: center;
}

.wp-feature-value {
    display: block;
    font-family: var(--wp-font-heading);
    font-size: 28px;
    font-weight: 700;
    background: var(--wp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wp-feature-label {
    font-size: 12px;
    color: var(--wp-text-muted);
}

/* ===== Products Grid ===== */
.wp-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.wp-product-card {
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    transition: var(--wp-transition);
}

.wp-product-card:hover {
    border-color: var(--wp-primary);
}

.wp-product-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--wp-radius-md);
    margin-bottom: 16px;
}

.wp-product-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--wp-primary);
}

.wp-product-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wp-text-primary);
}

.wp-product-card p {
    font-size: 14px;
    margin: 0;
}

/* ===== Tech Stack ===== */
.wp-tech-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.wp-tech-category h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--wp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wp-tech-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wp-tech-items span {
    padding: 8px 12px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-sm);
    font-size: 13px;
    color: var(--wp-text-secondary);
}

/* ===== Governance Phases ===== */
.wp-governance-phases {
    display: flex;
    gap: 24px;
    margin: 24px 0;
}

.wp-phase {
    flex: 1;
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    text-align: center;
    position: relative;
}

.wp-phase.active {
    border-color: var(--wp-primary);
    background: rgba(99, 102, 241, 0.05);
}

.wp-phase-marker {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--wp-text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.wp-phase.active .wp-phase-marker {
    background: var(--wp-gradient);
    color: white;
}

.wp-phase h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wp-text-primary);
}

.wp-phase p {
    font-size: 13px;
    color: var(--wp-text-muted);
    margin-bottom: 12px;
}

.wp-phase-period {
    font-size: 12px;
    color: var(--wp-text-muted);
    font-weight: 500;
}

/* ===== Voting Info ===== */
.wp-voting-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.wp-voting-card {
    padding: 20px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    text-align: center;
}

.wp-voting-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-primary);
    margin-bottom: 8px;
}

.wp-voting-card p {
    font-size: 13px;
    color: var(--wp-text-muted);
    margin: 0;
}

/* ===== Audit Grid ===== */
.wp-audit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.wp-audit-card {
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    text-align: center;
}

.wp-audit-logo {
    height: 40px;
    margin: 0 auto 16px;
    opacity: 0.8;
}

.wp-audit-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wp-text-primary);
}

.wp-audit-card p {
    font-size: 14px;
    color: var(--wp-text-muted);
    margin-bottom: 12px;
}

.wp-audit-status {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wp-success);
}

/* ===== Legal Structure ===== */
.wp-legal-structure {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.wp-legal-item {
    padding: 20px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
}

.wp-legal-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-text-primary);
    margin-bottom: 8px;
}

.wp-legal-item p {
    font-size: 14px;
    color: var(--wp-text-muted);
    margin: 0;
}

/* ===== Roadmap ===== */
.wp-roadmap {
    position: relative;
    padding-left: 40px;
    margin: 32px 0;
}

.wp-roadmap::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--wp-border);
}

.wp-roadmap-item {
    position: relative;
    padding-bottom: 40px;
}

.wp-roadmap-item:last-child {
    padding-bottom: 0;
}

.wp-roadmap-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--wp-bg-dark);
    border: 2px solid var(--wp-border);
}

.wp-roadmap-item.completed .wp-roadmap-marker {
    background: var(--wp-success);
    border-color: var(--wp-success);
}

.wp-roadmap-item.active .wp-roadmap-marker {
    background: var(--wp-primary);
    border-color: var(--wp-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3);
}

.wp-roadmap-content {
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
}

.wp-roadmap-item.active .wp-roadmap-content {
    border-color: var(--wp-primary);
}

.wp-roadmap-date {
    display: inline-block;
    padding: 4px 12px;
    background: var(--wp-gradient);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.wp-roadmap-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--wp-text-primary);
}

.wp-roadmap-content ul {
    list-style: none;
}

.wp-roadmap-content li {
    font-size: 14px;
    color: var(--wp-text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.wp-roadmap-content li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--wp-text-muted);
}

.wp-roadmap-item.completed li::before {
    content: '✓';
    color: var(--wp-success);
}

/* ===== Team ===== */
.wp-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.wp-team-member {
    text-align: center;
    padding: 24px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
}

.wp-member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wp-gradient);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.wp-team-member h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--wp-text-primary);
}

.wp-member-role {
    display: block;
    font-size: 13px;
    color: var(--wp-primary);
    margin-bottom: 12px;
}

.wp-team-member p {
    font-size: 13px;
    color: var(--wp-text-muted);
    margin: 0;
}

/* ===== Partners Grid ===== */
.wp-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.wp-partner-logo {
    padding: 20px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-text-secondary);
}

/* ===== Risk Warning ===== */
.wp-risk-warning {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--wp-radius-lg);
    margin: 24px 0;
}

.wp-warning-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.wp-risk-warning p {
    margin: 0;
}

.wp-risks-list {
    margin: 24px 0;
}

.wp-risk-item {
    padding: 20px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    margin-bottom: 16px;
}

.wp-risk-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wp-text-primary);
}

.wp-risk-item p {
    font-size: 14px;
    margin: 0;
}

/* ===== Conclusion ===== */
.wp-conclusion-box {
    padding: 32px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--wp-radius-lg);
    margin: 24px 0;
}

.wp-conclusion-box p:last-child {
    margin-bottom: 0;
}

.wp-cta-section {
    text-align: center;
    padding: 48px;
    background: var(--wp-bg-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-lg);
    margin: 48px 0;
}

.wp-cta-section h3 {
    font-family: var(--wp-font-heading);
    font-size: 28px;
    margin-bottom: 12px;
}

.wp-cta-section p {
    color: var(--wp-text-secondary);
    margin-bottom: 24px;
}

.wp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.wp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--wp-gradient);
    border-radius: var(--wp-radius-md);
    color: white;
    font-weight: 600;
    transition: var(--wp-transition);
}

.wp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.wp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius-md);
    color: var(--wp-text-secondary);
    font-weight: 600;
    transition: var(--wp-transition);
}

.wp-btn-secondary:hover {
    border-color: var(--wp-primary);
    color: var(--wp-primary-light);
}

/* ===== References ===== */
.wp-references {
    padding-left: 24px;
}

.wp-references li {
    font-size: 14px;
    color: var(--wp-text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ===== Footer ===== */
.wp-footer {
    margin-top: 80px;
    padding: 48px 0;
    border-top: 1px solid var(--wp-border);
}

.wp-footer-content {
    text-align: center;
}

.wp-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wp-footer-logo img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.wp-footer-logo span {
    font-family: var(--wp-font-heading);
    font-size: 20px;
    font-weight: 600;
}

.wp-footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.wp-footer-links a {
    font-size: 14px;
    color: var(--wp-text-muted);
}

.wp-footer-links a:hover {
    color: var(--wp-primary-light);
}

.wp-footer-legal p {
    font-size: 13px;
    color: var(--wp-text-muted);
    margin-bottom: 12px;
}

.wp-disclaimer {
    max-width: 600px;
    margin: 0 auto;
    font-size: 11px !important;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .wp-sidebar {
        width: 240px;
    }
    
    :root {
        --wp-sidebar-width: 240px;
    }
}

@media (max-width: 1024px) {
    .wp-sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .wp-sidebar.active {
        transform: translateX(0);
    }
    
    .wp-sidebar-close {
        display: block;
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--wp-text-muted);
        cursor: pointer;
    }
    
    .wp-main {
        margin-left: 0;
    }
    
    .wp-toc-toggle {
        display: flex;
    }
    
    .wp-problem-grid,
    .wp-value-props,
    .wp-products-grid,
    .wp-audit-grid,
    .wp-legal-structure {
        grid-template-columns: 1fr;
    }
    
    .wp-chain-grid,
    .wp-presale-tiers {
        grid-template-columns: 1fr;
    }
    
    .wp-utility-grid,
    .wp-security-grid,
    .wp-voting-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wp-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wp-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .wp-governance-phases {
        flex-direction: column;
    }
    
    .wp-distribution {
        grid-template-columns: 1fr;
    }
    
    .wp-oracle-diagram {
        grid-template-columns: 1fr;
    }
    
    .wp-tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wp-nav-container {
        padding: 0 20px;
    }
    
    .wp-nav-right {
        display: none;
    }
    
    .wp-mobile-menu {
        display: flex;
    }
    
    .wp-content {
        padding: 0 20px;
    }
    
    .wp-cover {
        padding: 60px 0;
    }
    
    .wp-cover-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .wp-stat {
        min-width: 100%;
    }
    
    .wp-section-title {
        font-size: 28px;
    }
    
    .wp-subsection-title {
        font-size: 20px;
    }
    
    .wp-mechanism-flow {
        flex-direction: column;
        gap: 16px;
    }
    
    .wp-flow-arrow {
        transform: rotate(90deg);
    }
    
    .wp-utility-grid,
    .wp-security-grid,
    .wp-voting-info,
    .wp-team-grid {
        grid-template-columns: 1fr;
    }
    
    .wp-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wp-cta-buttons {
        flex-direction: column;
    }
    
    .wp-logo-divider,
    .wp-logo-label {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .wp-cover-badge {
        font-size: 11px;
    }
    
    .wp-title-accent {
        font-size: 48px;
    }
    
    .wp-title-main {
        font-size: 20px;
    }
    
    .wp-cover-meta {
        gap: 24px;
    }
    
    .wp-abstract-box {
        padding: 20px;
    }
    
    .wp-keywords {
        gap: 8px;
    }
    
    .wp-keyword {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .wp-highlight-box {
        flex-direction: column;
    }
    
    .wp-comparison-table th,
    .wp-comparison-table td {
        padding: 12px;
        font-size: 12px;
    }
    
    .wp-diagram-layer {
        padding: 16px;
    }
    
    .wp-layer-item {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--wp-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== Selection ===== */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--wp-text-primary);
}

/* ===== Print Styles ===== */
@media print {
    .wp-navbar,
    .wp-sidebar,
    .wp-toc-toggle {
        display: none !important;
    }
    
    .wp-main {
        margin-left: 0;
        padding-top: 0;
    }
    
    .wp-content {
        max-width: 100%;
        padding: 0;
    }
    
    .wp-cover {
        min-height: auto;
        page-break-after: always;
    }
    
    .wp-section {
        page-break-inside: avoid;
    }
}

