:root {
    /* Color Palette matching design but keeping green accent */
    --bg-dark: #090a0f;
    --bg-darker: #050608;
    --bg-card: rgba(20, 22, 30, 0.4);
    --bg-card-hover: rgba(30, 34, 45, 0.6);
    
    --accent-color: #00ff88;
    --accent-hover: #1aff9c;
    --accent-glow: rgba(0, 255, 136, 0.25);
    
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --text-dark: #000000;
    
    /* Borders */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 60%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.glow-top-left {
    top: -300px;
    left: -200px;
    opacity: 0.7;
}

.glow-middle-right {
    top: 30%;
    right: -300px;
    opacity: 0.5;
}

.glow-bottom-left {
    bottom: 10%;
    left: -400px;
    opacity: 0.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent { color: var(--accent-color); }
.text-white { color: var(--text-main); }

/* Glass Panel Utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
}

.w-100 { width: 100%; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 0;
    z-index: 100;
    background: rgba(9, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
}

.logo-icon {
    width: 28px; height: 28px;
    background: url('/logo.svg') no-repeat center center;
    background-size: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--text-main); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* General Section Styling */
.section { padding: 120px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; margin-bottom: 32px; }

.hero-checks {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-checks span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-checks svg { color: var(--accent-color); }

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Mockup (3D Tilted Glass) */
.hero-mockup-wrapper {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform: scale(1.4);
    transform-origin: center;
}
.hero-mockup {
    position: relative;
    width: 145%;
    transform-style: preserve-3d;
    animation: mockup-floating 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(0, 255, 136, 0.15));
}
.mockup-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.mockup-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(10, 14, 23, 0.8);
}
.mockup-chip.chip-1 {
    top: 20%;
    left: -15%;
    transform: translateZ(40px);
    animation: floating-chip 5s ease-in-out infinite alternate-reverse;
}
.mockup-chip.chip-2 {
    bottom: 15%;
    right: -5%;
    transform: translateZ(50px);
    animation: floating-chip 6s ease-in-out infinite alternate;
}
.chip-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.chip-dot.red { background: #ff4757; box-shadow: 0 0 10px #ff4757; }
.chip-info { display: flex; flex-direction: column; }
.chip-title { font-weight: 700; font-size: 0.9rem; color: #fff; line-height: 1.2; }
.chip-desc { font-size: 0.75rem; color: var(--text-muted); }

@keyframes mockup-floating {
    0% { transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg) translateY(0px); }
    50% { transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg) translateY(-20px); }
    100% { transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg) translateY(0px); }
}

