:root {
    --bg-dark: #0a0a0f;
    --bg-surface: rgba(20, 20, 30, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    --primary: #6d28d9;
    --primary-light: #8b5cf6;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

.font-body {
    font-family: 'Be Vietnam Pro', sans-serif;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

/* Dynamic Background */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    animation-delay: -5s;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-dark) 100%);
    z-index: -1;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #9333ea);
    color: white;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.6);
    background: linear-gradient(135deg, #7c3aed, var(--primary-light));
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.navbar nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 120px 5% 60px;
    gap: 40px;
}

.hero-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-visual {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Glass Mockup UI */
.glass-mockup {
    width: 100%;
    max-width: 550px;
    background: rgba(20, 20, 30, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.glass-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.mockup-title {
    margin-left: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-glass);
}

.mockup-tabs .tab {
    padding: 10px 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-right: 1px solid var(--border-glass);
    cursor: pointer;
}

.mockup-tabs .tab.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-bottom: 2px solid var(--primary);
}

.mockup-dashboard {
    display: flex;
    height: 300px;
}

.dashboard-panel {
    width: 200px;
    border-right: 1px solid var(--border-glass);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.panel-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.panel-line.short {
    width: 60%;
}

.panel-button {
    margin-top: auto;
    background: #10b981;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
}

.dashboard-main {
    flex: 1;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Features */
.features {
    padding: 100px 5%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 50px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.15);
}

.bento-card.large {
    grid-column: 1 / -1;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

.bento-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    color: var(--text-muted);
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-light);
    font-weight: bold;
}

.feature-list strong {
    color: var(--text-main);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.2), rgba(236, 72, 153, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Showcase */
.showcase {
    padding: 100px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.showcase-content {
    flex: 1 1 400px;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item h4 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.showcase-image {
    flex: 1 1 500px;
    height: 400px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-visual {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.fake-ui-row {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.fake-toggle {
    width: 40px;
    height: 22px;
    background: var(--primary);
    border-radius: 11px;
    margin-right: 15px;
    position: relative;
}

.fake-toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

.fake-ui-row span {
    color: var(--text-main);
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Pricing */
.pricing {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Countdown Timer */
.countdown-container {
    max-width: 500px;
    margin: 0 auto 50px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.countdown-container p.font-heading {
    color: #ef4444;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.time-box span {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: white;
    line-height: 1.1;
}

.time-box small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.pricing-card.featured {
    border: 1px solid var(--primary);
    box-shadow: 0 10px 40px rgba(109, 40, 217, 0.2);
    transform: scale(1.03);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.badge-discount {
    position: absolute;
    top: 15px;
    left: -35px;
    background: #ef4444;
    /* Red color for sale */
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 800;
    transform: rotate(-45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
    z-index: 5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.3rem;
    opacity: 0.7;
    margin-bottom: -5px;
    /* Pull price up closer */
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 5px;
}

.pricing-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-body ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-body li {
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
}

.icon-check {
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

.contact-subtext {
    text-align: center;
    color: var(--text-main);
    opacity: 0.6;
    font-size: 0.85rem;
    margin-top: 15px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 5% 30px;
    background: rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.brand p {
    color: var(--text-muted);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 100px;
    }

    .navbar {
        padding: 15px;
    }

    .navbar nav {
        display: none;
    }
}