:root {
    --bg-color: #050508;
    --surface-color: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-primary: #8a2be2; /* Cosmic Purple */
    --accent-secondary: #ffcc00; /* Spiritual Gold */
    --accent-glow: rgba(138, 43, 226, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center { text-align: center; }

/* Background Effects */
.background-radial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a103d 0%, #050508 100%);
    z-index: -1;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-secondary);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #4b0082);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: white;
    color: black;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
}

.grid-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: rgba(138, 43, 226, 0.1);
    color: var(--accent-primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--accent-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* Video Container */
.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: linear-gradient(45deg, #111, #222);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 30px var(--accent-glow);
    z-index: 2;
    transition: 0.3s;
}

.video-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay i {
    font-size: 2rem;
    margin-left: 5px;
}

/* Sections General */
.sections {
    padding: 100px 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Info Banner */
.product-banner {
    background: linear-gradient(90deg, #1a1a2e, #16213e);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-secondary);
    position: relative;
}

.banner-content h3 {
    margin-bottom: 5px;
}

/* Features Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.icon-box {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

/* Glass Panel Structure */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.panel-header {
    margin-bottom: 40px;
}

.structure-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.structure-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    opacity: 0.5;
}

/* Animated Orb */
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.manifestation-orb {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 4s infinite ease-in-out;
}

.orb-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.orb-ring.delay-1 { animation-duration: 15s; border-color: var(--accent-secondary); }
.orb-ring.delay-2 { animation-duration: 20s; }

.pillars {
    list-style: none;
    margin-top: 25px;
}

.pillars li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.pillars i { color: var(--accent-secondary); }

/* Science Section */
.science-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
}

.science-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.science-header i { font-size: 3rem; color: var(--accent-secondary); }

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.science-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.alignment-note {
    background: var(--accent-primary);
    padding: 15px 30px;
    display: inline-block;
    border-radius: 50px;
    font-size: 1.1rem;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #2a0052 0%, #050508 100%);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.price {
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.5rem;
    display: block;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-secondary);
}

.guarantee {
    margin-top: 30px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg) scaleX(1); }
    to { transform: rotate(360deg) scaleX(1.1); }
}

/* Responsive */
@media (max-width: 992px) {
    .grid-hero { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 3rem; }
    .subtitle { margin: 0 auto 35px; }
    .cta-group { justify-content: center; }
    .features-grid, .science-grid { grid-template-columns: 1fr; }
    .structure-list { grid-template-columns: 1fr; }
    .intro-grid { grid-template-columns: 1fr; }
    .intro-image { order: -1; }
    .manifestation-orb { margin: 0 auto; }
}

@media (max-width: 576px) {
    .hero-text h1 { font-size: 2.5rem; }
    .current-price { font-size: 3rem; }
    .cta-group { flex-direction: column; }
    .glass-panel { padding: 30px 20px; }
}
