/* Ethereon brand — matches ethereon.io */
.ethereon-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.ethereon-brand:hover {
    opacity: 0.92;
}

.ethereon-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.22), rgba(0, 204, 102, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.4);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 14px rgba(0, 255, 136, 0.2), 0 0 16px rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.ethereon-brand .brand-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
}

.ethereon-brand .brand-mark svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.7));
}

.ethereon-brand .brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 1.08rem;
    color: #e8f5ee;
    line-height: 1;
}

.ethereon-brand .brand-text .accent {
    color: #00ff88;
}

.ethereon-brand.size-lg .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
}

.ethereon-brand.size-lg .brand-mark svg {
    width: 32px;
    height: 32px;
}

.ethereon-brand.size-lg .brand-text {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
}

.ethereon-brand.size-xl .brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.ethereon-brand.size-xl .brand-mark svg {
    width: 40px;
    height: 40px;
}

.ethereon-brand.size-xl .brand-text {
    font-size: 2rem;
    letter-spacing: 0.08em;
}

.ethereon-brand.size-sm .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.ethereon-brand.size-sm .brand-mark svg {
    width: 20px;
    height: 20px;
}

.ethereon-brand.size-sm .brand-text {
    font-size: 0.95rem;
}

.preloader-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.preloader-logo-wrap .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.22), rgba(0, 204, 102, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.4);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 14px rgba(0, 255, 136, 0.2), 0 0 20px rgba(0, 255, 136, 0.25);
    animation: brand-pulse 2.5s ease-in-out infinite;
}

.preloader-logo-wrap .brand-mark svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.8));
}

.preloader-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3em;
    font-size: 1.4rem;
    color: #e8f5ee;
}

.preloader-logo-text .accent {
    color: #00ff88;
}

@keyframes brand-pulse {
    0%, 100% { box-shadow: inset 0 0 14px rgba(0, 255, 136, 0.2), 0 0 20px rgba(0, 255, 136, 0.25); }
    50% { box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.35), 0 0 32px rgba(0, 255, 136, 0.4); }
}

/* Ambient deployment backdrop */
.ambient-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: orb-float 20s ease-in-out infinite;
}

.ambient-orb.orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.25), transparent 70%);
    top: -120px;
    right: -80px;
}

.ambient-orb.orb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.12), transparent 70%);
    bottom: 10%;
    left: -100px;
    animation-delay: -7s;
}

.ambient-orb.orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 204, 102, 0.15), transparent 70%);
    top: 45%;
    right: 15%;
    animation-delay: -12s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

.dashboard-hero-panel {
    position: relative;
    margin-bottom: 32px;
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.12);
    background:
        linear-gradient(135deg, rgba(0, 255, 136, 0.06) 0%, rgba(2, 8, 6, 0.4) 50%, rgba(0, 170, 255, 0.04) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.dashboard-hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
}

.dashboard-hero-panel .hero-watermark {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.07;
    pointer-events: none;
}

.dashboard-hero-panel .hero-watermark svg {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

.dashboard-hero-inner {
    position: relative;
    z-index: 1;
}
