body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050505;
    color: #ffffff;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

[x-cloak] { display: none !important; }

[id] {
    scroll-margin-top: 90px; 
}

/* Update your <style> tag to include this refined glass behavior */
.glass {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .glass:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.02);
} */

/* .glass:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.02);
} */
.glass:hover {
    background-color: #2569fc10;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #71717a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-blue {
    color: #3b82f6;
}

.section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: #52525b;
    text-transform: uppercase;
}

.product-tag {
    font-family: 'Courier New', Courier, monospace;
    color: #4f46e5;
}

.grid-bg {
    background-image: linear-gradient(to right, #ffffff05 1px, transparent 1px), linear-gradient(to bottom, #ffffff05 1px, transparent 1px);
    background-size: 40px 40px;
}

.protocol-border {
    border-left: 1px solid rgba(59, 130, 246, 0.2);
    padding-left: 2rem;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #9f9fa9;
    font-size: 0.95rem;
}

.prose h2 {
    color: #fafafa;
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.prose strong {
    color: #fafafa;
    font-weight: 700;
}

.grid-bg {
    background-image: radial-gradient(circle, #ffffff05 1px, transparent 1px);
    background-size: 30px 30px;
}

.progress-bar {
    height: 2px;
    background: #2563eb;
    width: 0%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: width 0.1s;
}

.asset-frame {
    display: block;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    max-width: 320px;
    /* Keeps assets from grabbing too much attention */
}

.asset-frame img,
.asset-frame video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.asset-frame:hover img {
    opacity: 1;
}

.asset-caption {
    font-family: monospace;
    font-size: 8px;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    display: block;
}

.blog-content-wrapper img {
    max-width: 100%;
    height: auto !important;
    object-fit: cover;
}
.blog-content-wrapper ul, .blog-content-wrapper li {
    max-width: 100%;
    word-break: break-word;
}
.blog-content-wrapper h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
    text-transform: uppercase;
}