@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');

:root {
    --navy: #0d1521;
    --navy-dark: #050E1C;
    --navy-deep: #02070F;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-muted: rgba(212, 175, 55, 0.1);
    --white: #FFFFFF;
    --gray: #8E9AAF;
    --red: #FF4D4D;
    --red-glow: rgba(255, 77, 77, 0.3);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500; /* Satoshi Medium for body */
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* --- Animated Grid Background --- */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    opacity: 0.3;
}

.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, var(--gold-muted) 0%, transparent 70%);
    z-index: -2;
    filter: blur(100px);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700; /* Satoshi Bold for headings */
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

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

.gold-text {
    color: var(--gold) !important;
}

/* --- Buttons --- */
.btn-prime {
    position: relative;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: #000 !important;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    transition: 0.3s;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.btn-prime:hover {
    background: #e5bd42;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-prime.secondary {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    box-shadow: none;
}

.btn-prime.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

/* --- Navbar --- */
.nav-unique {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8% !important; /* Premium wide padding edge-to-edge */
    position: fixed; /* Fixed position so it floats on scroll! */
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    z-index: 1000;
    background: rgba(13, 21, 33, 0.85); /* Deep navy translucent glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25); /* Glowing bottom gold line! */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-content-desktop {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Satoshi', sans-serif;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.7;
    display: block;
    font-family: 'Satoshi', sans-serif;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- Mobile / Responsive Navigation Refinements --- */
@media (max-width: 768px) {
    .nav-unique {
        padding: 0.8rem 1.5rem !important;
        top: 0 !important;
    }
    .logo-text {
        font-size: 1.2rem !important;
    }
    .btn-sm {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
}