/* Universal Base Corporate Theme Variables & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f172a;
    color: #f1f5f9;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}

.accent-text {
    color: #38bdf8;
}

.gradient-text {
    background: linear-gradient(90deg, #38bdf8, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation Layout Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1e293b;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #f1f5f9;
}

.nav-btn {
    background-color: transparent;
    border: 1px solid #38bdf8;
    color: #38bdf8;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-btn:hover {
    background-color: rgba(56, 189, 248, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-wallet-btn {
    background: rgba(8, 14, 28, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.65);
    color: #38bdf8;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: monospace;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.25s, border-color 0.25s;
    box-shadow:
        0 0 12px rgba(56, 189, 248, 0.2),
        inset 0 0 12px rgba(56, 189, 248, 0.06);
    white-space: nowrap;
}

.nav-wallet-btn:hover {
    background: rgba(56, 189, 248, 0.12);
    border-color: #7dd3fc;
    box-shadow:
        0 0 22px rgba(56, 189, 248, 0.45),
        0 0 0 1px rgba(56, 189, 248, 0.35),
        inset 0 0 16px rgba(56, 189, 248, 0.1);
}

.nav-wallet-btn.connected {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.55);
    box-shadow:
        0 0 16px rgba(74, 222, 128, 0.25),
        inset 0 0 12px rgba(74, 222, 128, 0.08);
}

/* Web3 Wallet Modal */
.wallet-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.wallet-modal[hidden] {
    display: none !important;
}

.wallet-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 14, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.wallet-modal-panel {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 0 0 1px rgba(74, 222, 128, 0.08) inset,
        0 24px 64px rgba(0, 0, 0, 0.65),
        0 0 48px rgba(56, 189, 248, 0.15);
    animation: wallet-modal-in 0.28s ease-out;
}

@keyframes wallet-modal-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.wallet-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.wallet-modal-header h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.wallet-modal-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}

.wallet-modal-close:hover {
    color: #f1f5f9;
}

.wallet-modal-subtitle {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 20px;
}

.wallet-provider-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.wallet-provider-btn {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    background: rgba(8, 14, 28, 0.65);
    color: #f1f5f9;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.25s;
}

.wallet-provider-btn:hover {
    border-color: rgba(56, 189, 248, 0.55);
    background: rgba(56, 189, 248, 0.08);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.wallet-provider-icon {
    font-size: 22px;
}

.wallet-provider-name {
    font-weight: 700;
    font-size: 14px;
}

.wallet-provider-chain {
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.08em;
}

.wallet-manual-entry label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.wallet-manual-row {
    display: flex;
    gap: 8px;
}

.wallet-manual-row input {
    flex: 1;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 11px 12px;
    color: #f1f5f9;
    font-family: monospace;
    font-size: 12px;
    outline: none;
}

.wallet-manual-row input:focus {
    border-color: #38bdf8;
}

.wallet-manual-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: #0f172a;
    border: none;
    border-radius: 6px;
    padding: 11px 16px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}

/* Hardware Telemetry Grid */
.hardware-telemetry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.9);
    background: rgba(8, 14, 28, 0.45);
    position: relative;
    z-index: 2;
}

.telemetry-cell {
    padding: 10px 8px;
    border-radius: 6px;
    border: 1px solid rgba(56, 189, 248, 0.18);
    background: rgba(2, 6, 14, 0.75);
    box-shadow:
        0 0 12px rgba(56, 189, 248, 0.06),
        inset 0 0 10px rgba(56, 189, 248, 0.03);
}

.telemetry-label {
    font-family: monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 6px;
}

.telemetry-value {
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    color: #cbd5e1;
    line-height: 1.35;
}

.telemetry-uptime {
    color: #38bdf8;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.telemetry-sync-pulse {
    color: #22d3ee;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.55);
    animation: sync-pulse 2s ease-in-out infinite;
}

@keyframes sync-pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(34, 211, 238, 0.55); }
    50% { opacity: 0.75; text-shadow: 0 0 18px rgba(34, 211, 238, 0.85); }
}

