@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-dark: #FAFAFA;
    --bg-card: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.06);
    --border-glowing: rgba(0, 0, 0, 0.12);
    --primary: #171717;
    --primary-glow: rgba(0, 0, 0, 0.08);
    --secondary: #6366F1;
    --secondary-glow: rgba(99, 102, 241, 0.2);
    --tertiary: #10B981;
    --red: #F43F5E;
    --amber: #F59E0B;
    --text-main: #171717;
    --text-muted: #71717A;
}

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

html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header / Navbar */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);

    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 249, 246, 0.85);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-icon {
    width: 2.2rem;
    height: 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary-glow);
}

.brand-icon svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: #FFFFFF;
}

.brand-title {
    font-size: 1.5rem;
    background: #171717;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    min-width: 0;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1.8rem;
    border-radius: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    min-width: 0;
    text-align: center;
    white-space: normal;
}

.btn svg {
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.86rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    background-color: #333;
}

.btn-writing {
    border: 1px solid #0891b2;
    background: #06b6d4;
    color: #082f49;
    box-shadow: 0 5px 16px rgba(6, 182, 212, 0.24);
    white-space: nowrap;
}

.btn-writing:hover,
.btn-writing:focus-visible {
    border-color: #0e7490;
    background: #22d3ee;
    color: #083344;
    box-shadow: 0 7px 20px rgba(6, 182, 212, 0.32);
    transform: translateY(-2px);
    outline: none;
}

.btn-outline {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    align-self: flex-start;
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-glowing);
    border-radius: 1rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem; letter-spacing: -0.02em;
    line-height: 1.15;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-glow { display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, rgba(0,0,0,0) 65%);
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 0 0 1.5rem 1.5rem;
    border: none;
}



