/* ============================================================================
   AGRICULTUREINTECH - DARK THEME STYLESHEET
   ============================================================================ */

:root {
    --color-bg-primary: #0f1419;
    --color-bg-secondary: #1a1f2e;
    --color-bg-tertiary: #242d3f;
    --color-text-primary: #e0e6ed;
    --color-text-secondary: #a0aac0;
    --color-text-muted: #6b7289;
    --color-accent-primary: #22c55e;
    --color-accent-secondary: #06b6d4;
    --color-accent-tertiary: #8b5cf6;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

p {
    color: var(--color-text-secondary);
}

.text-muted {
    color: var(--color-text-muted) !important;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.95);
    padding: 0.5rem 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
}

.brand-name {
    background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-primary);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.signin-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-accent-primary);
    border-radius: 0.375rem;
    background: transparent;
    cursor: pointer;
}

.signin-btn:hover {
    background: rgba(34, 197, 94, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.35rem;
}

.hamburger span {
    width: 1.5rem;
    height: 2px;
    background: var(--color-text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.4) 0%, rgba(15, 20, 25, 0.7) 50%, rgba(15, 20, 25, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-accent-primary);
    text-transform: uppercase;
}

.beta-badge {
    border-color: rgba(251, 146, 60, 0.3);
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--color-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-primary {
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
    color: #000;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--color-accent-primary);
    border: 2px solid var(--color-accent-primary);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.cta-secondary:hover {
    background: rgba(34, 197, 94, 0.1);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-scroll-indicator span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-left: 2px solid var(--color-accent-primary);
    border-bottom: 2px solid var(--color-accent-primary);
    transform: rotate(-45deg);
    animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: rotate(-45deg) translateY(0);
        opacity: 1;
    }
    50% {
        transform: rotate(-45deg) translateY(8px);
        opacity: 0.3;
    }
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.section:nth-child(odd) {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--color-bg-tertiary);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-primary);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.about-card h3 {
    color: var(--color-accent-primary);
    margin-bottom: 1rem;
}

/* ============================================================================
   SOLUTIONS SECTION
   ============================================================================ */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: linear-gradient(135deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent-secondary);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.15);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.solution-features {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.solution-features li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0.5rem 0;
}

.solution-features li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--color-accent-primary);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* ============================================================================
   INSIGHTS SECTION
   ============================================================================ */

.insights-section {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
}

.filter-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-secondary);
    border-radius: 9999px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-accent-primary);
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-accent-primary);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease;
}

.insight-card:hover {
    border-color: var(--color-accent-secondary);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.1);
    transform: translateY(-6px);
}

.insight-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.insight-source {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.insight-title {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin: 0;
}

.insight-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insight-summary {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.insight-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-accent-primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.insight-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.insight-read-more {
    color: var(--color-accent-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-read-more:hover {
    gap: 1rem;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

/* ============================================================================
   PARTNERS SECTION
   ============================================================================ */

.partners-section {
    background: linear-gradient(180deg, var(--color-bg-tertiary) 0%, var(--color-bg-primary) 100%);
}

.partners-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.partner-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-chip:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.partner-name {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

/* ============================================================================
   MODALS
   ============================================================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.signin-modal {
    max-width: 420px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-accent-primary);
}

.signin-header {
    margin-bottom: 2rem;
    text-align: center;
}

.signin-header h2 {
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.signin-subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.form-links a {
    color: var(--color-accent-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-links a:hover {
    color: var(--color-accent-primary);
}

.signin-footer {
    margin-top: 1.5rem;
    text-align: center;
}

/* ============================================================================
   LOADING OVERLAY
   ============================================================================ */

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.loading-overlay.show {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(34, 197, 94, 0.2);
    border-top-color: var(--color-accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    background: linear-gradient(180deg, var(--color-bg-primary), #000);
    border-top: 1px solid var(--color-border);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--color-accent-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .about-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 2rem;
    }

    .modal-content {
        padding: 2rem;
    }

    .navbar-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .filter-tags {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ============================================================================
   BETA CHAT WIDGET (AIT-HELPER)
   ============================================================================ */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: var(--color-bg-secondary);
    border: 2px dashed var(--color-text-muted); /* Sloppy beta look */
    border-radius: 8px 8px 0 0;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.chat-widget.minimized {
    transform: translateY(calc(100% - 40px));
}

.chat-header {
    height: 40px;
    background: var(--color-bg-tertiary);
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid var(--color-border);
    border-radius: 8px 8px 0 0;
}

.chat-title {
    font-family: monospace;
    color: var(--color-accent-secondary);
    font-size: 0.9rem;
}

.chat-toggle-btn {
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-family: monospace;
    cursor: pointer;
}

.chat-body {
    height: 350px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
}

.message {
    padding: 8px 12px;
    border-radius: 6px;
    max-width: 85%;
    word-wrap: break-word;
}

.bot-message {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-text-primary);
    align-self: flex-start;
    border-left: 2px solid var(--color-accent-secondary);
}

.user-message {
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-text-primary);
    align-self: flex-end;
    border-right: 2px solid var(--color-accent-primary);
}

.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-primary);
}

.chat-input-area input {
    flex-grow: 1;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 8px;
    border-radius: 4px 0 0 4px;
    font-family: monospace;
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--color-accent-primary);
}

.chat-input-area button {
    background: var(--color-accent-primary);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
