/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #eab308;
    --accent-hover: #facc15;
    --accent-dim: rgba(234, 179, 8, 0.1);
    --accent-border: rgba(234, 179, 8, 0.2);
    --accent-border-hover: rgba(234, 179, 8, 0.5);
    --bg: #000000;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-nav: rgba(0, 0, 0, 0.8);
    --text: #ffffff;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --border: rgba(255, 255, 255, 0.06);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent-dim);
}

.btn-block {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--accent-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    border-radius: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-pro {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -200px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
}

.hero-video-frame {
    aspect-ratio: 16 / 9;
    border: 2px solid var(--accent-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #111 0%, #000 100%);
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-dim);
}

.hero-placeholder svg {
    color: var(--accent);
    opacity: 0.5;
}

.hero-glow-orb {
    position: absolute;
    width: 128px;
    height: 128px;
    background: var(--accent-dim);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.hero-glow-orb-1 {
    bottom: -16px;
    right: -16px;
}

.hero-glow-orb-2 {
    top: -16px;
    left: -16px;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ===== Features ===== */
.features {
    padding: 5rem 0;
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(17, 17, 17, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(234, 179, 8, 0.05);
}

.feature-icon {
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== Showcase ===== */
.showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000 0%, rgba(234, 179, 8, 0.03) 100%);
}

.showcase-viewer {
    max-width: 960px;
    margin: 0 auto;
}

.showcase-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border: 2px solid var(--accent-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-dim);
}

.showcase-fallback h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

.showcase-fallback p {
    color: var(--text-dim);
}

.showcase-fallback svg {
    color: var(--accent);
    opacity: 0.4;
}

.showcase-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.showcase-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent-border);
    background: var(--bg-card);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.showcase-dots {
    display: flex;
    gap: 0.5rem;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.5);
}

/* ===== Pricing ===== */
.pricing {
    padding: 5rem 0;
    background: var(--bg);
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    position: relative;
    background: linear-gradient(180deg, rgba(234, 179, 8, 0.08) 0%, #000 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: var(--accent);
    opacity: 0.08;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}


.free-trial {
    font-size: 4rem;
    color: #fff;
    font-weight: 600;   
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #d1d5db;
}

.pricing-features li svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== CTA Section ===== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000 0%, rgba(234, 179, 8, 0.03) 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-card:hover {
    border-color: var(--accent-border-hover);
    transform: translateY(-2px);
}

.cta-icon {
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--accent-border);
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        border-bottom: 1px solid var(--accent-border);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.85rem;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ===== Selection ===== */
::selection {
    background: rgba(234, 179, 8, 0.3);
    color: #fff;
}
