@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400&display=swap";:root{--spacing-xs: 0.5rem;--spacing-sm: 1rem;--spacing-md: 2rem;--spacing-lg: 4rem;--spacing-xl: 6rem;--font-primary: 'Inter', system-ui, -apple-system, sans-serif;--font-mono: 'JetBrains Mono', monospace;--max-width: 1200px;--border-radius: 8px;--transition-speed: 0.3s}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,h5,h6,p,ul,ol,figure,blockquote,dl,dd{margin:0;padding:0}ul,ol{list-style:none}a{color:inherit;text-decoration:none}img{max-width:100%;display:block}button{cursor:pointer;border:none;background:none;font:inherit;color:inherit}input,textarea{font:inherit}[data-theme=dark]{--bg: #0b0d0f;--bg-alt: #111318;--card: #18181b;--border: #27272a;--text: #d4d4d8;--heading: #fafafa;--muted: #71717a}[data-theme=light]{--bg: #d4d4d8;--bg-alt: #a1a1aa;--card: #e4e4e7;--border: #71717a;--text: #27272a;--heading: #09090b;--muted: #52525b}[data-accent=blue]{--accent: #60a5fa}[data-accent=teal]{--accent: #2dd4bf}[data-accent=purple]{--accent: #a78bfa}[data-accent=orange]{--accent: #fb923c}[data-accent=red]{--accent: #f87171}[data-accent=green]{--accent: #4ade80}[data-theme=light][data-accent=blue]{--accent: #2563eb}[data-theme=light][data-accent=teal]{--accent: #0d9488}[data-theme=light][data-accent=purple]{--accent: #7c3aed}[data-theme=light][data-accent=orange]{--accent: #ea580c}[data-theme=light][data-accent=red]{--accent: #dc2626}[data-theme=light][data-accent=green]{--accent: #16a34a}@media(prefers-color-scheme: light){html:not([data-theme]){--bg: #d4d4d8;--bg-alt: #a1a1aa;--card: #e4e4e7;--border: #71717a;--text: #27272a;--heading: #09090b;--muted: #52525b}html:not([data-theme])[data-accent=blue]{--accent: #2563eb}html:not([data-theme])[data-accent=teal]{--accent: #0d9488}html:not([data-theme])[data-accent=purple]{--accent: #7c3aed}html:not([data-theme])[data-accent=orange]{--accent: #ea580c}html:not([data-theme])[data-accent=red]{--accent: #dc2626}html:not([data-theme])[data-accent=green]{--accent: #16a34a}}body{font-family:var(--font-primary);font-size:1rem;line-height:1.6;color:var(--text);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,h2,h3,h4,h5,h6{color:var(--heading);font-weight:700;line-height:1.2}h1{font-size:3.5rem}h2{font-size:2rem}h3{font-size:1.25rem}h4{font-size:1.125rem}h5{font-size:1rem}h6{font-size:.875rem}a:hover{color:var(--accent)}code{font-family:var(--font-mono);font-size:.875em}html{scroll-behavior:smooth}body{background-color:var(--bg);min-height:100vh;display:flex;flex-direction:column}body>main{flex:1}body>main>section{padding:var(--spacing-xl) max(var(--spacing-lg),(100% - var(--max-width))/2 + var(--spacing-lg))}body>main>section:nth-child(even){background-color:var(--bg-alt)}.container{max-width:var(--max-width);margin-inline:auto;padding-inline:var(--spacing-md)}body>main>section>header{margin-bottom:var(--spacing-md)}body>main>section>header>p{font-size:.75rem;text-transform:uppercase;letter-spacing:3px;color:var(--accent);margin-bottom:.5rem;font-weight:600}body>main>section>header>h2{font-size:2rem;font-weight:700;color:var(--heading)}body>header{position:sticky;top:0;z-index:100;background-color:rgba(var(--bg), 0.85);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}body>header>nav{max-width:var(--max-width);margin-inline:auto;padding:var(--spacing-sm) var(--spacing-md);display:flex;align-items:center;justify-content:space-between}body>header>nav>a:first-child{font-weight:700;font-size:1.125rem;color:var(--heading)}body>header>nav>ul{display:none;gap:var(--spacing-sm)}body>header>nav>ul>li>a{font-size:.875rem;color:var(--muted);padding-bottom:4px;border-bottom:2px solid rgba(0,0,0,0);transition:color var(--transition-speed),border-color var(--transition-speed)}body>header>nav>ul>li>a:hover{color:var(--accent);border-bottom-color:var(--accent)}body>header>nav>div{display:flex;align-items:center;gap:var(--spacing-sm)}body>header>nav>div>button[data-toggle-theme]{color:var(--muted);padding:4px}body>header>nav>div>button[data-toggle-theme]:hover{color:var(--accent)}body>header>nav>div>details.lang-picker{position:relative;font-size:.6875rem;font-weight:600;text-transform:uppercase}body>header>nav>div>details.lang-picker>summary{color:var(--muted);cursor:pointer;list-style:none;padding:2px 1px}body>header>nav>div>details.lang-picker>summary::-webkit-details-marker{display:none}body>header>nav>div>details.lang-picker>summary:hover{color:var(--accent)}body>header>nav>div>details.lang-picker[open]>summary{color:var(--accent)}body>header>nav>div>details.lang-picker>ul{position:absolute;top:calc(100% + 4px);right:0;min-width:48px;margin:0;padding:2px 0;list-style:none;background:var(--surface);border:1px solid var(--border);border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.2);z-index:10}body>header>nav>div>details.lang-picker>ul>li{padding:3px 6px}body>header>nav>div>details.lang-picker>ul>li>a{color:var(--text);text-decoration:none;display:block;transition:color var(--transition-speed)}body>header>nav>div>details.lang-picker>ul>li>a:hover{color:var(--accent)}body>header>nav>div>details.lang-picker>ul>li>span{color:var(--accent);display:block}body>header>nav>div>[data-accent-picker]{display:flex;gap:4px}body>header>nav>div>[data-accent-picker]>button{width:10px;height:10px;border-radius:50%;border:1px solid var(--border);padding:0;transition:transform var(--transition-speed)}body>header>nav>div>[data-accent-picker]>button:hover{transform:scale(1.3)}body>header>nav>button[data-nav-toggle]{display:flex;flex-direction:column;gap:4px;padding:4px}body>header>nav>button[data-nav-toggle]>span{display:block;width:20px;height:2px;background:var(--heading);transition:transform var(--transition-speed)}body>header>[data-nav-overlay]{position:fixed;inset:0;background-color:rgba(0,0,0,.95);display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:200;opacity:0;pointer-events:none;transition:opacity var(--transition-speed)}body>header>[data-nav-overlay]>button[data-nav-close]{position:absolute;top:var(--spacing-md);right:var(--spacing-md);font-size:2rem;color:var(--heading)}body>header>[data-nav-overlay]>ul{display:flex;flex-direction:column;gap:var(--spacing-md);text-align:center}body>header>[data-nav-overlay]>ul>li>a{font-size:1.25rem;color:var(--heading)}body>header>[data-nav-overlay]>ul>li>a:hover{color:var(--accent)}body.nav-open>header>[data-nav-overlay]{opacity:1;pointer-events:auto}.skip-link{position:absolute;top:-100%;left:var(--spacing-sm);background:var(--accent);color:var(--bg);padding:.5rem 1rem;border-radius:var(--border-radius);z-index:300;font-size:.875rem}.skip-link:focus{top:var(--spacing-sm)}body>main>section#hero{min-height:100vh;display:flex;flex-direction:column;justify-content:center;padding:var(--spacing-xl) max(var(--spacing-lg),(100% - var(--max-width))/2 + var(--spacing-lg));position:relative;overflow:hidden;background:linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%)}body>main>section#hero::after{content:"";position:absolute;bottom:0;left:0;right:0;height:2px;background:linear-gradient(90deg, var(--accent), rgba(167, 139, 250, 0.6), var(--accent))}body>main>section#hero>div:first-child{position:absolute;inset:0;pointer-events:none}body>main>section#hero>div:first-child>span{position:absolute;border-radius:50%;background:var(--accent)}body>main>section#hero>div:first-child>span:nth-child(1){width:5px;height:5px;top:20%;left:30%;opacity:.15;animation:float 10s ease-in-out infinite 2s}body>main>section#hero>div:first-child>span:nth-child(2){width:4px;height:4px;top:37%;left:53%;opacity:.2;animation:float 13s ease-in-out infinite 4s}body>main>section#hero>div:first-child>span:nth-child(3){width:3px;height:3px;top:54%;left:76%;opacity:.25;animation:float 8s ease-in-out infinite 6s}body>main>section#hero>div:first-child>span:nth-child(4){width:2px;height:2px;top:71%;left:4%;opacity:.3;animation:float 11s ease-in-out infinite 8s}body>main>section#hero>div:first-child>span:nth-child(5){width:5px;height:5px;top:88%;left:27%;opacity:.1;animation:float 14s ease-in-out infinite 0s}body>main>section#hero>div:first-child>span:nth-child(6){width:4px;height:4px;top:10%;left:50%;opacity:.15;animation:float 9s ease-in-out infinite 2s}body>main>section#hero>div:first-child>span:nth-child(7){width:3px;height:3px;top:27%;left:73%;opacity:.2;animation:float 12s ease-in-out infinite 4s}body>main>section#hero>div:first-child>span:nth-child(8){width:2px;height:2px;top:44%;left:1%;opacity:.25;animation:float 7s ease-in-out infinite 6s}body>main>section#hero>div:first-child>span:nth-child(9){width:5px;height:5px;top:61%;left:24%;opacity:.3;animation:float 10s ease-in-out infinite 8s}body>main>section#hero>div:first-child>span:nth-child(10){width:4px;height:4px;top:78%;left:47%;opacity:.1;animation:float 13s ease-in-out infinite 0s}body>main>section#hero>div:first-child>span:nth-child(11){width:3px;height:3px;top:0%;left:70%;opacity:.15;animation:float 8s ease-in-out infinite 2s}body>main>section#hero>div:first-child>span:nth-child(12){width:2px;height:2px;top:17%;left:93%;opacity:.2;animation:float 11s ease-in-out infinite 4s}body>main>section#hero>div:first-child>span:nth-child(13){width:5px;height:5px;top:34%;left:21%;opacity:.25;animation:float 14s ease-in-out infinite 6s}body>main>section#hero>div:first-child>span:nth-child(14){width:4px;height:4px;top:51%;left:44%;opacity:.3;animation:float 9s ease-in-out infinite 8s}body>main>section#hero>div:first-child>span:nth-child(15){width:3px;height:3px;top:68%;left:67%;opacity:.1;animation:float 12s ease-in-out infinite 0s}body>main>section#hero>div:first-child>span:nth-child(16){width:2px;height:2px;top:85%;left:90%;opacity:.15;animation:float 7s ease-in-out infinite 2s}body>main>section#hero>div:first-child>span:nth-child(17){width:5px;height:5px;top:7%;left:18%;opacity:.2;animation:float 10s ease-in-out infinite 4s}body>main>section#hero>div:first-child>span:nth-child(18){width:4px;height:4px;top:24%;left:41%;opacity:.25;animation:float 13s ease-in-out infinite 6s}body>main>section#hero>div:first-child>span:nth-child(19){width:3px;height:3px;top:41%;left:64%;opacity:.3;animation:float 8s ease-in-out infinite 8s}body>main>section#hero>div:first-child>span:nth-child(20){width:2px;height:2px;top:58%;left:87%;opacity:.1;animation:float 11s ease-in-out infinite 0s}body>main>section#hero>div:first-child>span:nth-child(21){width:5px;height:5px;top:75%;left:15%;opacity:.15;animation:float 14s ease-in-out infinite 2s}body>main>section#hero>div:first-child>span:nth-child(22){width:4px;height:4px;top:92%;left:38%;opacity:.2;animation:float 9s ease-in-out infinite 4s}body>main>section#hero>div:first-child>span:nth-child(23){width:3px;height:3px;top:14%;left:61%;opacity:.25;animation:float 12s ease-in-out infinite 6s}body>main>section#hero>div:first-child>span:nth-child(24){width:2px;height:2px;top:31%;left:84%;opacity:.3;animation:float 7s ease-in-out infinite 8s}body>main>section#hero>div:first-child>span:nth-child(25){width:5px;height:5px;top:48%;left:12%;opacity:.1;animation:float 10s ease-in-out infinite 0s}body>main>section#hero>div:first-child>span:nth-child(26){width:4px;height:4px;top:65%;left:35%;opacity:.15;animation:float 13s ease-in-out infinite 2s}body>main>section#hero>div:first-child>span:nth-child(27){width:3px;height:3px;top:82%;left:58%;opacity:.2;animation:float 8s ease-in-out infinite 4s}body>main>section#hero>div:first-child>span:nth-child(28){width:2px;height:2px;top:4%;left:81%;opacity:.25;animation:float 11s ease-in-out infinite 6s}body>main>section#hero>div:first-child>span:nth-child(29){width:5px;height:5px;top:21%;left:9%;opacity:.3;animation:float 14s ease-in-out infinite 8s}body>main>section#hero>div:first-child>span:nth-child(30){width:4px;height:4px;top:38%;left:32%;opacity:.1;animation:float 9s ease-in-out infinite 0s}body>main>section#hero>div:first-child>span:nth-child(31){width:3px;height:3px;top:55%;left:55%;opacity:.15;animation:float 12s ease-in-out infinite 2s}body>main>section#hero>div:first-child>span:nth-child(32){width:2px;height:2px;top:72%;left:78%;opacity:.2;animation:float 7s ease-in-out infinite 4s}body>main>section#hero>div:first-child>span:nth-child(33){width:5px;height:5px;top:89%;left:6%;opacity:.25;animation:float 10s ease-in-out infinite 6s}body>main>section#hero>div:first-child>span:nth-child(34){width:4px;height:4px;top:11%;left:29%;opacity:.3;animation:float 13s ease-in-out infinite 8s}body>main>section#hero>div:first-child>span:nth-child(35){width:3px;height:3px;top:28%;left:52%;opacity:.1;animation:float 8s ease-in-out infinite 0s}body>main>section#hero>div:first-child>span:nth-child(36){width:2px;height:2px;top:45%;left:75%;opacity:.15;animation:float 11s ease-in-out infinite 2s}body>main>section#hero>div:first-child>span:nth-child(37){width:5px;height:5px;top:62%;left:3%;opacity:.2;animation:float 14s ease-in-out infinite 4s}body>main>section#hero>div:first-child>span:nth-child(38){width:4px;height:4px;top:79%;left:26%;opacity:.25;animation:float 9s ease-in-out infinite 6s}body>main>section#hero>div:first-child>span:nth-child(39){width:3px;height:3px;top:1%;left:49%;opacity:.3;animation:float 12s ease-in-out infinite 8s}body>main>section#hero>div:first-child>span:nth-child(40){width:2px;height:2px;top:18%;left:72%;opacity:.1;animation:float 7s ease-in-out infinite 0s}body>main>section#hero>header>p{font-size:.75rem;text-transform:uppercase;letter-spacing:3px;color:var(--muted);margin-bottom:.75rem;font-weight:600;position:relative;z-index:1}body>main>section#hero>header>h1{font-size:3.5rem;font-weight:800;line-height:1.1;color:var(--heading);position:relative;z-index:1}body>main>section#hero>p{margin-top:var(--spacing-sm);color:var(--muted);font-size:1rem;line-height:1.7;position:relative;z-index:1}body>main>section#hero>nav{display:flex;align-items:center;gap:var(--spacing-md);margin-top:var(--spacing-md);position:relative;z-index:1}body>main>section#hero>nav>a{display:inline-block;padding:.75rem 1.75rem;background:var(--accent);color:var(--bg);font-weight:600;font-size:.875rem;border-radius:var(--border-radius);transition:opacity var(--transition-speed)}body>main>section#hero>nav>a:hover{opacity:.85;color:var(--bg)}body>main>section#hero>nav>span{color:var(--muted);font-size:.875rem}@keyframes float{0%,100%{transform:translateY(0) translateX(0);opacity:var(--float-opacity, 0.2)}25%{transform:translateY(-15px) translateX(5px)}50%{transform:translateY(-5px) translateX(-8px);opacity:calc(var(--float-opacity, 0.2) + .1)}75%{transform:translateY(-20px) translateX(3px)}}body>main>section#stats{padding:var(--spacing-lg) max(var(--spacing-lg),(100% - var(--max-width))/2 + var(--spacing-lg));border-top:1px solid var(--border);border-bottom:1px solid var(--border);background-color:var(--bg-alt)}body>main>section#stats>dl{max-width:var(--max-width);margin-inline:auto;display:flex;justify-content:center;align-items:center;gap:var(--spacing-lg)}body>main>section#stats>dl>div{text-align:center}body>main>section#stats>dl>div>dt{font-size:2rem;font-weight:800;color:var(--heading);line-height:1}body>main>section#stats>dl>div>dd{font-size:.75rem;text-transform:uppercase;letter-spacing:1px;color:var(--muted);margin-top:.25rem}body>main>section#stats>dl>div:not(:last-child){padding-right:var(--spacing-lg);border-right:1px solid var(--border)}
