/* AMUNIX THEME V2 */
/* Extracted from landing_mockup.html */

:root {
    --bg: #000000;
    --surface: #0A0A0A;
    --accent-blue: #007AFF;
    --accent-lime: #D0FD3E;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* UTILS */
.container-amunix {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-gradient {
    background: linear-gradient(135deg, #FFF 0%, #A1A1AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow-blue {
    text-shadow: 0 0 40px rgba(0, 122, 255, 0.5);
}

.text-accent { color: var(--accent-lime); }

/* BUTTONS */
.btn-primary-amunix {
    background: var(--accent-blue);
    color: white;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-amunix:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 122, 255, 0.6);
    color: white;
}

.btn-outline-amunix {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-amunix:hover {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
}

/* GLASS CARD */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(0, 122, 255, 0.5);
}

/* HEADER NAV (Shared) */
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-weight: 800; font-size: 1.5rem; letter-spacing: -0.05em; color: white; }

.nav-item-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    margin-left: 30px;
}

.nav-item-link:hover {
    color: #fff;
}

/* FORM STYLES (Dark Mode inputs) */
.form-control-dark {
    background-color: #111;
    border: 1px solid #333;
    color: white;
    padding: 15px;
    border-radius: 12px;
}

.form-control-dark:focus {
    background-color: #111;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
    color: white;
}

.form-label-dark {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}
