:root {
    /* Primary Colors */
    --bg-dark: #050508;
    --bg-card: rgba(15, 15, 25, 0.7);
    --accent-teal: #00f2ff;
    --accent-cyan: #00d2ff;
    --accent-violet: #8a2be2;
    --text-white: #ffffff;
    --text-muted: #a0a0c0;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--accent-teal), var(--accent-violet));
    --grad-dark: linear-gradient(180deg, #0a0a15 0%, #050508 100%);
    --grad-glow: radial-gradient(circle at center, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    
    /* Shadows & Glows */
    --glow-teal: 0 0 20px rgba(0, 242, 255, 0.4);
    --glow-violet: 0 0 20px rgba(138, 43, 226, 0.4);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Layout Utils --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* --- Typography --- */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: var(--glow-teal);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- Premium Components --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.disclaimer-banner {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-bottom: var(--glass-border);
}

.badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-teal);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 242, 255, 0.2);
    display: inline-block;
    margin-bottom: 20px;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
    100% { opacity: 0.5; transform: scale(1); }
}

@keyframes bobbing {
    0% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-2deg) translateY(-15px); }
    100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
}

.product-anim {
    animation: bobbing 4s ease-in-out infinite;
    max-width: 380px !important;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .product-anim {
        max-width: 260px !important;
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* --- Hero Specific --- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: var(--grad-glow);
    z-index: -1;
    pointer-events: none;
}

/* --- Grid Systems --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

@media (max-width: 992px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