/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(251,249,246,0) 0%, rgba(0,0,0,0.03) 50%, rgba(251,249,246,0) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-title {
    font-size: 2.75rem;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 1.05rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem 2rem;

    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glowing);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-glowing);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-icon-box svg {
    width: 1.8rem;
    height: 1.8rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

/* Call to Action */
.cta {
    padding: 4rem 0 6rem 0;
    text-align: center;
}

.cta-box {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 5rem 2rem;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.cta-title {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    color: #52525B;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.download-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Support Form Section */
.support-section {
    padding: 5rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-info h2 {
    font-size: 2.75rem;
}

.support-info p {
    color: var(--text-muted);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.8rem;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid var(--secondary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.contact-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.contact-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.contact-text p {
    color: var(--text-main);
    font-weight: 500;
}

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 3rem;

}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 0.9rem 1.2rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0 6rem 0;
    border-top: 1px solid var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: 1.8rem;

}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--tertiary);
    font-size: 0.85rem;
    font-weight: 700;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 2.35rem;
}

/* Legal Pages */
.legal-section {
    padding: 5rem 0 6rem 0;
}

.legal-wrapper {
    max-width: 920px;
}

.legal-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.legal-hero h1 {
    font-size: 3rem; letter-spacing: -0.02em;
    line-height: 1.15;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-hero p {
    color: var(--text-muted);
    font-size: 1rem;
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;

}

.legal-block {
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-block:first-child {
    padding-top: 0;
}

.legal-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-block h2 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.legal-block p,
.legal-block li {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.legal-block ul {
    margin: 0.75rem 0 0 1.2rem;
}

.legal-block li {
    margin-bottom: 0.65rem;
}

.legal-block strong {
    color: var(--text-main);
}

.legal-block a {
    color: var(--tertiary);
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    background: #F3EFE9;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

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

.footer-copyright {
    color: rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive Styles */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-tag {
        align-self: center;
    }

    .hero-desc {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .support-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .download-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        justify-content: center;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .nav-links {
        order: 3;
        display: flex;
        width: 100%;
        gap: 0.6rem;
        overflow-x: auto;
        padding: 0.3rem 0 0.1rem;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        display: inline-flex;
        white-space: nowrap;
        font-size: 0.82rem;
        padding: 0.35rem 0.65rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.03);
    }

    .nav-actions {
        gap: 0.45rem;
        margin-left: auto;
    }

    .nav-actions .btn-sm {
        padding: 0.5rem 0.8rem;
    }

    .nav-actions .nav-download {
        display: none;
    }

    .support-card {
        padding: 1.5rem;
    }

    .legal-card {
        padding: 1.5rem;
    }

    .legal-hero h1 {
        font-size: 2.75rem;
    }
}

/* ==========================================
   Live Agent Workspace terminal styles
   ========================================== */
.hero-terminal-container {
    width: 100%;
    max-width: 680px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 40px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}

.hero-terminal-header {
    background: rgba(245, 243, 239, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.5rem 1rem 0 1rem;
}

.hero-terminal-tabs {
    display: flex;
    gap: 0.5rem;
}

.hero-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.hero-tab-btn:hover {
    color: var(--text-main);
}

.hero-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.hero-tab-panel {
    display: none;
    padding: 0;
}

.hero-tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.live-dot-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--tertiary);
    box-shadow: 0 0 8px var(--tertiary);
    margin-right: 8px;
    animation: pulse-dot 1.6s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.85); opacity: 0.6; }
    50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 12px var(--tertiary); }
    100% { transform: scale(0.85); opacity: 0.6; }
}

/* Agent Workspace Window */
.agent-workspace-window {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.win-header {
    background: rgba(245, 243, 239, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.win-buttons {
    display: flex;
    gap: 0.4rem;
}

.win-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.win-btn.close { background: #FF5F56; }
.win-btn.minimize { background: #FFBD2E; }
.win-btn.expand { background: #27C93F; }

.win-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.win-body-grid {
    display: grid;
    grid-template-columns: 105px 1fr 125px;
    flex: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
}

.sidebar-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.03);
}

/* Sidebars styling */
.win-sidebar-left {
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.win-sidebar-right {
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Main coding editor */
.win-main-editor {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.editor-console-logs {
    height: 100px;
    background: rgba(250, 248, 244, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0.6rem;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--tertiary);
    overflow-y: auto;
    line-height: 1.4;
}

.log-line {
    margin-bottom: 0.25rem;
    white-space: pre-wrap;
    word-break: break-all;
}

.editor-text-area {
    flex: 1;
    display: flex;
    padding: 0.8rem;
    overflow-y: auto;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.5;
}

.editor-line-numbers {
    display: flex;
    flex-direction: column;
    color: rgba(0, 0, 0, 0.15);
    margin-right: 0.8rem;
    user-select: none;
    text-align: right;
    width: 14px;
}

.editor-writer-content {
    flex: 1;
    color: var(--text-main);
    white-space: pre-wrap;
    position: relative;
}

.typed-text {
    color: #334155;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background-color: var(--primary);
    vertical-align: middle;
    margin-left: 2px;
    animation: cursor-blink 0.8s infinite;
}

.typed-text.typing-done + .typing-cursor {
    animation: cursor-blink-slow 1.6s infinite;
    background-color: var(--tertiary);
}

@keyframes cursor-blink {
    50% { opacity: 0; }
}

@keyframes cursor-blink-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Branching visual tree */
.branch-tree-container {
    padding: 0.8rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    overflow-y: auto;
}

.branch-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.branch-node.visible {
    opacity: 1;
    transform: scale(1);
}

.node-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(255,255,255,0.1);
}

.branch-node.root .node-circle {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

.branch-node.active .node-circle {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    animation: pulse-node 2s infinite;
}

.branch-node.completed .node-circle {
    background: var(--tertiary);
    border-color: var(--tertiary);
    box-shadow: 0 0 8px rgba(5, 150, 105, 0.3);
}

@keyframes pulse-node {
    0% { transform: scale(1); box-shadow: 0 0 8px var(--primary-glow); }
    50% { transform: scale(1.15); box-shadow: 0 0 14px var(--primary); }
    100% { transform: scale(1); box-shadow: 0 0 8px var(--primary-glow); }
}

.node-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-align: center;
    white-space: nowrap;
}

.branch-line-vertical {
    width: 2px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0.2rem 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.branch-line-vertical.visible {
    opacity: 1;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
}

.branch-sub-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.branch-sub-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.branch-fork-lines {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 18px;
    position: relative;
}

.branch-fork-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 8px;
    background: var(--primary);
    transform: translateX(-50%);
}

.fork-line {
    position: absolute;
    top: 8px;
    width: 2px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
}

.fork-line.active-path {
    background: linear-gradient(180deg, var(--primary), var(--tertiary));
}

/* RAG Entities column */
.entity-list-container {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.entity-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    transition: all 0.4s ease;
}

.entity-item:hover {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.04);
}

.entity-item.success {
    border-color: rgba(5, 150, 105, 0.2);
    background: rgba(5, 150, 105, 0.03);
}

.entity-item.danger {
    border-color: rgba(255, 111, 142, 0.2);
    background: rgba(255, 111, 142, 0.03);
}

.entity-item.warning {
    border-color: rgba(248, 199, 106, 0.2);
    background: rgba(248, 199, 106, 0.03);
}

.ent-name {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ent-val {
    font-size: 0.72rem;
    color: var(--text-main);
    font-weight: 600;
}

.entity-item.success .ent-val { color: var(--tertiary); }
.entity-item.danger .ent-val { color: var(--red); }
.entity-item.warning .ent-val { color: var(--amber); }

/* Interactive footer bar */
.win-interactive-bar {
    background: rgba(245, 243, 239, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.interactive-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.interactive-buttons {
    display: flex;
    gap: 0.5rem;
}

.agent-opt-btn {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.agent-opt-btn:not(.disabled):hover {
    color: var(--text-main);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.08);
}

.agent-opt-btn.selected-option {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.12);
    color: var(--text-main);
}

.agent-opt-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Adjustments for responsive design on index page terminal */
@media (max-width: 768px) {
    .win-body-grid {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 280px;
    }

    .win-sidebar-left,
    .win-sidebar-right {
        display: none; /* Hide sidebars on smaller tablets */
    }

    .win-interactive-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .interactive-buttons {
        flex-direction: column;
        width: 100%;
    }

    .agent-opt-btn {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }
}

/* ==========================================
   Language Switcher & Redesigned Homepage Sections
   ========================================== */

.lang-btn {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.08);
}

.lang-icon {
    font-size: 0.72rem;
    line-height: 1;
    color: var(--tertiary);
    font-weight: 700;
}

.section-padding {
    padding: 6rem 0;
}

.sub-header-desc {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    text-align: center;
}

/* Section 1: Hero Data strip */
.hero-data-strip {
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 5rem;

}

.hero-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.data-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-item strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.data-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero-sellpoints {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.sellpoint-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
}

.sellpoint-tag::before {
    content: '✦';
    color: var(--tertiary);
    font-size: 0.75rem;
}

/* Section 2: Pain points resonance */
.pain-section {
    background: var(--bg-dark);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.pain-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 95, 86, 0.06);
    border-radius: 1rem;
    padding: 2rem 1.8rem;

    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 95, 86, 0.2);
    box-shadow: 0 10px 30px rgba(255, 95, 86, 0.04);
}

.pain-icon-wrapper {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.8rem;
    background: rgba(255, 95, 86, 0.06);
    border: 1px solid rgba(255, 95, 86, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5F56;
}

.pain-card h3 {
    font-size: 1.15rem;
    color: var(--text-main);
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pain-solution-bar {
    margin-top: 3.5rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.06));
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 1.6rem 2.5rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pain-solution-bar p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section 3: Full-Auto Pipeline */
.pipeline-section {
    background: rgba(0, 0, 0, 0.02);
}

.pipeline-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.pipeline-timeline::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 8.33%;
    right: 8.33%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
    opacity: 0.2;
    z-index: 1;
}

.pipeline-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    gap: 1rem;
}

.pipe-number-box {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.pipeline-step-item:hover .pipe-number-box {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.05);
}

.pipe-number-box span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.pipe-number-box em {
    font-style: normal;
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.pipeline-step-item h3 {
    font-size: 1.1rem;
    color: var(--text-main);
}

.pipeline-step-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 0.5rem;
}

/* Section 4: Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem 2rem;

    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glowing);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight-card:hover .highlight-icon-box svg {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlight-icon-box svg {
    width: 1.6rem;
    height: 1.6rem;
    transition: transform 0.3s ease;
}

.highlight-icon-box {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.8rem;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-glowing);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.highlight-icon-box svg {
    width: 1.6rem;
    height: 1.6rem;
}

.highlight-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
}

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

/* Sections 5 & 6: Target Audiences */
.audience-section {
    background: var(--bg-dark);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: stretch;
}

.audience-card-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;

    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.audience-card-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
}

.audience-card-wrap h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.audience-card-wrap > p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-top: -1rem;
}

.audience-split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.pro-benefits {
    margin-top: 1.5rem;
}

/* Path List styles */
.path-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.path-step-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.path-list-flows {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.path-flow-item {
    font-size: 0.88rem;
    color: var(--text-main);
    padding-left: 1rem;
    position: relative;
}

.path-flow-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--tertiary);
}

.audience-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.benefit-bullet {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tertiary);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pro-bullet {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.25);
    color: var(--primary);
}

.benefit-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.benefit-text-wrap h4 {
    font-size: 1.05rem;
    color: var(--text-main);
}

.benefit-text-wrap p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Section 7: Real production proof */
.proof-section {
    background: radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.05));
    border-top: 1px solid var(--border-color);
}

