/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fafafa;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo-icon {
    height: 14px;
    width: 14px;
    margin-right: 6px;
}

.logo-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
}

.logo-text {
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.logo-text:hover {
    color: #ff6b35;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(26, 26, 26, 0.1);
    letter-spacing: -0.005em;
    min-height: 44px; /* Better touch target */
    justify-content: center;
}

.btn-primary:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 7px;
    box-shadow: 0 2px 6px rgba(26, 26, 26, 0.15);
}

.btn-large:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(26, 26, 26, 0.25);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #d5d5d5;
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 140px 0 0;
    background: #fafafa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0 20px;
        gap: 30px;
    }
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        text-align: left;
    }
}

.hero-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* IDE Window */
.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    background: #000;
}

@media (max-width: 768px) {
    .video-container {
        height: 250px;
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    height: 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 16px;
    height: 16px;
    background: #1a1a1a;
    color: white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.app-title {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.version {
    font-size: 9px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 1px 4px;
    border-radius: 2px;
    margin-left: 4px;
}

.header-center {
    flex: 1;
    max-width: 300px;
    margin: 0 16px;
}

.global-search input {
    width: 100%;
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 11px;
    background: white;
}

.header-right .env-indicator {
    font-size: 9px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 3px;
}

.mockup-content {
    display: flex;
    height: calc(100% - 40px);
}

.mockup-left-panel, .mockup-right-panel {
    width: 200px;
    background: #fafafa;
    border-right: 1px solid #e5e5e5;
    overflow-y: auto;
}

.mockup-right-panel {
    border-right: none;
    border-left: 1px solid #e5e5e5;
}

.mockup-center-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.panel-section {
    padding: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.section-title {
    font-size: 9px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-input {
    margin-bottom: 8px;
}

.search-input input {
    width: 100%;
    padding: 3px 6px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    font-size: 10px;
    background: white;
}

.tree-structure {
    margin-bottom: 8px;
}

.tree-item, .tree-subitem {
    display: flex;
    align-items: center;
    padding: 2px 0;
    font-size: 10px;
}

.tree-subitem {
    margin-left: 12px;
}

.tree-icon {
    width: 12px;
    font-size: 8px;
    color: #6b7280;
}

.tree-label {
    color: #1a1a1a;
    font-weight: 500;
}

.new-connection {
    width: 100%;
    padding: 4px 6px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    font-size: 10px;
    color: #6b7280;
    cursor: pointer;
}

.views-list {
    margin-bottom: 8px;
}

.view-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 10px;
}

.view-name {
    color: #1a1a1a;
}

.view-status {
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 2px;
}

.view-status.published {
    background: #dcfce7;
    color: #166534;
}

.view-status.draft {
    background: #fef3c7;
    color: #92400e;
}

.editor-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.tab {
    padding: 6px 12px;
    font-size: 10px;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
    background: white;
}

.code-editor {
    flex: 1;
    padding: 12px;
    font-family: 'JetBrains Mono', 'Monaco', monospace;
    font-size: 10px;
    line-height: 1.4;
    background: white;
    overflow-y: auto;
}

.code-line {
    display: flex;
    margin-bottom: 1px;
}

.line-number {
    width: 24px;
    color: #9ca3af;
    font-size: 9px;
    text-align: right;
    margin-right: 8px;
    user-select: none;
}

.code-text {
    flex: 1;
    color: #1a1a1a;
}

.keyword { color: #7c3aed; font-weight: 500; }
.variable { color: #1e40af; }
.function { color: #059669; }
.table { color: #dc2626; }
.string { color: #ea580c; }
.number { color: #0891b2; }

.results-section {
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}

.results-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.results-count {
    font-size: 9px;
    color: #6b7280;
}

.evals-link {
    font-size: 9px;
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

.run-query-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 9px;
    cursor: pointer;
}

.results-table {
    padding: 12px;
    background: white;
}

.results-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9px;
}

.results-table th,
.results-table td {
    padding: 4px 6px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.results-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.results-table td {
    color: #6b7280;
}

.tools-list {
    margin-bottom: 8px;
}

.tool-item {
    display: flex;
    align-items: center;
    padding: 3px 0;
    font-size: 10px;
}

.tool-check {
    color: #059669;
    margin-right: 4px;
    font-weight: 600;
}

.tool-name {
    color: #1a1a1a;
    margin-right: 3px;
}

.tool-edit {
    color: #6b7280;
    font-size: 8px;
}

.publish-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 9px;
    cursor: pointer;
    margin-bottom: 8px;
}

.chat-content {
    font-size: 10px;
}

.ai-message {
    background: #f3f4f6;
    padding: 6px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.user-message {
    background: #1a1a1a;
    color: white;
    padding: 6px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.tool-draft {
    background: #fef3c7;
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
    font-size: 9px;
}

.tool-label {
    color: #92400e;
    font-weight: 600;
}

.draft-content {
    color: #92400e;
    margin-top: 1px;
}

.chat-input {
    margin-bottom: 6px;
}

.chat-input input {
    width: 100%;
    padding: 4px 6px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    font-size: 10px;
    background: white;
}

.agent-indicator {
    text-align: center;
}

.agent-label {
    font-size: 8px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 1px 4px;
    border-radius: 2px;
}


/* SQL View Demo Styles */
.sql-view-demo {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.demo-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.demo-status {
    font-size: 12px;
    color: #059669;
    background: #f0fdf4;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #bbf7d0;
}

.sql-editor-demo {
    padding: 16px;
    background: #ffffff;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.code-line {
    display: flex;
    margin-bottom: 2px;
}

.line-number {
    width: 30px;
    color: #9ca3af;
    text-align: right;
    margin-right: 12px;
    user-select: none;
    font-size: 12px;
}

.code-text {
    flex: 1;
    color: #374151;
}

.keyword { color: #2563eb; font-weight: 500; }
.variable { color: #059669; }
.table { color: #dc2626; }
.string { color: #ea580c; }
.function { color: #7c3aed; }
.number { color: #7c2d12; }

.demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
}

.view-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-name {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
}

.view-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
    background: #f0fdf4;
    color: #059669;
    border: 1px solid #bbf7d0;
}

.generate-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.generate-action:hover {
    color: #3b82f6;
}

.action-text {
    font-weight: 500;
}

.action-arrow {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.generate-action:hover .action-arrow {
    transform: translateX(2px);
}

/* MCP Tools Overlay */
.mcp-tools-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.overlay-header {
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 8px 8px 0 0;
}

.overlay-title {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.tools-list {
    padding: 8px 0;
}

.tool-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 12px;
}

.tool-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.tool-icon.published {
    color: #f97316;
}

.tool-icon.draft {
    color: #6b7280;
}

.tool-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
}

.tool-status {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

/* Pylar Interface */
.pylar-interface {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.interface-container {
    display: grid;
    grid-template-columns: 65% 35%;
    height: 100%;
    gap: 0;
}

.sql-ide-panel {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
    height: 100%;
    min-height: 0;
}

.tools-panel {
    display: flex;
    flex-direction: column;
}

.ide-header, .tools-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.ide-title, .tools-title {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
}

.tools-title {
    text-transform: uppercase;
}

.ide-status, .tools-count {
    font-size: 9px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 3px;
}

.sql-editor {
    padding: 12px;
    background: #ffffff;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
    font-size: 11px;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.code-line {
    display: flex;
    margin-bottom: 1px;
}

.line-number {
    width: 20px;
    color: #9ca3af;
    text-align: right;
    margin-right: 8px;
    user-select: none;
    font-size: 10px;
}

.code-text {
    flex: 1;
    color: #374151;
}

.keyword { color: #2563eb; font-weight: 500; }
.variable { color: #059669; }
.table { color: #dc2626; }
.string { color: #ea580c; }
.function { color: #7c3aed; }
.number { color: #7c2d12; }

.results-section {
    flex: 0 0 40%;
    padding: 12px;
    background: #ffffff;
    min-height: 0;
    overflow-y: auto;
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.results-title {
    font-size: 10px;
    font-weight: 600;
    color: #1f2937;
}

.run-button {
    font-size: 8px;
    color: #ffffff;
    background: #f97316;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.run-button:hover {
    background: #ea580c;
}

.results-table {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 9px;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #374151;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.table-row:last-child {
    border-bottom: none;
}

.col {
    padding: 6px 8px;
    border-right: 1px solid #f1f5f9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.col:last-child {
    border-right: none;
}

.skeleton-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 2px 0;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.skeleton-text {
    color: #9ca3af;
    font-style: italic;
}

.comment {
    color: #6b7280;
    font-style: italic;
}

.tools-list {
    flex: 1;
    padding: 6px 0;
}

.tool-item {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border-bottom: 1px solid #f3f4f6;
    gap: 4px;
    min-width: 0;
}

.tool-item:last-child {
    border-bottom: none;
}

.tool-icon {
    font-size: 10px;
    color: #f97316;
    width: 12px;
    text-align: center;
    flex-shrink: 0;
}

.tool-name {
    font-size: 8px;
    font-weight: 500;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tool-status {
    font-size: 7px;
    color: #6b7280;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 4px;
}

/* Agent Views Section */
.agent-views-section {
    border-top: 1px solid #f3f4f6;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.agent-views-header {
    padding: 8px 12px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.agent-views-title {
    font-size: 9px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.agent-views-content {
    background: #ffffff;
    border-radius: 0 0 8px 8px;
}

.agent-views-list {
    padding: 0;
}

.agent-view-item {
    display: flex;
    align-items: center;
    padding: 3px 12px;
    border-bottom: 1px solid #f8f9fa;
    gap: 6px;
}

.agent-view-item:last-child {
    border-bottom: none;
}

.agent-view-icon {
    font-size: 8px;
    width: 10px;
    text-align: center;
    flex-shrink: 0;
}

.agent-view-icon.published {
    color: #f97316;
}

.agent-view-icon.draft {
    color: #9ca3af;
}

.agent-view-name {
    flex: 1;
    font-size: 9px;
    font-weight: 500;
    color: #1f2937;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
    min-width: 0;
}

.agent-view-status {
    font-size: 7px;
    color: #6b7280;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .interface-container {
        grid-template-columns: 1fr;
    }
    
    .sql-ide-panel {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .tools-panel {
        border-bottom: none;
    }
}

/* Publish Modal */
.publish-modal {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 20px 8px;
}

.modal-status {
    font-size: 10px;
    color: #6b7280;
    margin-bottom: 4px;
}

.modal-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.done-btn {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
}

.modal-tabs {
    display: flex;
    padding: 0 20px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    gap: 0;
}

.tab {
    padding: 2px 12px;
    font-size: 9px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.tab.active {
    color: #f97316;
    border-bottom: 2px solid #f97316;
    background: none;
}

.tab:not(.active):hover {
    color: #374151;
    background: #f9fafb;
}

.modal-content {
    padding: 20px;
}

.install-section {
    margin-bottom: 20px;
}

.install-label {
    font-size: 11px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 500;
}

.url-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.url-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
    background: #ffffff;
    color: #374151;
}

.copy-btn {
    background: #f97316;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
}

.open-btn {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
}

.token-section {
    margin-top: 16px;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
}

.token-label {
    color: #374151;
    font-weight: 500;
}

.token-value {
    color: #1f2937;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
}

.regenerate-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
}

.pinned-text {
    color: #6b7280;
}

.latest-link {
    color: #2563eb;
    text-decoration: underline;
}

/* Evals Dashboard Styles */
.evals-dashboard {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.dashboard-title {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 2px;
}

.dashboard-context {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.close-btn {
    font-size: 10px;
    color: #f97316;
    background: #fef3c7;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid #fbbf24;
}

.kpi-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.kpi-card {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
}

.kpi-value {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.kpi-label {
    font-size: 9px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.charts-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.chart-container {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 8px;
}

.chart-title {
    font-size: 10px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.chart-placeholder {
    height: 60px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-axis {
    font-size: 8px;
    color: #6b7280;
    position: absolute;
    bottom: 4px;
    left: 8px;
}

.tables-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.table-container {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 8px;
}

.table-title {
    font-size: 10px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.table-content {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    font-size: 8px;
}

.table-header {
    display: flex;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 600;
    color: #374151;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #f3f4f6;
}

.table-row:last-child {
    border-bottom: none;
}

.col {
    padding: 4px 6px;
    flex: 1;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
}

.raw-logs-section {
    border-top: 1px solid #e5e5e5;
    padding-top: 12px;
}

.logs-title {
    font-size: 10px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.logs-table {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    font-size: 8px;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
}

.logs-header {
    display: flex;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 600;
    color: #374151;
}

.log-row {
    display: flex;
    border-bottom: 1px solid #f3f4f6;
}

.log-row:last-child {
    border-bottom: none;
}

.log-col {
    padding: 4px 6px;
    flex: 1;
    min-width: 0;
}

.log-col.success {
    color: #059669;
    font-weight: 500;
}

.log-col.error {
    color: #dc2626;
    font-weight: 500;
}

.interface-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    height: 48px;
}

.header-left .app-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.header-center {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}

.global-search input {
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 12px;
    background: white;
}

.header-right .env-indicator {
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
}

.interface-content {
    display: flex;
    height: calc(100% - 48px);
}

.left-panel, .right-panel {
    width: 240px;
    background: #fafafa;
    border-right: 1px solid #e5e5e5;
    overflow-y: auto;
}

.right-panel {
    border-right: none;
    border-left: 1px solid #e5e5e5;
}

.center-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.panel-section {
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.section-header h3 {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-box {
    margin-bottom: 12px;
}

.search-box input {
    width: 100%;
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    font-size: 11px;
    background: white;
}

.connections-list {
    margin-bottom: 12px;
}

.connection-item {
    margin-bottom: 8px;
}

.connection-name {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.connection-databases {
    margin-left: 8px;
}

.database {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 2px;
    padding-left: 8px;
}

.new-connection-btn {
    width: 100%;
    padding: 6px 8px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 11px;
    color: #6b7280;
    cursor: pointer;
}

.views-list {
    margin-bottom: 12px;
}

.view-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 11px;
}

.view-name {
    color: #1a1a1a;
}

.view-status {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
}

.view-status.published {
    background: #dcfce7;
    color: #166534;
}

.view-status.draft {
    background: #fef3c7;
    color: #92400e;
}

.panel-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.tab {
    padding: 8px 16px;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
    background: white;
}

.code-editor {
    flex: 1;
    padding: 16px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 12px;
    line-height: 1.4;
    background: white;
    overflow-y: auto;
}

.code-line {
    display: flex;
    margin-bottom: 2px;
}

.line-number {
    width: 30px;
    color: #9ca3af;
    font-size: 11px;
    text-align: right;
    margin-right: 12px;
    user-select: none;
}

.code-text {
    flex: 1;
    color: #1a1a1a;
}

.keyword { color: #7c3aed; font-weight: 500; }
.variable { color: #1e40af; }
.function { color: #059669; }
.table { color: #dc2626; }
.string { color: #ea580c; }
.number { color: #0891b2; }

.results-section {
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}

.results-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.results-count {
    font-size: 11px;
    color: #6b7280;
}

.evals-link {
    font-size: 11px;
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

.run-query-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
}

.results-table {
    padding: 16px;
    background: white;
}

.results-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.results-table th,
.results-table td {
    padding: 6px 8px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.results-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.results-table td {
    color: #6b7280;
}

.tools-list {
    margin-bottom: 12px;
}

.tool-item {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-size: 11px;
}

.tool-check {
    color: #059669;
    margin-right: 6px;
    font-weight: 600;
}

.tool-name {
    color: #1a1a1a;
    margin-right: 4px;
}

.tool-edit {
    color: #6b7280;
    font-size: 10px;
}

.publish-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    margin-bottom: 12px;
}

.chat-content {
    font-size: 11px;
}

.ai-message {
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.user-message {
    background: #1a1a1a;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.tool-draft {
    background: #fef3c7;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 10px;
}

.tool-label {
    color: #92400e;
    font-weight: 600;
}

.draft-content {
    color: #92400e;
    margin-top: 2px;
}

.chat-input {
    margin-bottom: 8px;
}

.chat-input input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 11px;
    background: white;
}

.agent-indicator {
    text-align: center;
}

.agent-label {
    font-size: 10px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 3px;
}

.ide-window {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    border: 1px solid #e5e5e5;
}

.window-header {
    background: #f8f9fa;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.window-title {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
}

.ide-content {
    display: grid;
    grid-template-columns: 250px 1fr 350px;
    height: 600px;
}

/* Sidebar */
.sidebar {
    background: #f8f9fa;
    border-right: 1px solid #e5e5e5;
    padding: 16px;
    overflow-y: auto;
}

.sidebar-title {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.file-tree {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.folder, .file {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.folder:hover, .file:hover {
    background: #e5e5e5;
}

.file.active {
    background: #e3f2fd;
    color: #1976d2;
}

.folder-icon, .file-icon {
    font-size: 14px;
}

.folder-name, .file-name {
    font-size: 13px;
    font-weight: 500;
}

/* Main Editor */
.main-editor {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.editor-tabs {
    display: flex;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

.tab {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-right: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.tab.active {
    background: #ffffff;
    color: #1a1a1a;
    border-bottom: 2px solid #1976d2;
}

.tab:hover {
    background: #f0f0f0;
}

.code-editor {
    flex: 1;
    padding: 16px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    line-height: 1.5;
    overflow-y: auto;
    background: #ffffff;
}

.code-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2px;
    position: relative;
}

.line-number {
    color: #999;
    width: 30px;
    text-align: right;
    margin-right: 16px;
    user-select: none;
    font-size: 12px;
}

.code-text {
    color: #1a1a1a;
    flex: 1;
    font-size: 13px;
}

.keyword {
    color: #d73a49;
    font-weight: 500;
}

.module {
    color: #6f42c1;
}

.function {
    color: #005cc5;
}

.parameter {
    color: #032f62;
}

.number {
    color: #005cc5;
}

.string {
    color: #032f62;
}

.comment {
    color: #6a737d;
    font-style: italic;
}

.diff-add {
    color: #28a745;
    font-weight: bold;
    margin-left: 8px;
}

.diff-remove {
    color: #d73a49;
    font-weight: bold;
    margin-left: 8px;
}

/* AI Panel */
.ai-panel {
    background: #f8f9fa;
    border-left: 1px solid #e5e5e5;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.ai-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ai-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.file-changes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.file-change {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.ai-task {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #1976d2;
}

.ai-agent {
    background: #fff3e0;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #ff9800;
}

.agent-label {
    font-size: 12px;
    font-weight: 600;
    color: #ff9800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-summary {
    background: #e8f5e8;
    padding: 16px;
    border-radius: 6px;
    border-left: 3px solid #4caf50;
}

.features-list {
    margin-top: 12px;
}

.feature-group {
    margin-bottom: 12px;
}

.feature-group strong {
    color: #1a1a1a;
    font-size: 13px;
}

.feature-group ul {
    margin: 8px 0 0 16px;
    padding: 0;
}

.feature-group li {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.ai-followup {
    background: #1976d2;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.ai-followup:hover {
    background: #1565c0;
}

.ai-input {
    margin-top: auto;
}

.ai-input input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 13px;
    background: #ffffff;
    color: #1a1a1a;
}

.ai-input input:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.ai-input input::placeholder {
    color: #999;
}


/* Product Showcase Section */
.product-showcase {
    padding: 120px 0;
    background: #fafafa;
}

.showcase-header {
    text-align: left;
    margin-bottom: 60px;
}

.showcase-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.showcase-layer {
    margin-bottom: 30px;
    height: 78vh;
    min-height: 78vh;
}

.showcase-layer:last-child {
    margin-bottom: 0;
}

.showcase-content {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: #F8F7F4;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    height: 100%;
}

@media (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        text-align: center;
    }
}

.showcase-layer.reverse .showcase-content {
    grid-template-columns: 70% 30%;
}

@media (max-width: 768px) {
    .showcase-layer.reverse .showcase-content {
        grid-template-columns: 1fr;
    }
}

.showcase-layer.reverse .showcase-visual {
    order: 1;
}

.showcase-layer.reverse .showcase-text {
    order: 2;
}

.showcase-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    height: 100%;
}

.showcase-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.showcase-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.showcase-link {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.showcase-link:hover {
    color: #e55a2b;
}

.showcase-visual {
    background: #F8F7F4 url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/web_bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
    .showcase-visual {
        height: 200px;
        padding: 16px;
        background: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/web_bg.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        position: relative;
    }
    
    /* Complex Interface Mockups - Mobile Optimized */
    .pylar-interface,
    .agent-interface,
    .evals-dashboard,
    .ide-window,
    .slack-window {
        width: 100%;
        height: 100%;
        transform: none;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .interface-container {
        grid-template-columns: 1fr;
        gap: 0;
        height: auto;
    }
    
    .sql-ide-panel {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        min-height: 120px;
    }
    
    .tools-panel {
        min-height: 100px;
    }
    
    .agent-workspace {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0;
    }
    
    .workspace-sidebar {
        max-height: 120px;
        overflow-y: auto;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 8px;
    }
    
    .workspace-main {
        padding: 8px;
        min-height: 100px;
    }
    
    .dashboard-header {
        padding: 8px 12px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .dashboard-title {
        font-size: 12px;
    }
    
    .dashboard-context {
        font-size: 10px;
    }
    
    .kpi-row {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .kpi-card {
        padding: 8px;
    }
    
    .kpi-value {
        font-size: 14px;
    }
    
    .kpi-label {
        font-size: 8px;
    }
    
    .charts-section {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .chart-container {
        padding: 6px;
    }
    
    .chart-title {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .chart-placeholder {
        height: 40px;
    }
    
    .tables-section {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .table-container {
        padding: 6px;
    }
    
    .table-title {
        font-size: 9px;
        margin-bottom: 4px;
    }
    
    .table-content {
        font-size: 7px;
    }
    
    .table-header,
    .table-row {
        display: none;
    }
    
    .table-header:first-child,
    .table-row:first-child {
        display: flex;
    }
    
    .col {
        padding: 2px 4px;
        font-size: 6px;
    }
}

.hero-image-container,
.showcase-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image,
.showcase-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* IDE Window Small */
.ide-window-small {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    max-width: 500px;
    width: 100%;
}

.ide-window-small .window-header {
    background: #f5f5f5;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.window-title {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

.get-button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.get-button:hover {
    background: #333;
}

.code-editor-small {
    background: #ffffff;
}

.editor-tabs {
    display: flex;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

.tab {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-right: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.tab.active {
    background: #ffffff;
    color: #1a1a1a;
    border-bottom: 2px solid #1976d2;
}

.code-content-small {
    padding: 12px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 11px;
    line-height: 1.4;
    background: #ffffff;
    max-height: 200px;
    overflow-y: auto;
}

.code-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2px;
    position: relative;
}

.code-line.highlight {
    background: rgba(25, 118, 210, 0.1);
    border-radius: 4px;
    padding: 4px 8px;
    margin: 4px 0;
}

.line-number {
    color: #999;
    width: 30px;
    text-align: right;
    margin-right: 16px;
    user-select: none;
    font-size: 12px;
}

.code-text {
    color: #1a1a1a;
    flex: 1;
    font-size: 13px;
}

.keyword {
    color: #d73a49;
    font-weight: 500;
}

.module {
    color: #6f42c1;
}

.function {
    color: #005cc5;
}

.parameter {
    color: #032f62;
}

.string {
    color: #032f62;
}

.tag {
    color: #22863a;
}

.tag-name {
    color: #22863a;
}

.attribute {
    color: #6f42c1;
}

/* Agent Interface */
.agent-interface {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    max-width: 600px;
    width: 100%;
}

.agent-header {
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.agent-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.agent-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.agent-link {
    color: #ff6b35;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.agent-workspace {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 100%;
    min-height: 300px;
}

.workspace-sidebar {
    background: #f8f9fa;
    border-right: 1px solid #e5e5e5;
    padding: 12px;
    overflow-y: auto;
}

.workspace-section {
    margin-bottom: 8px;
}

.section-title {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workspace-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.workspace-item:last-child {
    border-bottom: none;
}

.spinner {
    color: #ff6b35;
    font-weight: bold;
    animation: spin 1s linear infinite;
    font-size: 10px;
}

.checkmark {
    color: #28a745;
    font-weight: bold;
    font-size: 10px;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 11px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.item-status {
    font-size: 9px;
    color: #ff6b35;
    font-style: italic;
}

.item-meta {
    font-size: 9px;
    color: #666;
    margin-bottom: 2px;
}

.item-desc {
    font-size: 9px;
    color: #666;
}

.workspace-main {
    padding: 12px;
    background: #ffffff;
    overflow-y: auto;
}

.task-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.task-description {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.task-blocks {
    margin-bottom: 8px;
}

.task-block {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 8px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 10px;
}

.file-icon {
    font-size: 10px;
}

.file-info {
    color: #1a1a1a;
    font-weight: 500;
}

.task-text {
    font-size: 10px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 4px;
}

.agent-input {
    position: relative;
    margin-top: auto;
}

.agent-input input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 11px;
    background: #ffffff;
    color: #1a1a1a;
}

.agent-input input:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.input-actions {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent-label {
    font-size: 9px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 4px;
    border-radius: 3px;
}

.arrow-up {
    color: #666;
    font-size: 10px;
    cursor: pointer;
}

/* Slack Window */
.slack-window {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    max-width: 500px;
    width: 100%;
}

.slack-content {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.channel-header {
    background: #f8f9fa;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.channel-info {
    flex: 1;
}

.channel-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.member-count {
    font-size: 10px;
    color: #666;
}

.member-avatars {
    display: flex;
    gap: -4px;
}

.avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e5e5e5;
    border: 2px solid #ffffff;
    margin-left: -4px;
}

.avatar:first-child {
    margin-left: 0;
}

.chat-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #ffffff;
}

.message {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.message-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
}

.message-avatar.app {
    background: #1976d2;
    color: white;
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.message-author {
    font-size: 10px;
    font-weight: 600;
    color: #1a1a1a;
}

.message-time {
    font-size: 8px;
    color: #666;
}

.message-text {
    font-size: 11px;
    color: #333;
    line-height: 1.3;
}

.chat-footer {
    padding: 10px 12px;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-pr {
    background: #1976d2;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 500;
    cursor: pointer;
}

.github-text {
    font-size: 9px;
    color: #666;
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Frontier Section */
.frontier-section {
    padding: 120px 0;
    background: #fafafa;
}

.frontier-header {
    text-align: left;
    margin-bottom: 60px;
}

.frontier-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

.frontier-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
    background: #ffffff;
    position: relative;
}


.frontier-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}

.frontier-item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.frontier-link {
    color: #ff6b35;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 4px;
}

.frontier-link:hover {
    color: #e55a2b;
}

.frontier-visual {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 16px;
    margin-top: 16px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Model Selector */
.model-selector {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 250px;
}

.selector-header {
    background: #f8f9fa;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    border-bottom: 1px solid #e5e5e5;
}

.model-list {
    padding: 4px 0;
}

.model-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.model-item:hover {
    background: #f8f9fa;
}

.model-item.selected {
    background: #e3f2fd;
    color: #1976d2;
}

.model-name {
    font-size: 11px;
    color: #1a1a1a;
}

.model-item.selected .model-name {
    color: #1976d2;
    font-weight: 500;
}

.checkmark {
    color: #1976d2;
    font-weight: bold;
    font-size: 10px;
}

/* Search Interface */
.search-interface {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.search-header {
    background: #f8f9fa;
    padding: 8px 12px;
    border-bottom: 1px solid #e5e5e5;
}

.search-tabs {
    display: flex;
    gap: 12px;
}

.search-tabs .tab {
    font-size: 10px;
    color: #666;
    cursor: pointer;
    padding: 2px 0;
}

.search-tabs .tab.active {
    color: #1a1a1a;
    font-weight: 500;
}

.search-input-container {
    padding: 12px;
}

.search-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 11px;
    background: #ffffff;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.search-input:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.search-status {
    font-size: 9px;
    color: #666;
    font-style: italic;
}

/* Code Editor Demo */
.code-editor-demo {
    background: #1a1a1a;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.editor-header {
    background: #2a2a2a;
    padding: 6px 10px;
    border-bottom: 1px solid #333;
}

.editor-tabs {
    display: flex;
    gap: 12px;
}

.editor-tabs .tab {
    font-size: 10px;
    color: #ccc;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.editor-tabs .tab.active {
    background: #1976d2;
    color: #ffffff;
}

.code-content {
    padding: 12px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 10px;
    line-height: 1.4;
}

.code-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1px;
}

.line-number {
    color: #666;
    width: 16px;
    text-align: right;
    margin-right: 8px;
    user-select: none;
    font-size: 9px;
}

.code-text {
    color: #e6e6e6;
    flex: 1;
    font-size: 10px;
}

.keyword {
    color: #ff79c6;
    font-weight: 500;
}

.function {
    color: #50fa7b;
}

.parameter {
    color: #f1fa8c;
}

/* Ship Agent Workflows Section */
.workflows-section {
    padding: 120px 0;
    background: #fafafa;
}

.workflows-header {
    text-align: left;
    margin-bottom: 60px;
}

.workflows-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

.workflow-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.workflow-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0;
}

.workflow-card-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.workflow-link {
    color: #f97316;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 4px;
}

.workflow-link:hover {
    color: #ea580c;
    text-decoration: underline;
}

.workflow-visual {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Databases List */
.databases-list {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-header {
    font-size: 9px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.database-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 4px;
}

.database-item:last-child {
    margin-bottom: 0;
}

.db-name {
    font-size: 9px;
    font-weight: 500;
    color: #475569;
}

.db-status {
    font-size: 8px;
    color: #059669;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Governance Panel */
.governance-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-header {
    font-size: 9px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.control-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    flex: 1;
}

.control-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.control-label {
    font-size: 9px;
    font-weight: 500;
    color: #64748b;
}

.control-value {
    font-size: 9px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #475569;
}

.audit-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
}

.audit-title {
    font-size: 9px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audit-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 8px;
    padding: 4px 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
}

.time {
    color: #94a3b8;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.action {
    color: #475569;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    flex: 1;
    margin: 0 8px;
}

.status {
    font-weight: bold;
    color: #475569;
}

/* Audit Log */
.audit-log {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px;
    margin: 12px 0;
}

.audit-header {
    font-size: 10px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audit-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 8px;
    font-size: 9px;
    color: #64748b;
    padding: 2px 0;
    border-bottom: 1px solid #f1f5f9;
}

.audit-row:last-child {
    border-bottom: none;
}

.audit-time {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #94a3b8;
}

.audit-tool {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #475569;
}

.audit-rows {
    text-align: right;
    color: #64748b;
}

.audit-duration {
    text-align: right;
    color: #64748b;
}

/* Agent Interface */
.agent-interface {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.interface-header {
    font-size: 9px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-window {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 6px;
}

.user-query {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 8px;
    color: #475569;
    margin-bottom: 6px;
}

.agent-response {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.response-text {
    font-size: 8px;
    color: #64748b;
}

.tool-call {
    font-size: 7px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #475569;
    background: #f8fafc;
    padding: 2px 4px;
    border-radius: 3px;
    border: 1px solid #e2e8f0;
}

.tools-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 6px;
}

.tools-header {
    font-size: 8px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tool-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    font-size: 7px;
}

.tool-name {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #475569;
}

.tool-status {
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workflows-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .workflow-card {
        padding: 20px;
    }
    
    .workflows-title {
        font-size: 28px;
    }
    
    .workflow-card-title {
        font-size: 18px;
    }
    
    .workflow-card-description {
        font-size: 13px;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .tab-nav-item {
        border-bottom: 1px solid #e2e8f0;
        border-right: none;
    }
    
    .tab-nav-item.active {
        border-bottom-color: #e2e8f0;
        border-right: 2px solid #f97316;
    }
}

/* Recent Highlights Section */
.highlights-section {
    padding: 100px 0;
    background: #ffffff;
}

.highlights-header {
    text-align: left;
    margin-bottom: 40px;
}

.highlights-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.highlight-item {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.highlight-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
}

.highlight-meta {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.highlights-footer {
    text-align: center;
}

.highlights-link {
    color: #ff6b35;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.highlights-link:hover {
    color: #e55a2b;
}


/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 100px 0 48px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 0 0 400px;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo .logo-text {
    color: #000000;
}

.footer-logo .logo-icon {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.footer-sections {
    display: flex;
    gap: 120px;
    flex: 1;
}


.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-copyright {
    color: #ccc;
}

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

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .ide-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .sidebar {
        display: none;
    }
    
    .ai-panel {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        max-height: 300px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 1000px;
    }
    
    .showcase-layer.reverse .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .showcase-layer.reverse .showcase-visual {
        order: 1;
    }
    
    .showcase-layer.reverse .showcase-text {
        order: 2;
    }
    
    .showcase-title {
        font-size: 36px;
    }
    
    .agent-workspace {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .workspace-sidebar {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        max-height: 200px;
    }
    
    
    .frontier-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    .frontier-title {
        font-size: 28px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .highlights-title {
        font-size: 20px;
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-container {
        padding: 0 16px;
        height: 60px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    /* Hero Section - Mobile Optimized */
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
        background: #fafafa;
    }
    
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 16px;
        gap: 24px;
        max-width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        order: 1;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 16px;
        font-weight: 600;
        text-align: left !important;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 24px;
        color: #666;
        text-align: left !important;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        min-height: 44px;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        max-width: 100%;
    }
    
    .video-container {
        height: 200px;
        width: 100%;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Product Showcase - Mobile Optimized */
    .product-showcase {
        padding: 60px 0;
        background: #ffffff;
    }
    
    .showcase-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 16px;
    }
    
    .showcase-section-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .showcase-layer {
        height: auto;
        min-height: auto;
        margin-bottom: 32px;
        padding: 0 16px;
    }
    
    .showcase-layer:last-child {
        margin-bottom: 0;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e5e5e5;
        text-align: center;
    }
    
    .showcase-text {
        order: 1;
        padding: 0;
    }
    
    .showcase-title {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .showcase-description {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.4;
        color: #666;
    }
    
    .showcase-link {
        font-size: 13px;
        font-weight: 500;
    }
    
    .showcase-visual {
        order: 2;
        height: 200px;
        padding: 16px;
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid #e5e5e5;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }
    
    /* Product Images - Mobile optimized */
    .pylar-interface {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/governed_sql_views.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 4px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    .agent-interface {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/generate_mcp_tools.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 4px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    .evals-dashboard {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/evals_layer.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 4px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    .ide-window,
    .publish-modal {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/publish_mcp_tools.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 4px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    .slack-window {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/evals_layer.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 4px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Hide all child elements on mobile - using images instead */
    .pylar-interface *,
    .agent-interface *,
    .evals-dashboard *,
    .ide-window *,
    .publish-modal *,
    .slack-window * {
        display: none !important;
    }
    
    /* Prevent product image from showing in workflow-visual on mobile */
    .workflow-visual .agent-interface {
        background-image: none !important;
    }
    
    /* Show workflow-visual child elements on mobile - keep original interface */
    .workflow-visual .agent-interface * {
        display: block !important;
    }
    
    /* Hide complex interface elements on mobile - using images instead */
    .interface-container,
    .sql-ide-panel,
    .tools-panel,
    .agent-workspace,
    .workspace-sidebar,
    .workspace-main,
    .dashboard-header,
    .dashboard-title,
    .dashboard-context,
    .kpi-row,
    .kpi-card,
    .kpi-value,
    .kpi-label,
    .charts-section,
    .chart-container,
    .chart-title,
    .chart-placeholder,
    .tables-section,
    .table-container,
    .table-title,
    .table-content,
    .table-header,
    .table-row,
    .col {
        display: none !important;
    }
    
    /* Frontier Section - Mobile Optimized */
    .frontier-section {
        padding: 60px 0;
        background: #fafafa;
    }
    
    .frontier-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 16px;
    }
    
    .frontier-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .frontier-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .frontier-item {
        padding: 20px;
        text-align: center;
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid #e5e5e5;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .frontier-item-title {
        font-size: 18px;
        margin-bottom: 12px;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .frontier-item-description {
        font-size: 14px;
        line-height: 1.4;
        color: #666;
        margin-bottom: 16px;
    }
    
    .frontier-link {
        font-size: 13px;
        font-weight: 500;
    }
    
    .frontier-visual {
        height: 100px;
        margin-top: 16px;
        background: #f8f9fa;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e5e5e5;
    }
    
    .ide-window {
        max-width: 100%;
    }
    
    .ide-content {
        height: 400px;
    }
    
    .code-editor {
        font-size: 12px;
        padding: 12px;
    }
    
    .ai-panel {
        padding: 16px;
        max-height: 250px;
    }
    
    .ai-content {
        gap: 12px;
    }
    
    .showcase-title {
        font-size: 28px;
    }
    
    .showcase-description {
        font-size: 16px;
    }
    
    .company-logos {
        gap: 6px;
        justify-content: flex-start;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .logo-item {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .frontier-title {
        font-size: 24px;
    }
    
    .frontier-item-title {
        font-size: 16px;
    }
    
    .frontier-item-description {
        font-size: 12px;
    }
    
    .highlights-title {
        font-size: 18px;
    }
    
    .highlight-title {
        font-size: 14px;
    }
    
    .highlight-description {
        font-size: 11px;
    }
    
    .highlight-meta {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 18px;
    }
    
    
    /* Footer - Mobile Optimized */
    .footer {
        padding: 60px 0 40px;
        background: #1a1a1a;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-brand {
        display: none !important;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .footer-logo .logo-text {
        display: none !important;
    }
    
    .footer-tagline {
        display: none !important;
    }
    
    .footer-sections {
        flex-direction: column;
        gap: 32px;
        width: 100%;
        max-width: 300px;
        align-items: flex-start;
    }
    
    .footer-section {
        min-width: auto;
        text-align: left;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
        color: #ffffff;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
        color: #ccc;
        padding: 8px 0;
        transition: color 0.2s ease;
    }
    
    .footer-links a:hover {
        color: #ffffff;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: left;
        padding-top: 32px;
        border-top: 1px solid #333;
    }
    
    .footer-copyright {
        font-size: 12px;
        color: #ccc;
    }
    
    .footer-language {
        justify-content: center;
    }
    
    /* Mobile Button Optimizations */
    .btn-primary {
        min-height: 44px;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-menu-toggle {
        padding: 8px;
        border-radius: 4px;
        background: #f5f5f5;
        border: 1px solid #ddd;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle:hover {
        background: #e5e5e5;
    }
    
    /* Touch-friendly links */
    .showcase-link,
    .frontier-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 6px;
        background: #f8f9fa;
        border: 1px solid #e5e5e5;
        transition: all 0.2s ease;
    }
    
    .showcase-link:hover,
    .frontier-link:hover {
        background: #e9ecef;
        border-color: #dee2e6;
    }
}

/* Tablet Optimizations */
@media (max-width: 1024px) and (min-width: 769px) {
    .showcase-visual {
        height: 250px;
        padding: 20px;
        background: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/web_bg.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Product Images - Tablet optimized */
    .pylar-interface {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/governed_sql_views.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .agent-interface {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/generate_mcp_tools.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .evals-dashboard {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/evals_layer.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .ide-window,
    .publish-modal {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/publish_mcp_tools.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .slack-window {
        background-image: url('https://auth.airbookhq.com/storage/v1/object/public/website-assets/Pylar%20Website%20assets/evals_layer.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Hide all child elements on tablet - using images instead */
    .pylar-interface *,
    .agent-interface *,
    .evals-dashboard *,
    .ide-window *,
    .publish-modal *,
    .slack-window * {
        display: none !important;
    }
    
    /* Prevent product image from showing in workflow-visual on tablet */
    .workflow-visual .agent-interface {
        background-image: none !important;
    }
    
    /* Show workflow-visual child elements on tablet - keep original interface */
    .workflow-visual .agent-interface * {
        display: block !important;
    }
    
    /* Hide complex interface elements on tablet - using images instead */
    .interface-container,
    .sql-ide-panel,
    .tools-panel,
    .agent-workspace,
    .workspace-sidebar,
    .workspace-main,
    .dashboard-header,
    .dashboard-title,
    .dashboard-context,
    .kpi-row,
    .kpi-card,
    .kpi-value,
    .kpi-label,
    .charts-section,
    .chart-container,
    .chart-title,
    .chart-placeholder,
    .tables-section,
    .table-container,
    .table-title,
    .table-content,
    .table-header,
    .table-row,
    .col {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 24px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 20px;
        text-align: left !important;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 24px;
        text-align: left !important;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 100%;
    }
    
    .video-container {
        height: 200px;
        margin-top: 16px;
    }
    
    .showcase-content {
        padding: 20px;
        gap: 20px;
    }
    
    .showcase-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .showcase-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .showcase-visual {
        height: 200px;
        padding: 12px;
    }
    
    .frontier-grid {
        gap: 20px;
    }
    
    .frontier-item {
        padding: 20px;
    }
    
    .frontier-item-title {
        font-size: 16px;
    }
    
    .frontier-item-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        gap: 32px;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-sections {
        gap: 32px;
        align-items: flex-start;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-tagline {
        display: none !important;
    }
    
    .footer-logo .logo-text {
        display: none !important;
    }
    
    .footer-copyright {
        font-size: 11px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .showcase-content {
        padding: 30px;
    }
    
    .showcase-title {
        font-size: 22px;
    }
    
    .showcase-description {
        font-size: 15px;
    }
    
    .showcase-visual {
        height: 300px;
    }
    
    .video-container {
        height: 400px;
    }
    
    .footer-sections {
        gap: 80px;
    }
    
    .footer-brand {
        display: none !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Blog Page Styles */
.blog-header {
    padding: 60px 0 40px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.blog-content {
    padding: 40px 0 80px;
    background: #ffffff;
}

.blog-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
}

.blog-sidebar {
    padding-top: 20px;
}

.sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-link {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.filter-link:hover,
.filter-link.active {
    color: #1a1a1a;
}

.blog-main {
    padding-top: 20px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-post {
    background: #F8F7F4;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.blog-post:last-child {
    margin-bottom: 0;
}

.post-title {
    font-size: 8px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
}

.post-category {
    font-weight: 500;
}

.post-separator {
    font-weight: 300;
}

.post-date {
    font-weight: 400;
}

.external-link {
    color: #0369a1;
    text-decoration: none;
    font-weight: 500;
}

.external-link:hover {
    text-decoration: underline;
}

.blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    margin-top: 40px;
}

.pagination-link {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.pagination-link:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #1a1a1a;
}

/* Footer Styles */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-select {
    font-size: 14px;
    color: #666;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 36px;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        padding-top: 0;
    }
    
    .sidebar-filters {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .blog-main {
        padding-top: 0;
    }
    
    .post-title {
        font-size: 7px;
    }
    
    .blog-post {
        padding: 16px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Blog Post Page Styles */
.blog-post-page {
    background: #ffffff;
    min-height: 100vh;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: #0369a1;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
}

.breadcrumb-current {
    color: #666;
}

.post-header {
    margin-bottom: 40px;
}

.post-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.post-meta {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.post-date {
    font-weight: 500;
}

.post-by,
.post-in {
    color: #999;
}

.post-authors {
    font-weight: 500;
}

.post-category {
    color: #0369a1;
    font-weight: 500;
}

.toc {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
}

.toc-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-link {
    color: #0369a1;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
}

.toc-link:hover {
    text-decoration: underline;
}

.post-content {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
}

.post-content p {
    margin-bottom: 24px;
}

.post-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 48px 0 24px 0;
    line-height: 1.3;
}

.post-content h2:first-of-type {
    margin-top: 0;
}

.post-content strong {
    font-weight: 600;
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.post-tags,
.post-authors-footer {
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.tag-label,
.authors-label {
    font-weight: 500;
}

.tag {
    color: #0369a1;
    font-weight: 500;
}

.post-navigation {
    margin-top: 24px;
}

.nav-link-prev {
    color: #0369a1;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.nav-link-prev:hover {
    text-decoration: underline;
}

.nav-link-prev-text {
    font-size: 14px;
    color: #666;
}

/* Blog Post Responsive */
@media (max-width: 768px) {
    .blog-post-container {
        padding: 20px 16px 60px;
    }
    
    .post-title {
        font-size: 36px;
    }
    
    .post-meta {
        font-size: 14px;
    }
    
    .toc {
        padding: 20px;
    }
    
    .toc-title {
        font-size: 16px;
    }
    
    .toc-link {
        font-size: 14px;
    }
    
    .post-content {
        font-size: 16px;
    }
    
    .post-content h2 {
        font-size: 24px;
    }
}

/* Company Page Styles */
.company-page {
    background: #fafafa;
    min-height: 100vh;
    padding-top: 80px;
}

.company-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.company-header {
    margin-bottom: 60px;
}

.company-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.note-content {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
}

.note-content p {
    margin-bottom: 24px;
}

.note-content p:last-of-type {
    margin-bottom: 40px;
}

.founders-signature {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.founders-signature p {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Company Page Responsive */
@media (max-width: 768px) {
    .company-container {
        padding: 40px 16px 60px;
    }
    
    .company-title {
        font-size: 36px;
    }
    
    
    .note-content {
        font-size: 16px;
    }
}
