.scene-container { position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; perspective: 800px; z-index: -1; pointer-events: none; } .cube-3d { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; } .face { position: absolute; width: 300px; height: 300px; border: 1px solid rgba(59, 130, 246, 0.4); background: rgba(59, 130, 246, 0.03); box-shadow: 0 0 40px rgba(59, 130, 246, 0.05); } .front { transform: translateZ(150px); } .back { transform: rotateY(180deg) translateZ(150px); } .right { transform: rotateY(90deg) translateZ(150px); } .left { transform: rotateY(-90deg) translateZ(150px); } .top { transform: rotateX(90deg) translateZ(150px); } .bottom { transform: rotateX(-90deg) translateZ(150px); } @media (max-width: 768px) { .scene-container { display: none; } } body { background-color: var(--bg); color: var(--text-main); font-family: 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes glowPulse { 0% { box-shadow: 0 0 20px -10px rgba(59, 130, 246, 0); } 50% { box-shadow: 0 0 30px -10px rgba(59, 130, 246, 0.3); } 100% { box-shadow: 0 0 20px -10px rgba(59, 130, 246, 0); } } .animate-delay-1 { animation: fadeIn 0.8s ease-out forwards; opacity: 0; } .animate-delay-2 { animation: fadeIn 0.8s ease-out 0.2s forwards; opacity: 0; } .animate-delay-3 { animation: fadeIn 0.8s ease-out 0.4s forwards; opacity: 0; } .container { max-width: 1000px; margin: 0 auto; padding: 0 24px; } nav { padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); } .logo { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: -0.03em; display: flex; align-items: center; gap: 10px; } .logo-mark { width: 18px; height: 18px; background: linear-gradient(135deg, #fff 0%, #666 100%); border-radius: 4px; } .status-badge { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; padding: 4px 12px; border: 1px solid var(--border); border-radius: 100px; } .status-dot { width: 6px; height: 6px; background-color: #10b981; border-radius: 50%; box-shadow: 0 0 8px #10b981; } .hero { padding: 8rem 0 6rem 0; position: relative; } .hero::before { content: ''; position: absolute; top: 20%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 600px; height: 400px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); opacity: 0.5; pointer-events: none; z-index: -1; } h1 { font-size: 3.5rem; line-height: 1.1; font-weight: 600; letter-spacing: -0.04em; margin-bottom: 1.5rem; background: linear-gradient(to bottom, #ffffff, #a3a3a3); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .hero p { font-size: 1.25rem; color: var(--text-muted); max-width: 580px; font-weight: 300; } .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; } .section-title { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); } .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 8rem; } .card { background: var(--card-bg); border: 1px solid var(--border); padding: 2rem; border-radius: 12px; text-decoration: none; color: inherit; transition: all 0.3s ease; position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; justify-content: space-between; } .card:hover { border-color: var(--border-hover); transform: translateY(-4px); background: rgba(255, 255, 255, 0.05); } .card-meta { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 1.2rem; } .icon-box { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); font-size: 1.5rem; } .card-header-content { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; } .card h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0px; line-height: 1.3; } .tag { font-size: 0.7rem; font-family: 'JetBrains Mono', monospace; padding: 4px 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.05); color: var(--text-muted); border: 1px solid rgba(255, 255, 255, 0.05); } .tag.active { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border-color: rgba(59, 130, 246, 0.2); } .card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; } .card-footer { margin-top: 2rem; font-size: 0.85rem; color: #fff; display: flex; align-items: center; gap: 8px; opacity: 0.6; transition: opacity 0.2s; } .card:hover .card-footer { opacity: 1; } footer { padding: 3rem 0; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.9rem; display: flex; justify-content: space-between; } .footer-link { color: var(--text-muted); text-decoration: none; transition: color 0.2s; } .footer-link:hover { color: #fff; } @media (max-width: 768px) { h1 { font-size: 2.5rem; } .hero { padding: 5rem 0 3rem 0; } .grid { grid-template-columns: 1fr; } }