/* landing-cta.css — CTA hero section and gradient text styles */

/* ============== MAIN CONTENT ============== */

#main-content {
    position: relative;
    z-index: 90;
    background: var(--dark);
}

/* ============== CTA HERO SECTION ============== */

.cta-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark);
}

/* ============== GRADIENT TEXT ============== */

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============== HERO ============== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(217, 119, 87, 0.15);
    border: 1px solid rgba(217, 119, 87, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* ============== EDITOR MOCKUP ============== */
.editor-mockup-large {
    width: 100%;
    max-width: 700px;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.editor-mockup-large .mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #16213e;
    border-bottom: 1px solid #2d2d44;
}

.editor-mockup-large .mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.editor-mockup-large .mockup-dot.red { background: #ff5f56; }
.editor-mockup-large .mockup-dot.yellow { background: #ffbd2e; }
.editor-mockup-large .mockup-dot.green { background: #27c93f; }

.editor-mockup-large .mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.editor-mockup-large .mockup-body {
    display: flex;
    min-height: 250px;
    background: #1a1a2e;
}

.editor-mockup-large .mockup-code {
    flex: 1;
    padding: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #a1a1aa;
    border-right: 1px solid var(--border);
    overflow: hidden;
}

.editor-mockup-large .mockup-code .cmd {
    color: #6366f1;
}

.editor-mockup-large .mockup-preview {
    flex: 1;
    padding: 1.25rem;
    background: #fafafa;
    color: #1a1a1a;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.85rem;
    line-height: 1.6;
}

.editor-mockup-large .preview-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.editor-mockup-large .preview-section {
    font-weight: bold;
    margin-top: 0.75rem;
}

.editor-mockup-large .preview-equation {
    text-align: center;
    font-style: italic;
    margin-top: 0.75rem;
    font-size: 1.1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
