:root {
    /* Premium Dark Mode Colors */
    --primary-color: #00f2fe;
    --primary-hover: #4facfe;
    --secondary-color: #121212;
    --text-dark: #f8f9fa; /* Text in dark mode is light */
    --text-light: #adb5bd;
    --bg-dark: #0a0a0a;
    --bg-gradient: linear-gradient(135deg, #0f1016 0%, #08080b 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --glow-color: rgba(0, 242, 254, 0.4);
    --glow-purple: rgba(138, 43, 226, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Orbs */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-purple) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    left: -200px;
    filter: blur(80px);
    animation: float 15s ease-in-out infinite;
}

.orb-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow-color) 0%, rgba(0,0,0,0) 70%);
    bottom: 10vh;
    right: -100px;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite reverse;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Utility */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Subtle inner glow for glass cards */
.glassmorphism::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Text Gradient Effect */
.text-gradient {
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-color);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 242, 254, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--glow-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo.justify-center {
    justify-content: center;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--glow-color);
}

.nav-links .btn-primary {
    color: #000;
    padding: 10px 20px;
}
.nav-links .btn-primary:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1.2;
    padding: 5px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5), 0 0 30px var(--glow-color);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
    box-shadow: -10px 30px 60px rgba(0,0,0,0.6), 0 0 50px var(--glow-color);
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Common Titles */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

/* Highlights Section */
.highlights-section {
    padding: 100px 0;
    background: transparent;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlight-card {
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0, 242, 254, 0.2);
    border-color: rgba(0, 242, 254, 0.3);
}

.highlight-card .icon {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(0, 242, 254, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 15px var(--glow-color);
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.highlight-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    margin-top: 15px;
    object-fit: contain;
    max-height: 200px;
    background-color: rgba(0,0,0,0.3);
    padding: 5px;
}

/* Detailed Features */
.detailed-features {
    padding: 100px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-tag {
    display: inline-block;
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text h3 {
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: 800;
}

.feature-text p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 20px;
}

.feature-img {
    flex: 1.2;
    padding: 15px;
    transition: transform 0.5s ease;
}

.feature-img:hover {
    transform: translateY(-5px);
}

.feature-img img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-img h4 {
    color: var(--text-light);
    font-weight: 500;
}

.inline-img {
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 100%;
    border: 1px solid var(--glass-border);
}

/* Analytics */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.bg-light {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Tools Section */
.tools-section {
    padding: 100px 0;
    position: relative;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.tool-card {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    overflow: hidden;
    color: var(--text-dark);
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
}

.tool-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: rgba(0,0,0,0.3);
    padding: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.tool-content {
    padding: 25px;
}

.tool-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tool-content p {
    font-size: 15px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: rgba(0,0,0,0.5);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer p {
    color: var(--text-light);
    margin-top: 15px;
}

.footer .copyright {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.6;
}

/* --- Scroll Animation Classes --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content, .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-image {
        transform: none;
    }
    .hero-image:hover {
        transform: none;
    }
}