/* digitaltelomere.com */
/* Colors: #1a1a2e, #0a0a12, #c77dff, #2a2a4a, #00e5a0, #3a3a5a, #e0d8f0, #8a7ab0, #5a5a7a, #f0e8ff, #161622 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.7; background: #0a0a12; color: #e0d8f0; overflow-x: hidden; }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a12 70%); position: relative; }
.telomere-viz { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.15; pointer-events: none; }
.helix { width: 200px; height: 200px; border: 2px solid #c77dff; border-radius: 50%; animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.5rem, 8vw, 5rem); color: #c77dff; position: relative; z-index: 2; opacity: 0; animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero-sub { font-weight: 300; font-size: 16px; color: #5a5a7a; margin-top: 16px; position: relative; z-index: 2; opacity: 0; animation: fadeIn 1s 0.8s ease forwards; }
.section { padding: 100px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; background: #0a0a12; }
.section-alt { background: #161622; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); color: #e0d8f0; margin-bottom: 20px; }
.section-text { font-weight: 300; font-size: 17px; color: #8a7ab0; max-width: 600px; margin-bottom: 40px; }
.layer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 700px; width: 100%; }
.layer-card { border: 1px solid #2a2a4a; padding: 24px; text-align: left; transition: border-color 0.3s ease; }
.layer-card:hover { border-color: #00e5a0; }
.layer-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: #c77dff; margin-bottom: 8px; }
.layer-card p { font-size: 14px; color: #5a5a7a; }
.site-footer { text-align: center; padding: 40px; background: #0a0a12; color: #2a2a4a; font-family: 'IBM Plex Mono', monospace; font-size: 12px; }
@media (max-width: 768px) { .section { padding: 60px 24px; } .layer-grid { grid-template-columns: 1fr; } }