/* Global Network Terminal Feed */
.global-network-terminal {
    position: relative;
    z-index: 4;
    margin-top: 16px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.6);
}

.global-terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(8, 14, 28, 0.98) 100%);
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

.global-terminal-title {
    flex: 1;
    margin-left: 6px;
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #64748b;
}

.global-terminal-live {
    font-family: monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #38bdf8;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.08);
}

.global-terminal-feed {
    max-height: 120px;
    overflow-y: auto;
    padding: 10px 12px;
    font-family: monospace;
    font-size: 10px;
    line-height: 1.6;
    color: #94a3b8;
    scrollbar-width: thin;
    scrollbar-color: #334155 transparent;
}

.global-terminal-line {
    padding: 2px 0;
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
    animation: terminal-line-in 0.35s ease-out;
}

.global-terminal-line:last-child {
    border-bottom: none;
}

.global-terminal-line .log-tag-sys { color: #38bdf8; }
.global-terminal-line .log-tag-sec { color: #4ade80; }
.global-terminal-line .log-tag-ledger { color: #c084fc; }

@keyframes terminal-line-in {
    from { opacity: 0; transform: translateX(-6px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Institutional Dashboard Footer Strip */
.dashboard-footer-strip {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-top: 16px;
    padding: 10px 14px;
    border: 1px solid rgba(51, 65, 85, 0.55);
    border-radius: 6px;
    background: rgba(8, 14, 28, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.25);
    overflow-x: auto;
}

.dashboard-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    font-size: 0.75rem;
    color: #888;
    box-sizing: border-box;
}

.footer-strip-segment {
    font-family: monospace;
    font-weight: 600;
    line-height: 1.4;
    flex-shrink: 0;
}

.footer-strip-left {
    text-align: left;
}

.footer-strip-center {
    flex: 1;
    text-align: center;
    letter-spacing: 0.04em;
    padding: 0 12px;
}

.footer-status-dot {
    display: inline-block;
    margin-right: 4px;
    color: #4ade80;
    animation: footer-emerald-pulse 2.4s ease-in-out infinite;
}

@keyframes footer-emerald-pulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 6px rgba(74, 222, 128, 0.45);
    }
    50% {
        opacity: 0.72;
        text-shadow: 0 0 14px rgba(74, 222, 128, 0.85);
    }
}

.footer-strip-right {
    text-align: right;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Hero Section Layout Matrices */
.hero-section {
    padding: 160px 24px 100px 24px;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.15) 0%, transparent 60%);
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.badge-container {
    margin-bottom: 24px;
}

.hero-badge {
    background-color: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 40px auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.primary-btn {
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.1s;
}

.primary-btn:hover {
    transform: translateY(-1px);
}

.secondary-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.secondary-link:hover {
    color: #f1f5f9;
}

/* Section Header Typography */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
    padding: 0 24px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: #94a3b8;
    font-size: 15px;
}

/* Features Component Section */
.features-section {
    padding: 100px 24px;
    background-color: #0b0f19;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 0 24px;
}

.feature-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.card-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #94a3b8;
    font-size: 14px;
}

.item-red { border-top: 4px solid #ef4444; }
.item-blue { border-top: 4px solid #38bdf8; }
.item-green { border-top: 4px solid #4ade80; }

/* Architecture Mapping Grid Layout */
.architecture-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.architecture-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 64px;
    align-items: center;
    padding: 0 24px;
}

.arch-text-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.arch-text-content > p {
    color: #94a3b8;
    margin-bottom: 40px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 14px;
    font-weight: 800;
    color: #38bdf8;
    background-color: rgba(56, 189, 248, 0.1);
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-item p {
    color: #94a3b8;
    font-size: 14px;
}

.arch-visual-content {
    background-color: #0b0f19;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 40px;
}

.matrix-box {
    border: 1px dashed #334155;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    font-family: monospace;
}

.matrix-title {
    color: #64748b;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 20px;
}

.matrix-flow {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
}

.matrix-arrow {
    color: #64748b;
    margin: 16px 0;
    font-weight: bold;
}

.matrix-target {
    background-color: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
}

/* Tokenomics Matrix Grid Area */
.matrix-section {
    padding: 100px 24px;
    background-color: #0b0f19;
    border-top: 1px solid #1e293b;
}

.matrix-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.matrix-inner h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.matrix-inner p {
    color: #94a3b8;
    margin-bottom: 48px;
}

.matrix-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.stat-box {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 32px;
}

.stat-num {
    font-size: 40px;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 12px;
    font-family: monospace;
}

/* Embedded Terminal Dashboard System Layout Block */
.terminal-section {
    padding: 80px 16px 100px;
    background: linear-gradient(180deg, #0f172a 0%, #070a12 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terminal-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
}

.master-cockpit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.cockpit-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.control-deck-download {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #334155;
    background-color: #1e293b;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
}

.control-deck-download .network-badge {
    align-self: center;
}

.control-deck-download .desktop-download-btn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cockpit-metrics-deck .ledger-card {
    height: 100%;
}

.cockpit-metrics-deck .node-resilience-profile {
    margin: 0 0 12px;
}

.terminal-profile-container .terminal-section-header {
    margin: 0 auto 8px;
    padding: 0;
    max-width: 100%;
}

.terminal-profile-container .terminal-section-header h2 {
    margin-bottom: 8px;
}

.terminal-profile-container .terminal-section-header p {
    margin-bottom: 0;
}

.app-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

/* Global Network Strength Counter */
.network-strength-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(8, 14, 28, 0.7);
    box-shadow:
        0 0 24px rgba(56, 189, 248, 0.15),
        inset 0 0 20px rgba(56, 189, 248, 0.04);
}

.network-strength-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
    animation: strength-glow 3s ease-in-out infinite;
    pointer-events: none;
}

.network-strength-label {
    position: relative;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #64748b;
    margin-bottom: 8px;
}

.network-strength-value {
    position: relative;
    font-family: monospace;
    font-size: 22px;
    font-weight: 800;
    color: #38bdf8;
    text-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
}

@keyframes strength-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Early Adopter Founder Badge */
.founder-badge {
    display: block;
    text-align: center;
    font-family: monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #c084fc;
    padding: 8px 12px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid rgba(192, 132, 252, 0.45);
    background: rgba(192, 132, 252, 0.1);
    box-shadow:
        0 0 18px rgba(192, 132, 252, 0.25),
        inset 0 0 12px rgba(192, 132, 252, 0.08);
    animation: founder-pulse 2.5s ease-in-out infinite;
}

.founder-badge[hidden] {
    display: none !important;
}

@keyframes founder-pulse {
    0%, 100% { box-shadow: 0 0 18px rgba(192, 132, 252, 0.25), inset 0 0 12px rgba(192, 132, 252, 0.08); }
    50% { box-shadow: 0 0 28px rgba(192, 132, 252, 0.45), inset 0 0 16px rgba(192, 132, 252, 0.14); }
}

/* Eco / Turbo Mode Toggle */
.turbo-control-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
}

.turbo-switch-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.turbo-mode-label {
    font-family: monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.turbo-mode-eco { color: #4ade80; }
.turbo-mode-turbo { color: #f87171; }

.turbo-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.turbo-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.turbo-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid #334155;
    border-radius: 999px;
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.turbo-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
    transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.turbo-switch input:checked + .turbo-slider {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.2);
}

.turbo-switch input:checked + .turbo-slider::before {
    transform: translateX(24px);
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.7);
}

.turbo-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.08);
}

.turbo-warning[hidden] {
    display: none !important;
}

.turbo-warning-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: warning-blink 0.8s ease-in-out infinite;
    flex-shrink: 0;
}

.turbo-warning-text {
    font-family: monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #f87171;
    animation: warning-text-flicker 1.2s ease-in-out infinite;
}

@keyframes warning-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.85); }
}

