/* Hybrid Theme - "Dark Coral" */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;600;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Heebo:wght@300;400;500;700;900&display=swap');

:root {
    --bg-dark: #050810;
    --bg-panel: #0a0f1c;
    --line-color: rgba(255,255,255,.06);
    --text-main: #f1f5f9;
    --text-muted: #64748b;
    --accent-primary: #ff7a6e;
    --accent-glow: rgba(255, 122, 110, 0.3);
    --font-ui: 'DM Sans', 'Inter', sans-serif;
    --font-tech: 'Sora', 'Space Mono', monospace;
    --font-hebrew: 'Heebo', sans-serif;
    --surface-1: #0e1428;
    --surface-2: #141c36;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-hebrew);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    z-index: 9999;
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    /* Wider for "Pro Tool" feel */
    padding: 0 40px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    padding: 0;
    border-bottom: 1px solid var(--line-color);
    background: rgba(5, 8, 16, 0.6);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--text-main);
}

.logo::before {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    height: 100%;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

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

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

/* Hero Section */
.hero {
    border-bottom: 1px solid var(--line-color);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.hero-content {
    padding: 80px 60px;
    border-left: 1px solid var(--line-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual {
    position: relative;
    background: radial-gradient(circle at center, #0a0f1c 0%, var(--bg-dark) 70%);
}

.tech-badge {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-badge::before {
    content: '[AI_MODULE_ACTIVE]';
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-family: var(--font-hebrew);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    font-family: var(--font-hebrew);
}

.btn-group {
    display: flex;
    gap: 20px;
}

.btn-pro {
    background: var(--accent-primary);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-family: var(--font-ui);
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.2px;
}

.btn-pro:hover {
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--line-color);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-ui);
}

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

/* Canvas */
#hybrid-canvas {
    width: 100%;
    height: 100%;
}

/* Features Grid */
.features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid var(--line-color);
}

.feature-box {
    padding: 40px;
    border-left: 1px solid var(--line-color);
    background: var(--bg-dark);
    transition: background 0.3s;
    border-radius: 0;
}

.feature-box:hover {
    background: var(--bg-panel);
}

.feature-icon {
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: var(--font-hebrew);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-hebrew);
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--line-color);
}

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

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-end;
}

.pricing-card {
    background: var(--bg-panel);
    border: 1px solid var(--line-color);
    border-radius: 14px;
    padding: 40px;
    width: 350px;
    position: relative;
}

.pricing-card.featured {
    border-top: 4px solid var(--accent-primary);
    background: linear-gradient(180deg, rgba(255, 122, 110, 0.05) 0%, var(--bg-panel) 100%);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    font-family: var(--font-ui);
}

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

.feature-list {
    list-style: none;
    margin: 30px 0;
    color: var(--text-muted);
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-hebrew);
}

.check {
    color: var(--accent-primary);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--line-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-panel);
    border: 1px solid var(--line-color);
    border-radius: 14px;
    padding: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--line-color);
    font-family: var(--font-display);
    line-height: 1;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #030610 100%);
    border-bottom: 1px solid var(--line-color);
}

.download-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.download-text {
    flex: 1;
}

.download-visual {
    flex: 1;
}

.preview-screen {
    background: var(--bg-panel);
    border: 1px solid var(--line-color);
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 0 50px rgba(255, 122, 110, 0.1);
}

.preview-image {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    text-align: center;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .download-content {
        flex-direction: column;
    }

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

/* Terminal Animation Styles */
.terminal-line {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    min-height: 1.2em;
}

@keyframes terminal-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
        text-shadow: 0 0 10px var(--accent-primary);
    }
    100% {
        opacity: 1;
    }
}
