@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
:root { --bg-sable: #0B0C10; --bg-surface: #14161C; --bg-surface-2: #1F2229; --aurora-1: #66FCF1; --aurora-2: #45A29E; --aurora-3: #C5A3FF; --text-head: #FFFFFF; --text-body: #C5C6C7; --text-muted: #6f747c; --border-dim: rgba(255, 255, 255, 0.06); --border-active: rgba(102, 252, 241, 0.3); --signal-success: #66FCF1; --signal-warn: #FFB347; }
* { box-sizing: border-box; }
body { background-color: var(--bg-sable); color: var(--text-body); font-family: 'Inter', sans-serif; margin: 0; padding: 0; line-height: 1.7; font-weight: 300; font-size: 16px; }
h1, h2, h3 { color: var(--text-head); font-weight: 500; margin: 0 0 20px 0; letter-spacing: -0.02em; }
h1 { font-size: 2.8rem; line-height: 1.1; } h2 { font-size: 1.8rem; margin-top: 40px; }
a { color: var(--aurora-1); text-decoration: none; transition: 0.2s; border-bottom: 1px solid transparent; } a:hover { border-bottom-color: var(--aurora-1); }
.aurora-ribbon { height: 1px; width: 100%; background: linear-gradient(90deg, transparent 0%, var(--aurora-1) 50%, transparent 100%); opacity: 0.5; filter: blur(2px); margin: 40px 0; position: relative; }
.aurora-ribbon::after { content: ''; position: absolute; top: -1px; left: 20%; width: 60%; height: 3px; background: inherit; filter: blur(6px); opacity: 0.3; }
.aurora-ribbon-mini { height: 2px; width: 60px; background: var(--aurora-1); margin-bottom: 20px; opacity: 0.7; }
.layout-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header-nav { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--border-dim); margin-bottom: 60px; }
.brand { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-head); display: flex; align-items: center; gap: 10px; }
.brand::before { content: ''; display: block; width: 8px; height: 8px; background: var(--aurora-1); border-radius: 50%; box-shadow: 0 0 10px var(--aurora-1); }
.nav-links { display: flex; gap: 30px; } .nav-links a { color: var(--text-body); font-size: 0.9rem; } .nav-links a.active { color: var(--text-head); }
.hero-panel { padding: 80px 0; position: relative; }
.trust-badges { display: flex; gap: 20px; margin-bottom: 30px; }
.badge { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); border: 1px solid var(--border-dim); padding: 6px 12px; border-radius: 4px; display: flex; align-items: center; gap: 8px; }
.badge::before { content: ''; width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; } .badge.active::before { background: var(--aurora-1); box-shadow: 0 0 5px var(--aurora-1); }
.hero-cta-group { margin-top: 40px; display: flex; gap: 20px; align-items: center; }
.btn-primary { background: var(--text-head); color: var(--bg-sable); padding: 16px 32px; font-weight: 500; font-size: 1rem; border-radius: 2px; display: inline-block; } .btn-primary:hover { background: var(--aurora-1); }
.btn-text { color: var(--text-body); font-size: 0.95rem; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: var(--bg-surface); border: 1px solid var(--border-dim); padding: 30px; transition: 0.3s; position: relative; } .card:hover { border-color: var(--border-active); transform: translateY(-2px); }
.card-signal { position: absolute; top: 20px; right: 20px; width: 6px; height: 6px; border-radius: 50%; background: var(--border-dim); } .card:hover .card-signal { background: var(--aurora-1); box-shadow: 0 0 8px var(--aurora-1); }
.card h3 { font-size: 1.2rem; margin-top: 10px; margin-bottom: 10px; } .card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.card-meta { margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.callout { background: rgba(255,255,255,0.02); border-left: 2px solid var(--border-dim); padding: 20px; margin: 30px 0; display: flex; gap: 15px; }
.callout-info { border-left-color: var(--aurora-1); } .callout-warn { border-left-color: var(--signal-warn); } .callout-icon { font-family: 'Inter', sans-serif; font-weight: 600; opacity: 0.7; }
.checklist-module { list-style: none; padding: 0; margin: 30px 0; } .checklist-module li { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--border-dim); color: var(--text-body); }
.check-dot { width: 18px; height: 18px; border: 1px solid var(--border-dim); border-radius: 50%; display: flex; justify-content: center; align-items: center; } .check-dot::after { content: ''; width: 6px; height: 6px; background: var(--aurora-1); border-radius: 50%; opacity: 0; transition: 0.3s; } .checklist-module li:hover .check-dot { border-color: var(--aurora-1); } .checklist-module li:hover .check-dot::after { opacity: 1; }
.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 60px; }
.toc-rail { position: sticky; top: 40px; height: fit-content; border-right: 1px solid var(--border-dim); padding-right: 20px; }
.toc-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 20px; }
.toc-link { display: block; color: var(--text-muted); font-size: 0.9rem; padding: 8px 0; position: relative; } .toc-link:hover, .toc-link.active { color: var(--aurora-1); } .toc-link.active::before { content: '•'; position: absolute; left: -15px; color: var(--aurora-1); }
.mirror-table { width: 100%; border-collapse: collapse; margin-top: 30px; } .mirror-table th { text-align: left; font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); padding: 15px; border-bottom: 1px solid var(--border-dim); } .mirror-table td { padding: 20px 15px; border-bottom: 1px solid var(--border-dim); color: var(--text-head); }
.status-pill { font-size: 0.7rem; padding: 4px 8px; border-radius: 10px; background: rgba(102, 252, 241, 0.1); color: var(--aurora-1); text-transform: uppercase; }
.faq-capsule { border: 1px solid var(--border-dim); background: var(--bg-surface); padding: 25px; margin-bottom: 15px; transition: 0.3s; } .faq-capsule:hover { border-color: var(--aurora-1); } .faq-q { color: var(--text-head); font-weight: 500; margin-bottom: 10px; } .faq-a { font-size: 0.95rem; color: var(--text-muted); }
.footer { margin-top: 100px; padding: 60px 0; border-top: 1px solid var(--border-dim); display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 900px) { .docs-layout { grid-template-columns: 1fr; } .toc-rail { display: none; } .hero-panel h1 { font-size: 2rem; } .header-nav { flex-direction: column; gap: 20px; } }