@keyframes warning-text-flicker {
    0%, 100% { opacity: 1; }
    45% { opacity: 0.7; }
    50% { opacity: 1; }
    55% { opacity: 0.65; }
}

/* Latency Micro-Graph Canvas */
.latency-graph-wrap {
    position: relative;
    z-index: 2;
    padding: 8px 8px 4px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.9);
}

.latency-graph-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-family: monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #64748b;
}

.latency-readout {
    color: #38bdf8;
    transition: color 0.2s, text-shadow 0.2s;
}

.latency-readout.latency-spike-flash {
    color: #7dd3fc;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.latency-graph-canvas {
    display: block;
    width: 100%;
    height: 72px;
    border-radius: 4px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    background: rgba(2, 6, 14, 0.9);
}

.dashboard-card, .form-card, .ledger-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
}

/* Protocol Ignition Gateway — Premium Control Deck Login */
.protocol-ignition-gateway {
    background: rgba(10, 10, 12, 0.95);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 25px;
    box-shadow:
        0 0 24px rgba(245, 158, 11, 0.08),
        inset 0 0 18px rgba(0, 0, 0, 0.35);
}

.ignition-gateway-title {
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fbbf24;
}

.ignition-input-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.protocol-ignition-gateway input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.protocol-ignition-gateway input[type="email"]:focus {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

.protocol-ignition-gateway .ignition-init-btn,
.protocol-ignition-gateway #btn-join {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0a0a0c;
    border: 1px solid rgba(251, 191, 36, 0.65);
    border-radius: 6px;
    padding: 13px 16px;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.25);
    transition: box-shadow 0.2s, transform 0.15s;
}

