/* prototype.bar - Colors: #FF3366, #00E5FF, #39FF14, #F0F0F5, #0A0A0F */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #F0F0F5; background: #0A0A0F; 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(3rem, 7vw, 6rem); font-weight: 700; color: #F0F0F5; background: linear-gradient(90deg, #FF3366, #00E5FF, #39FF14); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: #00E5FF; margin-top: 12px; }

.content { max-width: 680px; margin: 0 auto; padding: 0 24px 80px; }
.block { padding: 40px 0; border-bottom: 1px solid rgba(240,240,245,0.06); opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.block.visible { opacity: 1; transform: translateY(0); }
.block.accent { border-left: 3px solid #FF3366; padding-left: 24px; }

.label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: #39FF14; letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
.heading { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: #F0F0F5; margin-bottom: 8px; }
.text { font-size: 0.95rem; line-height: 1.8; color: rgba(240,240,245,0.5); }
