:root {
    --bg-dark: #050505; /* Obsidian */
    --text-primary: #f8f8ff;
    --text-secondary: #a0a0a5;
    --neon-green: #39ff14;
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-orange: #ff9900;
    --neon-yellow: #ffff00;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: #020205;
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Magical Background */
.magical-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at center, #0a0a1a 0%, #020205 100%);
    overflow: hidden;
}

.stars-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 80px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 110px 210px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 150px 150px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.15;
    animation: twinkle 5s infinite alternate;
}

@keyframes twinkle {
    from { opacity: 0.1; }
    to { opacity: 0.3; }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: blob-float 20s infinite alternate;
}

.blob-1 {
    width: 600px; height: 600px;
    background: rgba(88, 24, 255, 0.3);
    top: -10%; left: -10%;
}

.blob-2 {
    width: 500px; height: 500px;
    background: rgba(255, 0, 255, 0.2);
    bottom: 10%; right: -5%;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px; height: 400px;
    background: rgba(0, 255, 255, 0.15);
    top: 40%; left: 30%;
    animation-delay: -10s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 150px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-head);
}

/* Utility Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.solid-panel {
    background: #111;
    border: 1px solid #333;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.glow-border {
    position: relative;
}
.glow-border::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-pink));
    z-index: -1;
    border-radius: 26px;
    filter: blur(10px);
    opacity: 0.5;
}

.glow-border-pink::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    z-index: -1;
    border-radius: 26px;
    filter: blur(10px);
    opacity: 0.5;
}

.anti-gravity-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(57, 255, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

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

.hero-flex {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 10;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 5;
}

.hero-main-img {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--neon-green);
    margin-bottom: 2.5rem;
}

.shop-now-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--neon-pink);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-head);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
}

.shop-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.4);
    background: #ff33ff;
}

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    .hero-left {
        text-align: center;
    }
}

.hero-title span {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8));
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from { filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.9)); }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.floating-glow-sticks {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-img {
    position: absolute;
    width: 300px;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px var(--neon-green));
}

.img-1 { top: 20%; left: 10%; animation: float 8s ease-in-out infinite; transform: rotate(-15deg); }
.img-2 { top: 60%; right: 15%; animation: float 10s ease-in-out infinite reverse; transform: rotate(25deg); }
.img-3 { bottom: 10%; left: 30%; animation: float 7s ease-in-out infinite; transform: rotate(-45deg); width: 150px; }

/* Section A: Instant Value Bar */
.value-bar-section {
    padding: 2rem;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.value-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.value-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

/* Section B: Pricing & Conversion Card */
.pricing-section {
    padding: 6rem 2rem;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.pricing-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.floating-product-wrapper {
    position: relative;
}

.floating-product-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.4) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(10px);
}

.pricing-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.pricing-right {
    flex: 1;
    min-width: 300px;
}

.brand-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.top-brand {
    color: var(--neon-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.2);
}

.pricing-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.price-logic {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-head);
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.mrp {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discount {
    font-size: 1.2rem;
    color: var(--neon-pink);
    font-weight: 700;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.buy-now-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--neon-green);
    border: none;
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-head);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57, 255, 20, 0.3);
}

.add-to-cart-btn {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-head);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

.nav-cart {
    display: flex;
    align-items: center;
}

.cart-btn-nav {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--neon-pink);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Section C: Product "Magic" Features */
.magic-features-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.magic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.magic-card {
    padding: 3rem 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-align: center;
}

.feature-img-small {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
    transition: box-shadow 0.3s;
}

.magic-card:hover .feature-img-small {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.magic-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.1);
}

.hover-glow:hover h3 {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.magic-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.magic-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Section D: Technical Deep-Dive */
.science-section {
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.05), #050505 70%);
}

.science-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.blueprint-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.blueprint-stick {
    width: 40px;
    height: 300px;
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,255,255,0.2), 0 0 20px rgba(0,255,255,0.2);
    background: rgba(0, 255, 255, 0.05);
    animation: stick-pulse 2s infinite alternate;
}

@keyframes stick-pulse {
    from { box-shadow: inset 0 0 20px rgba(0,255,255,0.2), 0 0 20px rgba(0,255,255,0.2); }
    to { box-shadow: inset 0 0 30px rgba(0,255,255,0.4), 0 0 40px rgba(0,255,255,0.4); }
}

.blueprint-stick::before {
    content: '';
    position: absolute;
    top: 20px; bottom: 20px; left: 10px; right: 10px;
    background: rgba(57, 255, 20, 0.2);
    border-radius: 10px;
    border: 1px dashed var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.blueprint-label {
    position: absolute;
    color: var(--neon-blue);
    font-family: monospace;
    font-size: 0.9rem;
    white-space: nowrap;
    border-bottom: 1px dashed var(--neon-blue);
    padding-bottom: 5px;
}

.blueprint-label::after {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 50px;
    height: 1px;
    background: dashed var(--neon-blue);
}

.blueprint-label.top { top: 10%; right: 120%; border-bottom: 1px solid var(--neon-blue); }
.blueprint-label.top::after { right: -50px; border-top: 1px dashed var(--neon-blue); }

.blueprint-label.middle { top: 50%; left: 150%; border-bottom: 1px solid var(--neon-green); color: var(--neon-green); }
.blueprint-label.middle::before { content:''; position: absolute; bottom:-1px; left:-50px; width:50px; border-top:1px dashed var(--neon-green); }

.blueprint-label.bottom { bottom: 20%; right: 120%; border-bottom: 1px solid var(--neon-pink); color: var(--neon-pink); }
.blueprint-label.bottom::after { right: -50px; border-top: 1px dashed var(--neon-pink); }

.science-text {
    flex: 1;
    min-width: 300px;
}

.science-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.science-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.alternative-box {
    padding: 2rem;
    border-left: 4px solid var(--neon-orange);
}

.alternative-box h4 {
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Section E: Social Proof */
.social-proof-section {
    padding: 6rem 2rem;
}

.social-proof-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
}

.rating-header .stars {
    color: var(--neon-yellow);
    font-size: 3rem;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.rating-header h2 {
    font-size: 2.5rem;
    margin: 1rem 0 0.5rem;
}

.rating-header p {
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.review-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, background 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.review-stars {
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255,255,0,0.3);
}

.review-content {
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.footer-section {
    background: #020202;
    padding: 6rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: left;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-grid h4 {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 4rem;
}

.brand-authority h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.safety-disclaimer p {
    color: #666;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}