.protocol-ignition-gateway .ignition-init-btn:hover,
.protocol-ignition-gateway #btn-join:hover {
    box-shadow: 0 0 22px rgba(245, 158, 11, 0.4);
    transform: translateY(-1px);
}

.protocol-ignition-gateway .ignition-manual-btn {
    margin-top: 12px;
    border-color: rgba(245, 158, 11, 0.2);
}

.protocol-ignition-gateway .feedback-msg {
    margin-top: 10px;
}

.protocol-ignition-gateway.ignition-gateway-fading {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.protocol-ignition-gateway.ignition-gateway-dismissed {
    display: none;
}

.ignition-step {
    width: 100%;
    box-sizing: border-box;
}

.otp-pin-label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #fbbf24;
}

.protocol-ignition-gateway input[type="text"]#pinInput {
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #f8fafc;
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 0.35em;
    font-weight: 700;
    padding: 12px 10px;
    border-radius: 6px;
}

.protocol-ignition-gateway input[type="text"]#pinInput:focus {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
    outline: none;
}

.protocol-ignition-gateway .ignition-verify-btn {
    font-size: 0.78rem;
}

/* Waitlist Node Slot — centered symmetrical block */
.node-slot-form-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.node-slot-form-card h3 {
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
}

.node-slot-form-card .input-group,
.node-slot-form-card .feedback-msg,
.node-slot-form-card .manual-btn {
    width: 100%;
    box-sizing: border-box;
}

/* Cyber-Terminal Glass Panel — Telemetry Hub */
.cyber-terminal-panel {
    position: relative;
    overflow: hidden;
    background: rgba(8, 14, 28, 0.62);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(56, 189, 248, 0.22);
    box-shadow:
        0 0 0 1px rgba(74, 222, 128, 0.06) inset,
        0 18px 48px rgba(0, 0, 0, 0.55),
        0 0 32px rgba(56, 189, 248, 0.08);
}

.crt-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0px,
        rgba(0, 0, 0, 0) 2px,
        rgba(0, 0, 0, 0.18) 3px,
        rgba(0, 0, 0, 0.18) 4px
    );
    animation: crt-flicker 6s linear infinite;
}

.crt-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

.cyber-terminal-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.55;
}

.cyber-terminal-panel > .ledger-header,
.cyber-terminal-panel > .cyber-terminal-frame {
    position: relative;
    z-index: 4;
}

