/* ===================================
   FUNDOOR - Subpages Styles
   =================================== */

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 60px 0 100px;
}

/* Treasury Stats */
.treasury-stats {
    padding: 40px 0;
    background: var(--navy-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.stat-card .stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.stat-card .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-400);
}

.stat-card .stat-change {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    padding: 2px 8px;
    border-radius: 4px;
}

.stat-card .stat-change.positive {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.stat-card .stat-change.negative {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.stat-card .stat-sublabel {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Treasury Section */
.treasury-section {
    margin-bottom: 60px;
}

.treasury-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.section-desc {
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 700px;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

/* Holdings Table */
.holdings-table-wrapper {
    overflow-x: auto;
    margin-bottom: 16px;
}

.holdings-table {
    width: 100%;
    border-collapse: collapse;
}

.holdings-table th,
.holdings-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.holdings-table th {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.holdings-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.token-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.token-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: 50%;
}

.token-name {
    display: block;
    font-weight: 500;
}

.token-ticker {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
}

.allocation-bar {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    color: var(--gold-400);
}

.positive { color: var(--success); }
.negative { color: var(--error); }
.neutral { color: var(--gray-400); }

.category-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.community { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.category-badge.defi { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.category-badge.utility { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.category-badge.other { background: rgba(156, 163, 175, 0.2); color: #9ca3af; }

.table-note {
    font-size: 13px;
    color: var(--gray-500);
    font-style: italic;
}

/* Allocation Grid */
.allocation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.allocation-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
}

.allocation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.allocation-percent {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
}

.allocation-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    border-radius: 4px;
}

/* Rules Grid */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rule-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.rule-card h4 {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.rule-value {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 12px;
}

.rule-card p {
    font-size: 13px;
    color: var(--gray-500);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.step-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold-400);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-400);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray-300);
}

/* Multiplier Grid */
.multiplier-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.multiplier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px 32px;
    text-align: center;
    min-width: 140px;
}

.multiplier-card.featured {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold-500);
}

.multiplier-card .duration {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.multiplier-card .multiplier {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-400);
}

.multiplier-card .label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 28px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--gold-400);
}

.benefit-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-400);
}

/* Info Boxes */
.info-boxes {
    display: grid;
    gap: 20px;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 24px;
}

.info-box.warning {
    border-color: rgba(234, 179, 8, 0.3);
    background: rgba(234, 179, 8, 0.05);
}

.info-box.highlight {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.info-box.highlight h4 {
    color: var(--success);
}

.info-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--gold-400);
}

.info-box p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 0;
}

.info-box p + p {
    margin-top: 12px;
}

/* Staking Flow */
.staking-flow {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 40px;
}

.flow-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.flow-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    border-radius: 12px;
    flex-shrink: 0;
}

.flow-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.flow-content p {
    font-size: 14px;
    color: var(--gray-400);
    margin: 0;
}

.flow-arrow {
    font-size: 24px;
    color: var(--gold-400);
    text-align: center;
    padding: 12px 0;
    padding-left: 68px;
}

/* TWAB Detail Box */
.twab-detail-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 32px;
}

.twab-formula-large {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.formula-title {
    display: block;
    font-size: 12px;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.formula-display {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.twab-example-detailed h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--gray-300);
}

.example-table {
    margin-bottom: 16px;
}

.example-row {
    display: grid;
    grid-template-columns: 80px 120px 130px 80px 100px;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.example-row.header {
    font-weight: 600;
    color: var(--gray-400);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-row span {
    color: var(--gray-400);
}

.example-row span.gold {
    color: var(--gold-400);
    font-weight: 600;
}

.example-insight {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    color: var(--success);
}

/* wDOOR Info */
.wdoor-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wdoor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.wdoor-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--gold-400);
}

.wdoor-card p {
    font-size: 14px;
    color: var(--gray-400);
    margin: 0;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.warning-box h4 {
    color: #f87171;
    margin-bottom: 8px;
}

.warning-box p {
    font-size: 14px;
    color: var(--gray-300);
}

/* Governance Tiers Grid */
.gov-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gov-tier-card {
    position: relative;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 28px;
}

.gov-tier-card.featured {
    border-color: var(--gold-500);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), var(--navy-900));
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.tier-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-name {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tier-req {
    font-size: 14px;
    color: var(--gold-400);
    font-weight: 500;
}

.tier-perks {
    list-style: none;
}

.tier-perks li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-400);
}

