/* ringworld.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #080C18; color: #7B8FA1; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.6; }
.blueprint { position: relative; padding: 6rem 2rem 4rem; text-align: center; overflow: hidden; }
.blueprint-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(74,158,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(74,158,255,0.05) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; }
.iso-ring-group { position: relative; width: 200px; height: 100px; margin: 0 auto 2rem; }
.iso-ring { border: 2px solid #4A9EFF; border-radius: 50%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotateX(60deg); }
.r1 { width: 120px; height: 48px; }
.r2 { width: 160px; height: 64px; }
.r3 { width: 200px; height: 80px; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); color: #E8F0FE; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.cta-btn { display: inline-block; font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.8rem; color: #4A9EFF; border: 1px solid #4A9EFF; padding: 0.6rem 1.5rem; border-radius: 4px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; }
.catalog { max-width: 750px; margin: 0 auto; padding: 3rem 2rem; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.spec-card { background: #0F1628; border: 1px solid #2A3A50; border-radius: 4px; overflow: hidden; }
.spec-header { background: #4A9EFF; color: #080C18; padding: 0.3rem 0.75rem; font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
.spec-body { padding: 1.25rem; }
.spec-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: #E8F0FE; margin-bottom: 0.75rem; }
.stat-row { display: flex; justify-content: space-between; padding: 0.3rem 0; border-bottom: 1px solid #2A3A50; font-size: 0.75rem; }
.stat-label { color: #7B8FA1; }
.stat-val { font-family: 'JetBrains Mono', monospace; font-weight: 500; color: #E8F0FE; }
.coord { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #7B8FA1; display: block; margin-top: 0.75rem; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; color: #E8F0FE; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.mission { max-width: 750px; margin: 0 auto; padding: 3rem 2rem; }
.mission-panel { background: #0F1628; border: 1px solid #2A3A50; border-radius: 4px; padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mission-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: #E8F0FE; margin-bottom: 1rem; }
.objective { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; padding: 0.4rem 0; color: #7B8FA1; }
.obj-num { color: #4A9EFF; margin-right: 0.5rem; }
.progress-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; color: #E8F0FE; margin-bottom: 1rem; }
.progress-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.prog-label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #7B8FA1; min-width: 65px; }
.prog-bar { flex: 1; height: 6px; background: #2A3A50; border-radius: 3px; overflow: hidden; }
.prog-fill { height: 100%; background: #22C55E; border-radius: 3px; }
.prog-fill.orange { background: #FF7043; }
.prog-pct { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #E8F0FE; min-width: 35px; text-align: right; }
.log { max-width: 600px; margin: 0 auto; padding: 3rem 2rem; }
.log-timeline { border-left: 1px solid #2A3A50; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.log-entry { position: relative; }
.log-marker { position: absolute; left: -1.75rem; top: 0.2rem; width: 8px; height: 8px; background: #4A9EFF; }
.log-time { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #7B8FA1; display: block; }
.log-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #4A9EFF; border: 1px solid #4A9EFF; padding: 0.05rem 0.4rem; text-transform: uppercase; letter-spacing: 0.1em; display: inline-block; margin: 0.2rem 0; }
.log-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; color: #E8F0FE; }
.footer { text-align: center; padding: 3rem 2rem; border-top: 1px solid #2A3A50; }
.footer-coord { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #7B8FA1; }
@media (max-width: 600px) {
    .spec-grid { grid-template-columns: 1fr; }
    .mission-panel { grid-template-columns: 1fr; }
}
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