.desktop-download-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    font-family: monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #0f172a;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    border: 1px solid rgba(56, 189, 248, 0.55);
    border-radius: 6px;
    padding: 5px 10px;
    box-shadow:
        0 0 10px rgba(56, 189, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
}

.desktop-download-btn:hover {
    transform: translateY(-1px);
    border-color: #7dd3fc;
    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.5),
        0 0 36px rgba(56, 189, 248, 0.2),
        0 0 0 2px rgba(56, 189, 248, 0.4);
}

.desktop-download-btn:active {
    transform: translateY(0);
    box-shadow:
        0 0 14px rgba(56, 189, 248, 0.35),
        0 0 0 2px rgba(56, 189, 248, 0.3);
}

.cyber-terminal-frame {
    border: 1px solid rgba(51, 65, 85, 0.9);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(2, 6, 14, 0.75);
    box-shadow:
        inset 0 0 24px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(74, 222, 128, 0.06);
}

.terminal-frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

.frame-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.frame-dot-red { background: #ef4444; box-shadow: 0 0 6px rgba(239, 68, 68, 0.6); }
.frame-dot-amber { background: #f59e0b; box-shadow: 0 0 6px rgba(245, 158, 11, 0.5); }
.frame-dot-green { background: #4ade80; box-shadow: 0 0 6px rgba(74, 222, 128, 0.6); }

.frame-title {
    flex: 1;
    margin-left: 6px;
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #64748b;
    text-transform: uppercase;
}

.frame-live-tag {
    font-family: monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #4ade80;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(74, 222, 128, 0.35);
    background: rgba(74, 222, 128, 0.08);
    animation: live-pulse 2s ease-in-out infinite;
}

.terminal-viewport {
    position: relative;
    padding: 0 4px 4px;
    background: rgba(0, 0, 0, 0.35);
}

.terminal-viewport::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(74, 222, 128, 0.04) 0%,
        transparent 18%,
        transparent 82%,
        rgba(56, 189, 248, 0.03) 100%
    );
}

@keyframes crt-flicker {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 0.95; }
    52% { opacity: 0.78; }
    54% { opacity: 0.92; }
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(74, 222, 128, 0); }
    50% { opacity: 0.75; box-shadow: 0 0 10px rgba(74, 222, 128, 0.25); }
}

.token-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* Dual-Counter Lifetime Ledger */
.dual-ledger-container {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 12px;
}

.ledger-counter {
    flex: 1;
    min-width: 0;
    padding: 14px 10px;
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.65);
    background: rgba(8, 14, 28, 0.45);
    text-align: center;
    box-sizing: border-box;
}

.ledger-counter-label {
    font-family: monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.ledger-counter-session .ledger-counter-label {
    color: #38bdf8;
}

.ledger-counter-vault .ledger-counter-label {
    color: #fbbf24;
}

.session-ticker-value {
    color: #22d3ee;
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
    animation: session-ticker-pulse 1.2s ease-in-out infinite;
}

.vault-ticker-value {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}

@keyframes session-ticker-pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 12px rgba(34, 211, 238, 0.45); }
    50% { opacity: 0.88; text-shadow: 0 0 18px rgba(34, 211, 238, 0.75); }
}

.balance-ticker {
    font-size: 36px;
    font-weight: 800;
    color: #f1f5f9;
    text-align: center;
    font-family: monospace;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

/* 24-Hour Node Resilience Profile */
.node-resilience-profile {
    margin: 8px 0 10px;
    padding: 10px 10px;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    background: rgba(8, 14, 28, 0.5);
    box-shadow:
        inset 0 0 16px rgba(0, 0, 0, 0.25),
        0 0 14px rgba(56, 189, 248, 0.06);
    overflow: hidden;
    box-sizing: border-box;
}

.resilience-profile-title {
    font-family: monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 8px;
}

.resilience-matrix-grid,
.uptime-matrix-container,
.matrix-grid-container,
#resilience-matrix-grid {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    gap: 4px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 4px 0;
    overflow: hidden;
}

