/* paragram.dev */
/* Colors: #C4A050, #1A2A3A, #6A7A8A, #2A8A8A, #E0E4E8 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #E0E4E8; background: #1A2A3A; overflow-x: hidden; }

.hero { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; color: #E0E4E8; letter-spacing: -0.02em; }
.hero-sub { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: #6A7A8A; margin-top: 8px; }

.content { max-width: 680px; margin: 0 auto; padding: 0 24px 80px; }

.block {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(224,228,232,0.06);
    border-radius: 8px; padding: 32px; margin-bottom: 24px; border-left: 3px solid #2A8A8A;
    opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.block.visible { opacity: 1; transform: translateY(0); }
.block:hover { border-left-color: #C4A050; }

.label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #2A8A8A; letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
.heading { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #E0E4E8; margin-bottom: 8px; }
.text { font-size: 0.95rem; line-height: 1.8; color: #6A7A8A; }
.code-line { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #C4A050; display: block; margin-top: 12px; padding: 8px 12px; background: rgba(196,160,80,0.05); border-radius: 4px; }

@media (max-width: 768px) { .block { padding: 24px 16px; } }