.tier-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
}

/* Lifecycle Steps */
.lifecycle-steps {
    position: relative;
    padding-left: 40px;
}

.lifecycle-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.lifecycle-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-indicator .step-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-500);
    color: var(--navy-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    margin: 0;
    z-index: 1;
}

.step-line {
    position: absolute;
    top: 36px;
    width: 2px;
    height: calc(100% + 32px);
    background: rgba(201, 162, 39, 0.3);
}

.lifecycle-step:last-child .step-line {
    display: none;
}

.lifecycle-step .step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.lifecycle-step .step-content p {
    font-size: 14px;
    color: var(--gray-400);
}

/* Params Grid */
.params-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.param-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.param-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.param-value {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 4px;
}

.param-card p {
    font-size: 12px;
    color: var(--gray-500);
}

/* Scope Grid */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.scope-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
}

.scope-card h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--gold-400);
}

.scope-card ul {
    list-style: none;
}

.scope-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.scope-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--gray-500);
    border-radius: 50%;
}

/* Status Card */
.status-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 32px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fbbf24;
    margin-bottom: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.status-card p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

/* Docs Grid */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.doc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
}

.doc-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-4px);
}

.doc-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--gold-400);
}

.doc-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.doc-card p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.doc-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-400);
}

/* Reference Grid */
.reference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reference-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
}

.reference-card h4 {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--gold-400);
}

.reference-table {
    width: 100%;
}

.reference-table td {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reference-table td:first-child {
    color: var(--gray-500);
}

.reference-table td:last-child {
    text-align: right;
    font-weight: 500;
}

/* Address List */
.address-list {
    display: grid;
    gap: 16px;
}

.address-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
}

.address-label {
    font-weight: 500;
}

.address-value {
    font-family: monospace;
    font-size: 13px;
    color: var(--gray-400);
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category h2 {
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 162, 39, 0.3);
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--gold-400);
    flex-shrink: 0;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

.faq-answer p:first-child {
    padding-top: 20px;
}

.faq-answer p:last-child {
    padding-bottom: 20px;
}

.faq-answer ul,
.faq-answer ol {
    padding-top: 0;
    padding-left: 44px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer table {
    margin: 0 24px 20px;
    width: calc(100% - 48px);
}

.faq-answer table td {
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.faq-answer table td:first-child {
    color: var(--gray-500);
}

/* Whitepaper Styles */
.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc h4 {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--gray-400);
}

.toc a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-500);
    border-left: 2px solid transparent;
    padding-left: 16px;
    margin-left: -2px;
}

.toc a:hover {
    color: var(--gold-400);
    border-left-color: var(--gold-400);
}

.whitepaper section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whitepaper section:last-child {
    border-bottom: none;
}

.whitepaper h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gold-400);
}

.whitepaper h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.whitepaper h4 {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.whitepaper p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 16px;
}

.whitepaper ul,
.whitepaper ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.whitepaper li {
    font-size: 15px;
    color: var(--gray-300);
    margin-bottom: 8px;
    line-height: 1.7;
}

.whitepaper table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.whitepaper th,
.whitepaper td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.whitepaper th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    color: var(--gray-300);
}

.whitepaper td {
    color: var(--gray-400);
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 16px;
}

.roadmap-item h4 {
    margin-top: 0;
    color: var(--gold-400);
}

.roadmap-item ul {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .stats-grid,
    .rules-grid,
    .steps-grid,
    .benefits-grid,
    .gov-tiers-grid,
    .params-grid,
    .scope-grid,
    .docs-grid,
    .reference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .stats-grid,
    .rules-grid,
    .steps-grid,
    .benefits-grid,
    .gov-tiers-grid,
    .params-grid,
    .scope-grid,
    .docs-grid,
    .reference-grid,
    .allocation-grid,
    .wdoor-info {
        grid-template-columns: 1fr;
    }
    
    .multiplier-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .multiplier-card {
        width: 100%;
        max-width: 300px;
    }
    
    .section-top {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .example-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .example-row.header {
        display: none;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .flow-icon {
        margin: 0 auto;
    }
    
    .flow-arrow {
        padding-left: 0;
    }
}
