:root {
    --bg-dark: #0A0A0F;
    --bg-card: #12121A;
    --accent: #FF6B35;
    --text: #ffffff;
    --text-muted: #A0A0AA;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    cursor: none; 
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
}
.cursor-follower {
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, background-color 0.2s ease;
}

/* Navbar Layout */
.navbar {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}
.logo { 
    font-family: var(--font-display); 
    font-size: 1.6rem; 
    font-weight: 800; 
    letter-spacing: 2px; 
}
.logo span { color: var(--accent); }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.btn {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn:hover { 
    background: #fff; 
    transform: translateY(-2px); 
}

/* Section Headings */
.section-header {
    max-width: 700px;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Hero Content */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}
.tagline {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}
.hero p { 
    font-size: 1.2rem; 
    max-width: 650px; 
    margin-bottom: 4rem; 
    color: var(--text-muted);
}
.stats-container { display: flex; gap: 4rem; flex-wrap: wrap; }
.stat-box h2 { 
    font-family: var(--font-display); 
    font-size: 3rem; 
    color: var(--accent); 
}
.stat-box span { 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--text-muted); 
}

/* Services Layout */
.services-section, .ai-section, .benefits-section {
    padding: 8rem 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}
.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* AI Agents Layout */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}
@media (max-width: 500px) { .ai-grid { grid-template-columns: 1fr; } }
.ai-card {
    background: linear-gradient(145deg, #12121A, #0E0E14);
    padding: 4rem 3rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.02);
}
.ai-badge {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ai-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.ai-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Benefits Layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}
.benefit-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent);
}
.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer Style */
.footer {
    padding: 4rem 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent); }
.footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Global Reveal Classes */
.hidden { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); 
}
.show { 
    opacity: 1; 
    transform: translateY(0); 
}