/* ================================
   ROOT VARIABLES
================================ */

:root {
    --background:#1a1a1a;
    --panel:#272727;
    --panel-light:#303030;
    --border:#464646;
    --text:#f3f3f3;
    --text-muted:#bdbdbd;
    --cyan:#45d6ff;
    --cyan-hover:#7ae4ff;
    --gold:#d8ad4d;
    --shadow: rgba(0,0,0,.45);
    --radius: 14px;
}

/* ================================
   RESET
================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at top,
            rgba(69,214,255,.08),
            transparent 35%
        ),
        var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
}

/* ================================
   GLOBAL
================================ */

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Cinzel", serif;
}

.panel {
    background: 
        linear-gradient(
            145deg,
            var(--panel-light),
            var(--panel)
        );
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px var(--shadow);
}

/* ================================
   HEADER
================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26,26,26,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    height: 80px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-family: "Cinzel";
    font-size: 1.3rem;
}

.nav-desktop {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    transition: .25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
}

/* ================================
   BUTTONS
================================ */

.button {
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    transition: .25s;
}

.button-primary {
    background: var(--cyan);
    color: #101010;
}

.button-primary:hover {
    background: var(--cyan-hover);
    box-shadow: 0 0 20px rgba(69,214,255,.45);
    transform: translateY(-2px);
}

.button-secondary {
    border: 1px solid var(--cyan);
    color: var(--cyan);
}

.button-secondary:hover {
    background: rgba(69,214,255,.1);
}

/* ================================
   HERO
================================ */

.hero {
    padding: 90px 24px;
    display: flex;
    justify-content: center;
}

.hero-panel {
    max-width: 850px;
    text-align: center;
    padding: 60px 50px;
}

.hero-icon {
    width: 160px;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 20px 0 10px;
}

.hero h2 {
    color: var(--gold);
}

.hero-description {
    max-width: 650px;
    margin: 25px auto;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.alpha-badge {
    margin-top: 35px;
    color: var(--text-muted);
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #3cff70;
    border-radius: 50%;
}

/* ================================
   SECTIONS
================================ */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 24px;
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.feature-card {
    padding: 30px;
    text-align: center;
}

.feature-icon { 
    font-size: 2rem; 
}

.feature-card p {
    color: var(--text-muted);
}

.alpha-panel {
    text-align: center;
    padding: 50px;
}

/* ================================
   FOOTER
================================ */

.site-footer {
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 30px 24px;
    text-align: center;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-icon { 
    width: 35px; 
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px;
}

/* ================================
   MOBILE FOUNDATION
================================ */

/* Default mobile*/
@media(max-width:900px){
    .nav-desktop { display: none; }
    .feature-grid { grid-template-columns: repeat(2,1fr); }
}

/* Smaller mobile */
@media(max-width:600px){
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .feature-grid { grid-template-columns: 1fr; }
}