@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Unbounded:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #08090a;
    --bg-card: rgba(17, 18, 20, 0.8);
    --accent: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-blur: 16px;
    --radius: 0px;
    --border-width: 2px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    /* Geist Bold as requested */
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body, p, span, div, a, li, button, input, select, label, textarea {
    font-family: 'Geist', sans-serif;
    font-weight: 700; /* Rigid Geist Bold Enforcement */
}

h1, h2, h3, h4, h5, h6, .font-title {
    font-family: 'Unbounded', sans-serif !important;
    font-weight: 700;
}

/* Glassmorphism */
.glass {
    background: rgba(10, 11, 14, 0.8);
    backdrop-filter: blur(10px);
    border: var(--border-width) solid var(--border-color);
    border-radius: 0;
}

.glass-dark {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: var(--border-width) solid var(--border-color);
    border-radius: 0;
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: #000;
    font-weight: 900;
    padding: 14px 28px;
    border-radius: 0;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
    box-shadow: none !important;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 0;
    border: var(--border-width) solid var(--border-color);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 90%);
    z-index: -1;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 9, 10, 0.5) 0%, transparent 40%, transparent 60%, var(--bg-dark) 100%);
    z-index: -1;
}

/* Custom Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 12px 0;
    background: rgba(8, 9, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

/* Cards */
.card {
    background: rgba(15, 16, 20, 0.98);
    border: var(--border-width) solid var(--border-color);
    border-radius: 0;
    padding: 32px;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.card:hover {
    border-color: var(--accent);
    background: rgba(20, 21, 26, 1);
}

/* Custom Cursor */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
}

@media (hover: hover) and (pointer: fine) {

    .cursor-dot,
    .cursor-ring {
        display: block;
    }
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 0;
}

.cursor-ring {
    width: 24px;
    height: 24px;
    border: 1px solid var(--accent);
    border-radius: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.cursor-active .cursor-dot {
    width: 12px;
    height: 12px;
}

.cursor-active .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--accent);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Sidebar Responsive */
.sidebar-mobile {
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-mobile.active {
    transform: translateX(0);
}

/* Footer Improve */
.footer-logo-text {
    font-family: 'Unbounded', sans-serif;
    letter-spacing: -2px;
    font-size: 3rem;
    opacity: 0.03;
    position: absolute;
    bottom: -20px;
    right: 20px;
    pointer-events: none;
    user-select: none;
}

/* Utilities */
.text-balance {
    text-wrap: balance;
}

.blur-dot {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* Form Styles */
.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

/* Dashboard Generic */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius);
}

.stat-value {
    font-size: 1.5rem;
    font-family: 'Unbounded', sans-serif;
    color: var(--accent);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}