/* ============================================
   The Film VFX — Website Styles
   ============================================ */

:root {
    --bg: #0B0F1A;
    --bg-card: #111827;
    --bg-elevated: #1F2937;
    --text: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --accent: #06B6D4;
    --accent-hover: #22D3EE;
    --amber: #F59E0B;
    --amber-hover: #FBBF24;
    --border: #1E293B;
    --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 15, 26, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-top { font-size: 10px; letter-spacing: 2px; }
.brand-the { font-weight: 300; }
.brand-film { font-weight: 500; font-style: italic; color: var(--accent); }
.brand-vfx { font-size: 18px; font-weight: 800; letter-spacing: 2px; }

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 24px;
}

.btn-ghost {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-ghost:hover { color: var(--text); background: var(--bg-elevated); }

.btn-accent {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.2s;
}

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

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

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 12px;
    border-top: 1px solid var(--border);
}

.mobile-menu a {
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary-lg, .btn-outline-lg {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary-lg {
    color: #000;
    background: linear-gradient(135deg, var(--accent) 0%, #0891B2 100%);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
    border: none;
}

.btn-primary-lg:hover {
    box-shadow: 0 6px 28px rgba(6, 182, 212, 0.35);
    transform: translateY(-2px);
}

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

.btn-outline-lg:hover {
    background: var(--bg-elevated);
    border-color: var(--text-muted);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- FEATURES ---- */
.features {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 16px auto 0;
    line-height: 1.6;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.25s;
}

.feature-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.08);
    border-radius: 10px;
    color: var(--accent-color, var(--accent));
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.03) 50%, transparent 100%);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(6, 182, 212, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 36px;
    opacity: 0.4;
}

/* ---- PRICING ---- */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.25s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.1);
}

.price-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.price-card.featured .price-badge { color: var(--accent); }

.price-amount {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
    opacity: 0.6;
}

.price-credits {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.price-bonus {
    font-size: 12px;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.btn-primary, .btn-outline {
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

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

.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

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

.btn-outline:hover { background: var(--bg-elevated); border-color: var(--text-muted); }

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 32px;
}

/* ---- DOWNLOAD ---- */
.download {
    padding: 80px 0 120px;
}

.download-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}

.download-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.download-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.download-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.download-reqs {
    display: flex;
    gap: 8px;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- FOOTER ---- */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 0; }
}

@media (max-width: 640px) {
    .nav-links, .nav-actions { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .mobile-menu.hidden { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .hero { padding: 120px 0 60px; }
    .hero-stats { gap: 24px; }
    .download-card { padding: 40px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .download-reqs { flex-wrap: wrap; justify-content: center; }
}

/* ---- HIDDEN ---- */
.hidden { display: none !important; }
