/* multipledger.com */
/* Colors: #0d1a2d, #111d30, #c9a84c, #3a7bd5, #d4cdb8, #8a8370, #d94040 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px; line-height: 1.75; background: #0d1a2d; color: #d4cdb8; overflow-x: hidden; }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: linear-gradient(180deg, #111d30 0%, #0d1a2d 100%); }
.hero-badge { width: 80px; height: 80px; border: 1px solid rgba(201, 168, 76, 0.4); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: 24px; color: #c9a84c; margin-bottom: 32px; opacity: 0; animation: fadeIn 1s 0.3s ease forwards; }
.hero-title { font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: clamp(2.5rem, 5vw, 4rem); color: #d4cdb8; letter-spacing: 0.02em; opacity: 0; animation: fadeIn 1.2s 0.6s ease forwards; }
.hero-sub { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #8a8370; letter-spacing: 0.04em; margin-top: 16px; opacity: 0; animation: fadeIn 1s 1.2s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.dashboard { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-title { font-family: 'Libre Baskerville', serif; font-weight: 400; font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: #d4cdb8; margin-bottom: 32px; text-align: center; }
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bento-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(201, 168, 76, 0.12); border-radius: 16px; padding: 28px; transition: border-color 0.3s ease; }
.bento-card:hover { border-color: rgba(201, 168, 76, 0.35); }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.card-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: #c9a84c; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.card-title { font-family: 'Libre Baskerville', serif; font-weight: 400; font-size: 18px; color: #d4cdb8; margin-bottom: 10px; }
.card-desc { font-size: 14px; color: #8a8370; max-width: 460px; }
.card-metric { display: block; margin-top: 16px; font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: 28px; color: #c9a84c; }
.metric-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 400; color: #8a8370; letter-spacing: 0.04em; }
.spark-row { display: flex; align-items: flex-end; gap: 6px; margin-top: 20px; height: 60px; }
.spark { width: 8px; background: linear-gradient(to top, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.8)); border-radius: 2px; }
.site-footer { text-align: center; padding: 60px 40px; }
.footer-line { width: 40px; height: 1px; background: rgba(201, 168, 76, 0.3); margin: 0 auto 20px; }
.site-footer p { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #8a8370; letter-spacing: 0.06em; }
@media (max-width: 768px) { .bento-grid { grid-template-columns: 1fr; } .bento-wide { grid-column: span 1; } .bento-tall { grid-row: span 1; } .dashboard { padding: 60px 24px; } }
