:root {
    --bg-base: #0f1115;
    --bg-surface: #1a1d24;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent: #d946ef; /* Neon Pink/Purple from logo */
    --accent-hover: #c026d3;
    --accent-blue: #0ea5e9; /* Neon Blue from logo */
    --border: rgba(255, 255, 255, 0.1);
    --success: #10b981;
    --radius-lg: 16px;
    --radius-md: 12px;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

/* Glow Backgrounds */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
}
.glow-blue { top: -10%; right: -10%; background: var(--accent-blue); }
.glow-purple { bottom: -10%; left: -10%; background: var(--accent); }

.glow-blue-text { color: var(--accent-blue); text-shadow: 0 0 15px rgba(14,165,233,0.5); }
.glow-purple-text { color: var(--accent); text-shadow: 0 0 15px rgba(217,70,239,0.5); }

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; }
.logo-img { width: 32px; height: 32px; border-radius: 6px; box-shadow: 0 0 10px rgba(217,70,239,0.3); }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-btn { background: rgba(217,70,239,0.1); border: 1px solid var(--accent); padding: 8px 16px; border-radius: 8px; color: var(--accent) !important; }
.nav-btn:hover { background: var(--accent); color: #fff !important; box-shadow: 0 0 15px rgba(217,70,239,0.4); }

/* Hero */
.hero { padding: 100px 0; }
.hero-container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; }
.hero-visual { flex: 1; }

.hero-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.gradient-text { 
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 480px; }

.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
.btn {
    display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px;
    font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit;
}
.btn-lg { padding: 14px 28px; font-size: 1.1rem; }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 4px 14px rgba(217,70,239,0.3); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 6px 20px rgba(217,70,239,0.5); transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.trial-text { font-size: 0.9rem; color: var(--text-muted); }

/* Mockup Panel */
.glass-panel { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-lg); backdrop-filter: blur(10px); }
.mockup { padding: 30px; display: flex; align-items: center; gap: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); transform: rotateY(-5deg) rotateX(5deg); transition: transform 0.3s; }
.mockup:hover { transform: rotateY(0) rotateX(0); }
.mockup-icon { width: 64px; height: 64px; border-radius: 12px; box-shadow: 0 0 20px rgba(14,165,233,0.3); }
.mockup-text h3 { font-size: 1.2rem; margin-bottom: 5px; }
.mockup-text p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.mockup-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; width: 200px; overflow: hidden; }
.mockup-fill { height: 100%; width: 60%; background: linear-gradient(90deg, var(--accent), var(--accent-blue)); border-radius: 3px; animation: progress 2s infinite ease-in-out; }

@keyframes progress { 0% { width: 10%; } 50% { width: 80%; } 100% { width: 10%; } }

/* Features */
.features { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { padding: 30px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.feature-icon { margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.feature-card p { color: var(--text-muted); }

/* Pricing */
.pricing { padding: 80px 0; text-align: center; }
.pricing-container { display: flex; justify-content: center; }
.pricing-card { max-width: 400px; padding: 40px; background: rgba(255,255,255,0.02); border: 1px solid var(--accent); border-radius: var(--radius-lg); box-shadow: 0 0 30px rgba(217,70,239,0.1); }
.pricing-card h2 { margin-bottom: 10px; }
.pricing-card p { color: var(--text-muted); margin-bottom: 30px; }
.price { margin-bottom: 30px; }
.currency { font-size: 1.5rem; vertical-align: top; }
.amount { font-size: 4rem; font-weight: 700; line-height: 1; }
.period { color: var(--text-muted); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 30px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }

/* Footer */
.footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--border); color: var(--text-muted); }

@media (max-width: 768px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-subtitle { margin: 0 auto 30px auto; }
    .hero-cta { justify-content: center; }
    .nav-links a:not(.nav-btn) { display: none; }
}
