/* Whitepaper-specific styles - Refined Minimalism */

/* Override body for whitepaper page */
.whitepaper-page {
    background: #fafafa;
    color: #1a1a1a;
}

/* Section container */
.whitepaper-page .section {
    padding: 0;
    min-height: auto;
}

/* Main title */
.whitepaper-page .section-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-align: center;
    margin-top: 8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
    position: relative;
}

.whitepaper-page .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #10b981;
    margin: 2rem auto 0;
}

/* Content container - narrow academic style */
.whitepaper-page .content-block {
    max-width: 580px;
    margin: 0 auto;
    padding: 0 2rem 8rem;
}

/* Version info */
.whitepaper-page .content-block>p:first-child {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    text-align: center;
    margin-bottom: 6rem;
    font-style: italic;
}

/* Body paragraphs */
.whitepaper-page .content-block p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

/* Section headings (h3) */
.whitepaper-page h3 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    margin-top: 6rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.whitepaper-page h3::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #10b981;
    margin: 0 auto 1.5rem;
}

/* Subsection headings (h4) */
.whitepaper-page h4 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: left;
    text-transform: uppercase;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
    padding-left: 1rem;
    border-left: 2px solid #10b981;
}

/* Strong text - subtle emphasis */
.whitepaper-page strong {
    font-weight: 500;
    color: #1a1a1a;
}

/* Navigation adjustments for whitepaper page */
.whitepaper-page .nav {
    background: rgba(250, 250, 250, 0.95);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}


/* Remove glow border on whitepaper */
.whitepaper-page .glow-border {
    display: none;
}

/* Footer styling */
.whitepaper-page .footer {
    background: transparent;
    border-top: 1px solid #e5e5e5;
    margin-top: 4rem;
}

.whitepaper-page .footer p {
    font-size: 11px;
    color: #999;
    text-align: center;
}