:root {
    --bg-main: #020617; /* Very dark rich slate */
    --bg-surface: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Gradients & Accents (Gold/Yellow Theme) */
    --accent-1: #fde047; /* Bright Yellow */
    --accent-2: #f59e0b; /* Amber/Gold */
    --accent-3: #b45309; /* Deep Orange/Gold */
    
    /* Glassmorphism */
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
}

a, button, .glass-accordion, .btn {
    cursor: none !important;
}

/* Custom Cursor Elements */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-1);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-2);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border 0.3s, background-color 0.3s;
}

.cursor-active .cursor-dot {
    width: 4px;
    height: 4px;
    background-color: #fff;
}

.cursor-active .cursor-outline {
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent-1);
    background-color: rgba(253, 224, 71, 0.18);
}

h1, h2, h3, h4 {
    letter-spacing: -0.03em;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Global Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.section-padding { padding: 120px 0; }
.mt-6 { margin-top: 32px; }

/* Mesh Gradient Background */
.mesh-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-main);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 { width: 500px; height: 500px; background: var(--accent-1); top: -10%; left: -10%; }
.orb-2 { width: 600px; height: 600px; background: var(--accent-2); top: 40%; right: -20%; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; background: var(--accent-3); bottom: -20%; left: 30%; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

/* Typography Enhancements */
.gradient-text {
    background: linear-gradient(to right, #fde047, #f59e0b, #b45309);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Header */
.header {
    position: fixed;
    width: 100%; top: 0; left: 0;
    padding: 20px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(2,6,23,0.9) 0%, rgba(2,6,23,0) 100%);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 100px; /* Pill shape header! */
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.05em;
    color: #fff;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: #fff;
}

.nav-btn {
    background: #fff;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600 !important;
}
.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Glass Card Components */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #000;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center; justify-content: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    color: var(--accent-1);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
    filter: drop-shadow(0 0 50px rgba(253, 224, 71, 0.4));
}

.hero-bg-icon svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.hero-badges span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-2);
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(253, 224, 71, 0.05);
    border: 1px solid rgba(253, 224, 71, 0.15);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badges span:hover {
    background: rgba(253, 224, 71, 0.12);
    border-color: var(--accent-1);
    color: var(--accent-1);
    transform: translateY(-3px);
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.pulsing-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Bento Box Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media(max-width: 850px) {
    .bento-grid { grid-template-columns: 1fr; }
}

.card-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--accent-1);
    margin-bottom: 24px;
}

.bento-large h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.bento-large p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* User Custom Logo Img in Bento */
.custom-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition);
}
.bento-small:hover .custom-logo {
    transform: scale(1.05);
    opacity: 1;
}

/* CSS Grid for Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-2);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

/* Pricing / Text Card */
.pricing-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.pricing-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 16px;
}

/* Portfolio Cards */
.project-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 30px;
}

.project-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tags {
    display: flex; gap: 8px; margin-top: 20px;
}

.tags span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Premium Minimalist FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}



/* Footer / Contact */
.local-card h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.local-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.footer {
    padding: 60px 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

/* Mobile & Interactivity */
.menu-toggle { display: none; }

@media (max-width: 768px) {
    .menu-toggle {
        display: flex; flex-direction: column; gap: 5px;
        background: none; border: none; cursor: pointer;
    }
    .menu-toggle span {
        width: 25px; height: 2px; background: #fff;
    }
    .nav-links { display: none; } /* Simplified for structural demo */
    
    .hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    
    .pricing-card h2 { font-size: 2rem; }
    .local-card h2 { font-size: 2rem; }
}

/* Entry Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* --- Premium Mouse Glow Effect --- */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(2, 6, 23, 0) 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Crucial so it doesn't block clicks */
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0; /* Hidden until mouse moves */
    transition: opacity 0.4s ease;
}