.resilience-block {
    width: 100%;
    aspect-ratio: 1;
    min-width: 0;
    border-radius: 3px;
    border: 1px solid rgba(51, 65, 85, 0.8);
    background: rgba(30, 41, 59, 0.45);
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.resilience-block-active {
    background: rgba(34, 211, 238, 0.85);
    border-color: rgba(34, 211, 238, 0.9);
    box-shadow:
        0 0 6px rgba(34, 211, 238, 0.65),
        0 0 12px rgba(56, 189, 248, 0.35),
        inset 0 0 4px rgba(255, 255, 255, 0.15);
}

.resilience-block-future {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(51, 65, 85, 0.65);
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.35);
}

.resilience-compliance-text,
.telemetry-verification-text-element {
    margin-top: 10px;
    text-align: center;
    font-family: monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #64748b;
    white-space: normal;
    word-break: break-word;
    line-height: 1.45;
    padding: 0 4px;
}

/* Cockpit Widescreen — Tablet/Mobile Column Collapse */
@media (max-width: 900px) {
    .master-cockpit-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
}

/* Node Resilience + Marketplace — Mobile Phone Layout */
@media (max-width: 600px) {
    .terminal-profile-container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    .dual-ledger-container {
        flex-direction: column !important;
        display: flex !important;
        gap: 15px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .dual-ledger-container > div {
        width: 100% !important;
    }

    .uptime-matrix-container,
    .matrix-grid-container,
    #resilience-matrix-grid {
        grid-template-columns: repeat(12, 1fr) !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .node-resilience-profile,
    .dashboard-footer-strip,
    .resilience-profile-title {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .dashboard-footer-inner {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
        white-space: normal !important;
        font-size: 0.65rem !important;
        align-items: center !important;
        padding: 4px 8px !important;
    }

    .footer-strip-segment {
        white-space: normal !important;
        text-align: center !important;
        width: 100% !important;
    }

    footer,
    .footer-container,
    footer div,
    footer span {
        flex-direction: column !important;
        display: flex !important;
        gap: 8px !important;
        text-align: center !important;
        white-space: normal !important;
        font-size: 0.65rem !important;
    }

    footer,
    .footer-container {
        padding: 20px 16px !important;
        align-items: center !important;
    }

    .footer-container p {
        white-space: normal !important;
        line-height: 1.5 !important;
    }

    .hardware-telemetry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ledger-header {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .ledger-header-metrics {
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .network-badge {
        margin-bottom: 20px !important;
        align-self: center !important;
    }

    .desktop-download-btn {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 16px 14px !important;
        font-size: 0.8rem !important;
        text-align: center !important;
        white-space: normal !important;
        margin: 10px 0 !important;
    }

    /* Ensure surrounding container stacks scale to full-width mobile rows without squishing */
    .main-actions-grid,
    .main-transaction-deck,
    .main-actions-card {
        flex-direction: column !important;
        display: flex !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .main-transaction-deck .transaction-pillar {
        width: 100% !important;
        flex: none !important;
    }

    #buyNodeButton,
    #cashOutButton,
    #sendToSolButton {
        width: 100% !important;
        height: auto !important;
        padding: 18px 14px !important;
        font-size: 0.85rem !important;
        box-sizing: border-box !important;
    }

    .telemetry-verification-text-element {
        font-size: 0.65rem !important;
        white-space: normal !important;
        text-align: center !important;
    }
}

.system-status-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Pulsating Network Radar Beacon */
.radar-beacon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-core {
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80, 0 0 16px rgba(74, 222, 128, 0.5);
    z-index: 2;
    animation: radar-core-pulse 2s ease-in-out infinite;
}

.radar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(74, 222, 128, 0.6);
    animation: radar-sweep 2.4s ease-out infinite;
}

.radar-ring-2 {
    animation-delay: 1.2s;
}

@keyframes radar-core-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.85; }
}

@keyframes radar-sweep {
    0% { transform: scale(0.4); opacity: 0.9; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Interactive Input Forms Controllers */
.input-group {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

input[type="email"] {
    flex: 1;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 12px;
    color: #f1f5f9;
    font-size: 14px;
    outline: none;
}

input[type="email"]:focus {
    border-color: #38bdf8;
}

#btn-join {
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.manual-btn {
    width: 100%;
    background-color: transparent;
    border: 1px solid #334155;
    color: #94a3b8;
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
    font-size: 13px;
    margin-top: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.manual-btn:hover {
    color: #f1f5f9;
    border-color: #64748b;
}

.feedback-msg {
    font-size: 13px;
    margin-top: 10px;
    display: none;
    font-weight: 500;
    text-align: center;
}

/* Control Actions — Buy Node / Cash-Out Split Panel */
.control-actions-panel {
    padding: 20px;
}

.control-pillar {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.control-pillar-buy {
    justify-content: flex-start;
}

.buy-node-btn {
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.65);
    color: #fbbf24;
    border-radius: 8px;
    padding: 16px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.25s;
    box-shadow:
        0 0 14px rgba(245, 158, 11, 0.15),
        inset 0 0 12px rgba(245, 158, 11, 0.05);
}

.buy-node-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #fbbf24;
    box-shadow:
        0 0 22px rgba(245, 158, 11, 0.35),
        inset 0 0 16px rgba(245, 158, 11, 0.08);
}

.buy-node-micro {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.45;
    color: #64748b;
    text-align: center;
}

.control-pillar-cashout {
    justify-content: stretch;
}

.cashout-module {
    height: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    background: rgba(8, 14, 28, 0.55);
    box-shadow:
        inset 0 0 18px rgba(0, 0, 0, 0.35),
        0 0 12px rgba(56, 189, 248, 0.06);
}

.cashout-module-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #f1f5f9;
}

/* Dual Cash-Out Ramp Selection Panel */
.cashout-subtitle {
    color: #94a3b8;
    font-size: 11px;
    margin-top: 4px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cashout-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ramp-option-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
    text-align: left;
}

.ramp-option-btn:hover {
    border-color: #64748b;
    background-color: rgba(15, 23, 42, 0.6);
}

.ramp-stripe:hover {
    border-color: #635bff;
}

.ramp-solana:hover {
    border-color: #9945ff;
}

.ramp-icon {
    font-size: 18px;
    margin-bottom: 4px;
}

.ramp-title {
    color: #f1f5f9;
    font-size: 12px;
    font-weight: 700;
}

.ramp-detail {
    color: #64748b;
    font-size: 10px;
    font-weight: 500;
}

/* High-Density Stream Grid Headers Alignment */
.ledger-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.ledger-header-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.ledger-header h2 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #94a3b8;
    text-align: center;
    width: 100%;
}

.network-badge {
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ledger-table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    padding: 10px 8px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.9);
    background: rgba(15, 23, 42, 0.5);
}

.ledger-stream-box {
    display: flex;
    flex-direction: column;
    min-height: 180px;
    max-height: 220px;
    overflow: hidden;
    position: relative;
}

.ledger-stream-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: linear-gradient(180deg, rgba(2, 6, 14, 0.9) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.placeholder-row {
    color: #475569;
    font-size: 12px;
    text-align: center;
    padding: 60px 0;
    font-family: monospace;
}

/* Global Corporate Footer Layout */
.footer-container {
    background-color: #070a12;
    padding: 32px 24px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    text-align: center;
    font-size: 13px;
    color: #475569;
    box-sizing: border-box;
}

.footer-container p {
    width: 100%;
    margin: 0;
}

/* Mobile Screen Media Adaptation Breakpoints */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions { gap: 8px; }
    .nav-wallet-btn { font-size: 9px; padding: 7px 10px; }
    .nav-btn { font-size: 11px; padding: 7px 12px; }
    .hardware-telemetry-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 15px; }
    .architecture-container { grid-template-columns: 1fr; gap: 40px; }
}