.proof-board {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3.5rem 3rem;

    display: flex;
    flex-direction: column;
    gap: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
}

.proof-header-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.proof-info-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proof-cta-wrap {
    margin-top: 1rem;
}

.proof-info-left h3 {
    font-size: 2rem;
    background: #171717;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof-info-left p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.proof-stats-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.proof-stat-box {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.proof-stat-wide {
    grid-column: span 2;
}

.proof-stat-box strong {
    font-size: 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    line-height: 1;
}

.proof-stat-box span {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.proof-books-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-books-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 700;
}

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

.book-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.2rem;
    padding: 1.6rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.book-card:hover {
    border-color: var(--secondary-glow);
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-3px);
}

.book-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 0.6rem;
}

.book-meta h4 {
    font-size: 1.1rem;
    color: var(--text-main);
}

.book-tag {
    font-size: 0.68rem;
    color: var(--tertiary);
    background: rgba(5, 150, 105, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.book-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

/* Section 8: User Feedback & Thanks */
.reviews-section {
    background: var(--bg-dark);
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem 1.8rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.review-card-wide {
    grid-column: span 2;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-glowing);
}

.review-user-tag {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: rgba(0, 0, 0, 0.06);
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    align-self: flex-start;
}

.review-card p {
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
}

/* Marquee / Thank Ticker */
.ticker-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
}

.ticker-content {
    display: flex;
    gap: 4rem;
    padding-right: 4rem;
    white-space: nowrap;
    animation: ticker-slide 40s linear infinite;
    width: max-content;
    flex-shrink: 0;
}

.ticker-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ticker-item::before {
    content: '❤';
    color: var(--primary);
    font-size: 0.8rem;
}

@keyframes ticker-slide {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Section 9: Comparison Table */
.comparison-section {
    background: var(--bg-dark);
}

.comparison-wrapper {
    margin-top: 4rem;
    overflow-x: auto;
    border-radius: 1.25rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.08);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;

    min-width: 700px;
}

.compare-table th,
.compare-table td { color: #374151;
    padding: 1.4rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.95rem;
}

.compare-table th {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #111827;
    background: #F9FAFB;
}

.compare-table td:first-child,
.compare-table th:first-child {
    text-align: left;
    padding-left: 2rem;
    font-weight: 600;
    color: var(--text-main);
}

.compare-table tr:last-child td {
    border-bottom: 0;
}

/* Highlight Column for DuiLang */
.compare-table .highlight-col {
    background: #F8FAFC;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    color: #111827;
    font-weight: 600;
}

.compare-table td.highlight-col {
    color: var(--primary);
}

.compare-table th.highlight-col {
    background: #F1F5F9;
    border-top: 3px solid var(--primary);
    color: var(--primary);
}

/* Section 10: Downloader CTA adjustments */
.downloader-section {
    padding: 5rem 0 7rem 0;
}

.experiment-cta {
    border-color: var(--primary);
}

.foot-source {
    margin-bottom: 0.5rem;
    opacity: 0.5;
    font-size: 0.75rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-data-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .pipeline-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .pipeline-timeline::before {
        display: none; /* Hide line when layout wraps */
    }

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

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

    .proof-header-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .books-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

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

    .review-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding: 4rem 0;
    }

    .hero-data-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .proof-board {
        padding: 2rem 1.5rem;
    }

    .proof-stats-right {
        grid-template-columns: 1fr;
    }

    .proof-stat-wide,
    .review-card-wide {
        grid-column: auto;
    }

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

    .hero-terminal-container {
        max-width: 100%;
        border-radius: 1rem;
    }

    .hero-terminal-tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hero-terminal-tabs::-webkit-scrollbar {
        display: none;
    }

    .hero-tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.6rem 0.8rem;
        font-size: 0.82rem;
    }

    .agent-workspace-window {
        height: 100%;
    }

    .editor-console-logs {
        height: 112px;
    }

    .comparison-wrapper {
        border-radius: 1rem;
    }
}

.hero-tab-panel {
    height: 382px;
}

@media (max-width: 640px) {
    .hero-tab-panel {
        height: 420px;
    }
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.pro-path-list {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.02);
}
.pro-step-label {
    background: rgba(0, 0, 0, 0.06);
    color: var(--primary);
}
.pro-flow-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

@keyframes subtle-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.hero-terminal-container {
    animation: subtle-float 6s ease-in-out infinite;
}

/* Pause marquee on hover */
.ticker-wrap:hover .ticker-content {
    animation-play-state: paused;
}

/* Benefit items hover effect */
.audience-benefit-item {
    transition: transform 0.3s ease, background 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin: -0.5rem;
}

.audience-benefit-item:hover {
    transform: translateX(4px);
    background: rgba(0,0,0,0.02);
}

.benefit-bullet {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.audience-benefit-item:hover .benefit-bullet {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary);
    color: white;
}

.compare-table td {
    color: #4B5563;
}
.compare-table td.highlight-col {
    color: #111827;
    font-weight: 700;
}

.comparison-wrapper {
    background: #FFFFFF;
}