@keyframes floating-chip {
    0% { transform: translateZ(40px) translateY(0px); }
    50% { transform: translateZ(40px) translateY(-10px); }
    100% { transform: translateZ(40px) translateY(0px); }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 30px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--glass-border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 40px; height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Showcase Section */
.showcase-window {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.window-header {
    background: rgba(0,0,0,0.5);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.window-dots {
    display: flex; gap: 6px; margin-right: 40px;
}
.window-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: #333;
}
.window-dots span:nth-child(1) { background: #ff5f56; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #27c93f; }

.window-tabs {
    display: flex; gap: 20px;
}

.window-tabs span {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
}
.window-tabs span.active {
    color: var(--text-main);
    font-weight: 600;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

.mini-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mini-feature {
    padding: 20px;
}

.mf-icon { margin-bottom: 12px; }

.mini-feature h4 { font-size: 1rem; margin-bottom: 8px; }
.mini-feature p { font-size: 0.85rem; color: var(--text-muted); }


/* How to Use Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card { padding: 30px; position: relative; }

.step-number {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

/* Pricing Section */
.pricing-toggle {
    display: flex; justify-content: center; align-items: center;
    gap: 16px; margin-bottom: 40px;
    font-weight: 500; color: var(--text-muted);
}

.toggle-switch {
    position: relative; width: 44px; height: 24px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch label {
    position: absolute; cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: .4s; border-radius: 24px;
}

.toggle-switch label:before {
    position: absolute; content: "";
    height: 16px; width: 16px;
    left: 3px; bottom: 3px;
    background-color: var(--accent-color);
    transition: .4s; border-radius: 50%;
}

.toggle-switch input:checked + label:before {
    transform: translateX(20px);
}

.discount-badge {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-color);
    padding: 2px 6px; border-radius: 4px;
    font-size: 0.75rem; margin-left: 6px;
}

.pricing-card {
    max-width: 380px; margin: 0 auto;
    padding: 40px; text-align: center;
}

.pricing-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    display: inline-block;
    padding: 4px 12px; border-radius: 20px;
    font-weight: 800; font-size: 0.8rem;
    letter-spacing: 1px; margin-bottom: 20px;
}

.price { font-size: 4rem; font-weight: 800; line-height: 1; margin-bottom: 30px; display: flex; justify-content: center; align-items: flex-start;}
.price span { font-size: 2rem; margin-top: 8px;}
.price .period { font-size: 1rem; color: var(--text-muted); align-self: flex-end; margin-bottom: 12px; font-weight: 500;}

.pricing-features { text-align: left; list-style: none; margin-bottom: 30px; }
.pricing-features li { padding: 10px 0; display: flex; align-items: center; gap: 12px; font-size: 0.95rem;}
.pricing-features svg { width: 18px; height: 18px; }

.pricing-footer { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; max-width: 1000px; margin: 0 auto 40px; }
.pricing-grid .pricing-card { max-width: none; margin: 0; padding: 32px 24px; display: flex; flex-direction: column; }
.pricing-grid .price { font-size: 2.8rem; margin-bottom: 8px; }
.pricing-term { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.pricing-grid .pricing-card .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pricing-grid { grid-template-columns: 1fr; max-width: 380px; } }

/* FAQ Section */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 20px 24px; transition: var(--transition); }
.faq-item[open] { border-color: rgba(0, 255, 136, 0.3); background: var(--bg-card-hover); }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; cursor: pointer; list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question svg { transition: transform 0.3s ease; }
.faq-item[open] .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding-top: 16px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* Footer */
.footer { border-top: 1px solid var(--glass-border); padding: 40px 0; margin-top: 60px; }
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--text-main); }

/* Responsive */
@media (max-width: 900px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-checks { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .mini-features, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 3rem; }
    .features-grid, .mini-features, .steps-grid { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; gap: 20px; text-align: center; }
}

/* Dashboard Specifics */
.dashboard-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 24px;}
.empty-state { text-align: center; padding: 60px 20px; border: 1px dashed var(--glass-border); border-radius: 12px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }
.license-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 12px; padding: 24px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.license-info { flex: 1; }
.license-key { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700; color: var(--accent-color); margin-bottom: 8px; letter-spacing: 1px; }
.license-status { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #27c93f; box-shadow: 0 0 8px #27c93f; }
.status-dot.inactive { background: #ff4757; box-shadow: 0 0 8px #ff4757; }
.hwid-info { margin-top: 12px; font-size: 0.85rem; padding: 8px 12px; background: rgba(0,0,0,0.3); border-radius: 6px; display: inline-flex; align-items: center; gap: 8px; }
.alert { padding: 12px 16px; margin-bottom: 20px; border-radius: 6px; font-size: 0.9rem; }
.alert-success { background: rgba(39, 201, 63, 0.1); border: 1px solid #27c93f; color: #27c93f; }
.alert-error { background: rgba(255, 71, 87, 0.1); border: 1px solid #ff4757; color: #ff4757; }
.buy-panel { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 12px; padding: 20px 24px; margin-bottom: 28px; }
.buy-panel h2 { font-size: 1rem; margin-bottom: 14px; color: var(--text-muted); font-weight: 600; }
.buy-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.license-expiry { margin-top: 8px; font-size: 0.85rem; color: var(--text-muted); }

/* Unified Form Styles */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.form-input { width: 100%; padding: 12px 16px; background: rgba(0,0,0,0.2); border: 1px solid var(--glass-border); border-radius: 8px; color: #fff; font-family: var(--font-sans); transition: var(--transition); }
.form-input:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 10px rgba(0,255,136,0.1); }

