File size: 20,078 Bytes
2c73624 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QGR-α | United Nations Special Petition — Volume VII</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=JetBrains+Mono:wght@300;400;500;600&family=Inter:wght@300;400;500;600;700;800&display=swap');
:root {
--un-blue: #1e3a5f;
--un-gold: #c9a227;
--qgr-cyan: #00d4ff;
--qgr-glow: rgba(0,212,255,0.15);
--bg-deep: #0a0e17;
--bg-panel: #0f1623;
--bg-elevated: #161f33;
--text-primary: #e8ecf1;
--text-secondary: #8b9bb4;
--text-muted: #4a5a72;
--border-subtle: rgba(255,255,255,0.06);
--border-glow: rgba(0,212,255,0.2);
--accent-danger: #ff4757;
--accent-success: #2ed573;
--accent-warn: #ffa502;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', sans-serif;
background: var(--bg-deep);
color: var(--text-primary);
line-height: 1.7;
overflow-x: hidden;
}
#quantum-canvas {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 0;
pointer-events: none;
opacity: 0.4;
}
.particle-field {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
pointer-events: none;
z-index: 1;
overflow: hidden;
}
.particle {
position: absolute;
width: 2px; height: 2px;
background: var(--qgr-cyan);
border-radius: 50%;
opacity: 0;
animation: particleFloat 8s infinite ease-in-out;
}
@keyframes particleFloat {
0% { opacity: 0; transform: translateY(100vh) scale(0); }
10% { opacity: 0.8; }
90% { opacity: 0.3; }
100% { opacity: 0; transform: translateY(-10vh) scale(1.5); }
}
.horizon-ring {
position: fixed;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 600px; height: 600px;
border: 1px solid rgba(0,212,255,0.05);
border-radius: 50%;
pointer-events: none;
z-index: 0;
animation: horizonPulse 6s ease-in-out infinite;
}
.horizon-ring::before {
content: '';
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 100%; height: 100%;
border: 1px solid rgba(0,212,255,0.03);
border-radius: 50%;
animation: horizonSpin 20s linear infinite;
}
@keyframes horizonPulse {
0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.02); }
}
@keyframes horizonSpin {
from { transform: translate(-50%, -50%) rotate(0deg); }
to { transform: translate(-50%, -50%) rotate(360deg); }
}
.nav-bar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
background: rgba(10,14,23,0.85);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border-subtle);
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
height: 60px;
}
.nav-logo {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
font-weight: 600;
color: var(--qgr-cyan);
letter-spacing: 2px;
}
.nav-logo span { color: var(--un-gold); }
.nav-links {
display: flex;
gap: 1.5rem;
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
transition: color 0.3s;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px; left: 0;
width: 0; height: 1px;
background: var(--qgr-cyan);
transition: width 0.3s;
}
.nav-links a:hover { color: var(--qgr-cyan); }
.nav-links a:hover::after { width: 100%; }
.hero {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 6rem 2rem 4rem;
z-index: 2;
overflow: hidden;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.4rem 1rem;
border: 1px solid var(--border-glow);
border-radius: 100px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
color: var(--qgr-cyan);
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 2rem;
animation: fadeInUp 1s ease-out;
}
.hero-badge .pulse-dot {
width: 6px; height: 6px;
background: var(--accent-success);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
font-family: 'Crimson Text', serif;
font-size: clamp(2.5rem, 6vw, 5rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #fff 0%, var(--qgr-cyan) 50%, var(--un-gold) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-subtitle {
font-family: 'Crimson Text', serif;
font-size: clamp(1.1rem, 2.5vw, 1.6rem);
font-style: italic;
color: var(--text-secondary);
max-width: 700px;
margin-bottom: 2rem;
animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-meta {
display: flex;
gap: 2rem;
flex-wrap: wrap;
justify-content: center;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--text-muted);
animation: fadeInUp 1s ease-out 0.6s both;
}
.hero-meta span { display: flex; align-items: center; gap: 0.4rem; }
.hero-meta .meta-label { color: var(--qgr-cyan); }
.hero-cta {
margin-top: 3rem;
display: flex;
gap: 1rem;
animation: fadeInUp 1s ease-out 0.8s both;
}
.btn-primary {
padding: 0.9rem 2.5rem;
background: linear-gradient(135deg, var(--qgr-cyan), #0088aa);
color: var(--bg-deep);
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 0.85rem;
letter-spacing: 1px;
text-transform: uppercase;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 40px rgba(0,212,255,0.3);
}
.btn-secondary {
padding: 0.9rem 2.5rem;
background: transparent;
color: var(--qgr-cyan);
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 0.85rem;
letter-spacing: 1px;
text-transform: uppercase;
border: 1px solid var(--border-glow);
border-radius: 4px;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-secondary:hover {
background: rgba(0,212,255,0.1);
border-color: var(--qgr-cyan);
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.section {
position: relative;
z-index: 2;
padding: 6rem 2rem;
max-width: 1100px;
margin: 0 auto;
}
.section-header {
margin-bottom: 3rem;
}
.section-number {
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
color: var(--qgr-cyan);
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.section h2 {
font-family: 'Crimson Text', serif;
font-size: clamp(1.8rem, 4vw, 2.8rem);
font-weight: 700;
color: #fff;
margin-bottom: 1rem;
}
.section h3 {
font-family: 'Crimson Text', serif;
font-size: 1.4rem;
font-weight: 600;
color: var(--text-primary);
margin: 2.5rem 0 1rem;
}
.section p {
color: var(--text-secondary);
font-size: 1.05rem;
margin-bottom: 1.2rem;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.card {
background: var(--bg-panel);
border: 1px solid var(--border-subtle);
border-radius: 12px;
padding: 2rem;
transition: all 0.4s;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--qgr-cyan), transparent);
opacity: 0;
transition: opacity 0.4s;
}
.card:hover {
border-color: var(--border-glow);
transform: translateY(-4px);
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.card:hover::before { opacity: 1; }
.card-icon {
width: 48px; height: 48px;
border-radius: 10px;
background: rgba(0,212,255,0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1rem;
}
.card h4 {
font-size: 1.1rem;
font-weight: 600;
color: #fff;
margin-bottom: 0.5rem;
}
.card p {
font-size: 0.9rem;
color: var(--text-secondary);
margin: 0;
}
.data-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
font-size: 0.9rem;
}
.data-table thead {
background: var(--bg-elevated);
}
.data-table th {
padding: 1rem;
text-align: left;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
font-weight: 500;
color: var(--qgr-cyan);
letter-spacing: 1px;
text-transform: uppercase;
border-bottom: 1px solid var(--border-glow);
}
.data-table td {
padding: 1rem;
border-bottom: 1px solid var(--border-subtle);
color: var(--text-secondary);
}
.data-table tr:hover td {
background: rgba(0,212,255,0.03);
color: var(--text-primary);
}
.data-table .highlight {
color: var(--qgr-cyan);
font-weight: 600;
}
.math-block {
background: var(--bg-panel);
border-left: 3px solid var(--qgr-cyan);
padding: 1.5rem 2rem;
margin: 1.5rem 0;
border-radius: 0 8px 8px 0;
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
color: var(--text-primary);
overflow-x: auto;
}
.math-block .math-label {
font-size: 0.7rem;
color: var(--qgr-cyan);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 0.5rem;
display: block;
}
.cite-link {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.15rem 0.5rem;
background: rgba(0,212,255,0.08);
border: 1px solid rgba(0,212,255,0.2);
border-radius: 4px;
color: var(--qgr-cyan);
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
text-decoration: none;
transition: all 0.2s;
vertical-align: middle;
margin-left: 0.2rem;
}
.cite-link:hover {
background: rgba(0,212,255,0.2);
border-color: var(--qgr-cyan);
}
.cite-link .ext-icon {
font-size: 0.6rem;
opacity: 0.6;
}
.timeline {
position: relative;
padding-left: 3rem;
margin: 2rem 0;
}
.timeline::before {
content: '';
position: absolute;
left: 0; top: 0; bottom: 0;
width: 2px;
background: linear-gradient(180deg, var(--qgr-cyan), transparent);
}
.timeline-item {
position: relative;
padding-bottom: 2.5rem;
}
.timeline-item::before {
content: '';
position: absolute;
left: -3rem; top: 0.3rem;
width: 12px; height: 12px;
background: var(--bg-deep);
border: 2px solid var(--qgr-cyan);
border-radius: 50%;
transform: translateX(-5px);
}
.timeline-item.active::before {
background: var(--qgr-cyan);
box-shadow: 0 0 15px rgba(0,212,255,0.5);
}
.timeline-year {
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
color: var(--qgr-cyan);
font-weight: 600;
margin-bottom: 0.3rem;
}
.timeline-title {
font-size: 1.1rem;
font-weight: 600;
color: #fff;
margin-bottom: 0.3rem;
}
.timeline-desc {
font-size: 0.9rem;
color: var(--text-secondary);
}
.timeline-budget {
display: inline-block;
margin-top: 0.5rem;
padding: 0.2rem 0.6rem;
background: rgba(201,162,39,0.1);
border: 1px solid rgba(201,162,39,0.2);
border-radius: 4px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
color: var(--un-gold);
}
.sim-preview {
background: var(--bg-panel);
border: 1px solid var(--border-subtle);
border-radius: 12px;
overflow: hidden;
margin: 2rem 0;
}
.sim-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.5rem;
background: var(--bg-elevated);
border-bottom: 1px solid var(--border-subtle);
}
.sim-header h4 {
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
color: var(--qgr-cyan);
letter-spacing: 1px;
}
.sim-badge {
padding: 0.2rem 0.6rem;
background: rgba(46,213,115,0.1);
border: 1px solid rgba(46,213,115,0.2);
border-radius: 4px;
font-size: 0.65rem;
color: var(--accent-success);
font-family: 'JetBrains Mono', monospace;
}
.sim-body {
padding: 1.5rem;
}
.sim-code {
background: #0d1117;
border-radius: 8px;
padding: 1.5rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
line-height: 1.8;
color: #c9d1d9;
overflow-x: auto;
}
.sim-code .kw { color: #ff7b72; }
.sim-code .fn { color: #d2a8ff; }
.sim-code .str { color: #a5d6ff; }
.sim-code .num { color: #79c0ff; }
.sim-code .cmt { color: #8b949e; }
.gov-tree {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
margin: 2rem 0;
}
.gov-node {
background: var(--bg-panel);
border: 1px solid var(--border-subtle);
border-radius: 8px;
padding: 1rem 2rem;
text-align: center;
min-width: 200px;
transition: all 0.3s;
}
.gov-node:hover {
border-color: var(--border-glow);
transform: scale(1.02);
}
.gov-node.top {
border-color: var(--un-gold);
background: rgba(201,162,39,0.05);
}
.gov-node h5 {
font-size: 0.85rem;
font-weight: 600;
color: #fff;
margin-bottom: 0.2rem;
}
.gov-node p {
font-size: 0.75rem;
color: var(--text-muted);
margin: 0;
}
.gov-connector {
width: 2px;
height: 20px;
background: linear-gradient(180deg, var(--border-subtle), var(--qgr-cyan));
}
.gov-row {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.reveal {
opacity: 0;
transform: translateY(40px);
transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.footer {
border-top: 1px solid var(--border-subtle);
padding: 4rem 2rem;
text-align: center;
color: var(--text-muted);
font-size: 0.85rem;
}
.footer .un-seal {
width: 60px; height: 60px;
margin: 0 auto 1.5rem;
border: 2px solid var(--un-gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
opacity: 0.5;
}
@media (max-width: 768px) {
.nav-links { display: none; }
.hero h1 { font-size: 2.2rem; }
.section { padding: 3rem 1rem; }
.card-grid { grid-template-columns: 1fr; }
.timeline { padding-left: 2rem; }
.timeline-item::before { left: -2rem; }
}
</style>
</head>
<body>
<canvas id="quantum-canvas"></canvas>
<div class="particle-field" id="particle-field"></div>
<div class="horizon-ring"></div>
<nav class="nav-bar">
<div class="nav-logo">QGR<span>-α</span> // USEC</div>
<ul class="nav-links">
<li><a href="#executive">Executive</a></li>
<li><a href="#physics">Physics</a></li>
<li><a href="#parameters">Parameters</a></li>
<li><a href="#architecture">Architecture</a></li>
<li><a href="#simulations">Simulations</a></li>
<li><a href="#timeline">Timeline</a></li>
<li><a href="#governance">Governance</a></li>
</ul>
</nav>
<header class="hero">
<div class="hero-badge"><span class="pulse-dot"></span>United Nations Special Petition — Volume VII</div>
<h1>Quantum Gravitational<br>Reactor Initiative</h1>
<p class="hero-subtitle">A Proposal for Orbital Clean Energy Generation via Controlled Primordial Black Hole Hawking Radiation</p>
<div class="hero-meta">
<span><span class="meta-label">Authority:</span> CP-2026-QGRα-VII-USEC</span>
<span><span class="meta-label">Date:</span> 26 July 2026</span>
<span><span class="meta-label">Funding:</span> USEC — $99.0B</span>
<span><span class="meta-label">Horizon:</span> 2026–2080</span>
</div>
<div class="hero-cta">
<a href="#executive" class="btn-primary">Enter the Petition</a>
<a href="#simulations" class="btn-secondary">View Simulations</a>
</div>
</header>
<section class="section" id="executive">
<div class="section-header reveal"><div class="section-number">Section 01</div><h2>Executive Summary</h2></div>
<div class="reveal">
<p>The United Nations Special Energy Commission (USEC) presents <strong>one flagship initiative</strong> for concentrated investment: the <strong>Quantum Gravitational Reactor Alpha (QGR-α)</strong>.</p>
<p>QGR-α is a proposed orbital energy-generation facility centered on a captured or synthesized <strong>primordial black hole (PBH)</strong> of approximately 10¹² kg. By leveraging the well-established physics of <strong>Hawking radiation</strong> <a href="https://ui.adsabs.harvard.edu/abs/1976PhRvD..13..198P/abstract" target="_blank" class="cite-link">[1] ↗</a>, the facility converts quantum evaporation into usable electrical power.</p>
<div class="card-grid">
<div class="card"><div class="card-icon">⚡</div><h4>Carbon-Free Baseload</h4><p>Gigawatt-scale continuous power with zero carbon emissions and no fuel scarcity constraints.</p></div>
<div class="card"><div class="card-icon">🛡️</div><h4>Inherent Safety</h4><p>Orbital placement at Earth-Moon L5 eliminates Earth-bound catastrophic scenarios. Natural off-switch: cease refueling.</p></div>
<div class="card"><div class="card-icon">∞</div><h4>Multi-Trillion-Year Lifetime</h4><p>A 10¹² kg singularity has a natural Hawking lifetime exceeding the age of the universe by orders of magnitude.</p></div>
<div class="card"><div class="card-icon">🌍</div><h4>Global Equity</h4><p>Open-science mandate with power purchase agreements prioritizing least-developed nations at subsidized rates.</p></div>
</div>
</div>
</section>
<section class="section" id="physics">
<div class="section-header reveal"><div class="section-number">Section 02</div><h2>Theoretical Foundation</h2></div>
<div class="reveal">
<p>In 1974, Stephen Hawking demonstrated that black holes emit thermal radiation due to quantum effects near the event horizon <a href="https://arxiv.org/html/2502.13026v1" target="_blank" class="cite-link">[2] ↗</a>. For primordial black holes with masses between 10⁹ and 10¹⁵ kg, the Hawking temperature and power output fall into an engineerable regime.</p>
<h3>The Governing Equations</h3>
<p>For a Schwarzschild black hole of mass M, derived directly from Einstein field equations and QFT in curved spacetime <a href="https://arxiv.org/abs/2507.03778" target="_blank" class="cite-link">[3] ↗</a>:</p>
<div class="math-block"><span class="math-label">Schwarzschild Radius</span>r_s = 2GM / c²</div>
<div class="math-block"><span class="math-label">Hawking Temperature</span>T_H = ℏc³ / (8πGMk_B)<br><span style="font-size:0.75rem;color:var(--text-muted);">Derived from Bogoliubov transformations between ingoing/outgoing modes <a href="https://link.springer.com/article/10.1140/epjc/s10052-024-13166-x" target="_blank" class="cite-link">[4] ↗</a></span></div>
<div class="math-block"><span class="math-label">Hawking Power (Stefan-Boltzmann)</span>P = ℏc⁶ / (15360πG²M²)</div>
<div class="math-block"><span class="math-label">Evaporation Lifetime</span>τ = 5120πG²M³ / (ℏc⁴)<br><span style="font-size:0.75rem;color:var(--text-muted);">For M = 10¹² kg: τ ~ 2.7 × 10¹² years <a href="https://arxiv.org/html/2605.03922v1" target="_blank" class="cite-link">[5] ↗</a></span></div>
<h3>Particle Content at T_H ~ 10¹¹ K</h3>
<p>Page (1976) calculated relative emission rates for massless particles <a href="https://ui.adsabs.harvard.edu/abs/1976PhRvD..13..198P/abstract" target="_blank" class="cite-link">[1] ↗</a>:</p>
<div class="card-grid">
<div class="card"><div class="card-icon" style="background:rgba(255,71,87,0.1);">γ</div><h4>Gamma Photons</h4><p>~35% of emitted power. High-energy gamma spectrum requiring High-Z calorimetric absorption.</p></div>
<div class="card"><div class="card-icon" style="background:rgba(0,212,255,0.1);">e⁻/e⁺</div><h4>Electron-Positron Pairs</h4><p>~30% of emitted power. Charged particles divertible via magnetic fields for direct MHD conversion.</p></div>
<div class="card"><div class="card-icon" style="background:rgba(255,165,2,0.1);">ν</div><h4>Neutrinos</h4><p |