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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: #000;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.logo-icon {
    font-size: 24px;
}

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

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: white;
}

.chevron {
    opacity: 0.7;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1001;
}

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

.dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.dropdown-link:hover {
    color: white;
    background: #333;
}

.cta-button {
    border: none;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-button.primary {
    background: white;
    color: #000;
    padding: 12px 20px;
}

.cta-button.primary:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.cta-button.secondary {
    background: transparent;
    color: #666;
    border: 1px solid #333;
    padding: 12px 20px;
}

.cta-button.secondary:hover {
    color: #000;
    background: white;
}

.cta-button.large {
    padding: 16px 24px;
    font-size: 16px;
}

.arrow {
    opacity: 0.8;
}

/* Announcement Bar */
.announcement-bar {
    background: #0066FF;
    color: white;
    text-align: center;
    padding: 8px 0;
    position: fixed;
    top: 69px;
    width: 100%;
    z-index: 999;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.announcement-badge {
    background: white;
    color: #0066FF;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
}

.announcement-arrow {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3), transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.3), transparent 70%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2), transparent 70%);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 1px, rgba(0,0,0,0.02) 1px),
        linear-gradient(transparent 1px, rgba(0,0,0,0.02) 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.feature-chip {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 32px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chip-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* API Section */
.api-section {
    padding: 120px 0;
    background: white;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-right {
    min-width: 0; /* Allow flexbox items to shrink below content size */
}

/* New API Layout Structure */
.main-section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.api-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.api-visual {
    display: flex;
    justify-content: center;
}

.api-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

/* Trust Network Visualization */
.network-visualization {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.12),
        0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #cbd5e1;
    width: 100%;
    max-width: 600px;
    min-height: 400px;
}

.trust-network-graph {
    width: 100%;
    height: 350px;
}

.trust-node-label {
    font-size: 13px;
    font-weight: 600;
    fill: #1e293b;
    font-family: 'Inter', sans-serif;
}

.trust-node-subtitle {
    font-size: 11px;
    fill: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.relationship-text {
    font-size: 10px;
    fill: #3B82F6;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.path-line.animated {
    animation: dash 2s linear infinite;
}

.confidence-badge {
    text-align: center;
    margin-top: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    border: 1px solid #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.confidence-label {
    font-size: 14px;
    color: #1e40af;
    margin-right: 8px;
    font-weight: 500;
}

.confidence-score {
    font-size: 18px;
    font-weight: 700;
    color: #1d4ed8;
}

/* Use Case Box */
.use-case-box {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border-left: 3px solid #3B82F6;
}

.use-case-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1e293b;
}

.use-case-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* API Tabs */
.api-tabs {
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.tab-header {
    display: flex;
    background: #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 10px 14px;
    background: none;
    border: none;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tab-btn.active {
    background: #3B82F6;
    color: white;
}

.tab-content {
    padding: 16px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.endpoint-header {
    margin-bottom: 12px;
}

.endpoint {
    background: #0f172a;
    color: #e2e8f0;
    padding: 6px 10px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 11px;
    font-weight: 500;
}

.api-response {
    background: #0f172a;
    border-radius: 6px;
    padding: 12px;
    overflow-x: auto;
    border: 1px solid #1e293b;
}

.response-code {
    color: #e2e8f0;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
    white-space: pre-wrap;
}

/* Risk Signal Cards */
.risk-signals-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 600px;
}

.risk-signal-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.12),
        0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    min-height: 140px;
}

.risk-signal-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.15),
        0 6px 20px rgba(0,0,0,0.08);
}

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

.risk-icon {
    font-size: 32px;
}

.risk-source {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
}

.platform-logo {
    width: 20px;
    height: 20px;
}

.source-label {
    font-size: 12px;
    color: #475569;
    font-weight: 600;
}

.risk-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.risk-alert {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.risk-details {
    font-size: 15px;
    color: #64748b;
    line-height: 1.4;
}

.risk-score {
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    align-self: flex-start;
    margin-top: 4px;
}

.risk-score.high {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    border: 1px solid #fecaca;
}

.risk-score.medium {
    background: linear-gradient(135deg, #fefbeb 0%, #fef3c7 100%);
    color: #d97706;
    border: 1px solid #fed7aa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .api-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .risk-signals-container {
        max-width: none;
    }
}

/* Prediction Visualization */
.prediction-visualization {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 25px 80px rgba(16,185,129,0.15),
        0 10px 32px rgba(16,185,129,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    min-height: 400px;
    width: 100%;
}

.momentum-chart {
    width: 100%;
    height: auto;
}

.chart-label {
    font-size: 14px;
    font-weight: 600;
    fill: #374151;
    font-family: 'Inter', sans-serif;
}

.chart-sublabel {
    font-size: 12px;
    font-weight: 500;
    fill: #6b7280;
    font-family: 'Inter', sans-serif;
}

.prediction-label {
    fill: #3B82F6 !important;
    font-weight: 700 !important;
}

.momentum-title {
    font-size: 13px;
    font-weight: 600;
    fill: #374151;
    font-family: 'Inter', sans-serif;
}

.momentum-value {
    font-size: 15px;
    font-weight: 700;
    fill: #059669;
    font-family: 'Inter', sans-serif;
}

.prediction-badge {
    position: absolute;
    bottom: 20px;
    right: 25px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(16,185,129,0.1);
}

.prediction-label {
    color: #6b7280;
}

.prediction-score {
    color: #10B981;
    font-weight: 700;
}

/* Network Visualization */
.network-demo {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.network-title {
    text-align: center;
    margin-bottom: 40px;
}

.network-title h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.network-title p {
    font-size: 16px;
    color: #666;
}

.network-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.network-graph {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.node-label {
    font-size: 12px;
    font-weight: 600;
    fill: #333;
    font-family: 'Inter', sans-serif;
}

.node-subtitle {
    font-size: 10px;
    fill: #666;
    font-family: 'Inter', sans-serif;
}

.node-label-small {
    font-size: 9px;
    font-weight: 500;
    fill: #555;
    font-family: 'Inter', sans-serif;
}

.path-text {
    font-size: 9px;
    fill: #3B82F6;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.path-line {
    stroke-dasharray: 5,5;
    animation: dash 2s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

.network-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.legend-item span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.path-explanation {
    text-align: center;
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #3B82F6;
}

.path-explanation h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.path-explanation p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.path-explanation p:last-child {
    margin-bottom: 0;
}

.section-tag {
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 24px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.api-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.api-category {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    background: #fafafa;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.use-case {
    background: #f8f9fa;
    border-left: 4px solid #3B82F6;
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
}

.use-case-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.use-case-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.api-endpoints {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.api-endpoint {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.endpoint-code {
    background: #f8f8f8;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 14px;
    color: #0066FF;
    font-weight: 500;
}

.endpoint-desc {
    font-size: 14px;
    color: #666;
    margin-left: 12px;
}

.code-mockup {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 100%;
}

.code-header {
    background: #2a2a2a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.code-dots {
    display: flex;
    gap: 6px;
}

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

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.code-title {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
}

.code-content {
    padding: 16px;
    overflow: hidden;
}

.code-block {
    color: #e5e5e5;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 12px;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
}

/* Business Graph Section */
.business-graph-section {
    background: #f8f9fa;
    padding: 120px 0;
    border-top: 1px solid #eee;
}

.graph-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.graph-feature {
    border-left: 4px solid #10B981;
    padding-left: 16px;
}

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

.feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.tech-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e8;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 24px;
}

.tech-icon {
    font-size: 18px;
}

.tech-text {
    font-size: 14px;
    color: #2d5a2d;
}

.graph-visualization {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.graph-container {
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    min-height: 380px;
    max-width: 500px;
    transform: perspective(1000px) rotateX(3deg) rotateY(-1deg);
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.graph-title {
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
    text-align: left;
    margin-bottom: 2px;
    letter-spacing: 0.08em;
}

.graph-subtitle {
    font-size: 10px;
    color: #9ca3af;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.graph-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.graph-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.graph-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.06),
        0 1px 2px rgba(0,0,0,0.04);
    min-width: 70px;
    max-width: 85px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.graph-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.12),
        0 2px 6px rgba(0,0,0,0.08);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 1);
}

.graph-icon {
    font-size: 16px;
    margin-bottom: 3px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.graph-item span {
    font-size: 8px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.graph-footer {
    position: absolute;
    bottom: 10px;
    right: 16px;
}

.universe-label {
    font-size: 9px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
}

/* Intelligence Section */
.intelligence-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intelligence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1), transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.1), transparent 70%);
    pointer-events: none;
}

.intelligence-section .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

.intelligence-section .section-title,
.intelligence-section .section-subtitle {
    color: white;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.intelligence-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-number {
    background: rgba(255,255,255,0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.intelligence-card p {
    font-size: 14px;
    opacity: 0.9;
}

.timeline-center {
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.timeline-item.prediction {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
    margin-top: 16px;
}

.timeline-date {
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
    font-size: 12px;
}

.timeline-event {
    flex: 1;
}

/* Architecture Section */
.architecture-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.comparison-table {
    max-width: 800px;
    margin: 60px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f8f8f8;
    font-weight: 600;
    font-size: 14px;
    color: #666;
}

.table-header .table-col {
    padding: 16px;
    text-align: center;
}

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

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

.table-label {
    padding: 16px;
    font-weight: 500;
    text-align: left;
    background: #fafafa;
}

.table-value {
    padding: 16px;
    text-align: center;
}

.table-value.old {
    color: #999;
    text-decoration: line-through;
}

.table-value.new {
    color: #10B981;
    font-weight: 500;
}

.integration-mockup {
    max-width: 600px;
    margin: 60px auto 0;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: 
        linear-gradient(90deg, transparent 1px, rgba(0,0,0,0.02) 1px),
        linear-gradient(transparent 1px, rgba(0,0,0,0.02) 1px);
    background-size: 20px 20px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 60px 0;
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: #0066FF;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066FF;
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-tier {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.pricing-price {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

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

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 600;
}

.performance-guarantees {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 80px;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.guarantee-icon {
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    background: #000;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.testimonials-section .section-tag {
    background: rgba(255,255,255,0.1);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 60px 0;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.05em;
}

.testimonial-logo {
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-quote strong {
    color: #0066FF;
    font-weight: 600;
}

.testimonial-cta {
    background: transparent;
    border: 1px solid #333;
    color: #ccc;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.testimonial-cta:hover {
    background: white;
    color: #000;
    border-color: white;
}

/* Network Section */
.network-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.network-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%);
    pointer-events: none;
}

.network-section .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

.network-section .section-title {
    color: white;
}

.network-growth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 60px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.growth-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.growth-period {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.growth-agents {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.growth-calls {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.growth-accuracy {
    display: block;
    font-size: 12px;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 8px;
}

.growth-arrow {
    font-size: 24px;
    opacity: 0.8;
}

.compound-loop {
    background: rgba(0,0,0,0.2);
    border-radius: 32px;
    padding: 16px 24px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Final CTA Section */
.final-cta-section {
    background: #000;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.stat-icon {
    font-size: 16px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intelligence-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .network-growth {
        flex-direction: column;
    }
    
    .growth-arrow {
        transform: rotate(90deg);
    }
    
    .performance-guarantees {
        flex-direction: column;
        gap: 16px;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Animations */
.feature-chip {
    animation: float 6s ease-in-out infinite;
}

.feature-chip:nth-child(2) {
    animation-delay: -2s;
}

.feature-chip:nth-child(3) {
    animation-delay: -4s;
}

.feature-chip:nth-child(4) {
    animation-delay: -6s;
}

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

.code-block {
    animation: typing 2s steps(40, end) forwards;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #e5e5e5;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
        border-right: none;
    }
}
/* Data Sources */
.data-sources {
    margin-bottom: 30px;
}

.data-sources-title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 20px;
    text-align: center;
}

.source-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.source-card {
    flex: 1;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(16,185,129,0.1);
}

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

.source-icon {
    font-size: 16px;
}

.source-type {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.source-content {
    margin-bottom: 10px;
}

.jd-snippet, .yt-snippet {
    font-size: 11px;
    line-height: 1.4;
}

.jd-title, .yt-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}

.jd-company, .yt-date {
    font-size: 10px;
    color: #9ca3af;
    margin-bottom: 6px;
}

.jd-text, .yt-text {
    color: #6b7280;
}

.jd-text mark, .yt-text mark {
    background: rgba(16,185,129,0.2);
    color: #059669;
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: 500;
}

.source-signal {
    font-size: 10px;
    color: #059669;
    font-weight: 500;
    padding: 4px 8px;
    background: rgba(16,185,129,0.1);
    border-radius: 6px;
    display: inline-block;
}

.prediction-timeline {
    margin: 25px 0;
    text-align: center;
}

.timeline-label {
    font-size: 11px;
    font-weight: 500;
    fill: #6b7280;
    font-family: "Inter", sans-serif;
}

.prediction-text {
    fill: #3B82F6 !important;
    font-weight: 600 !important;
}

/* Sexy Futuristic Titles */
.sexy-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
}

.title-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Futuristic Section Backgrounds */
.relationship-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
}

.relationship-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03), transparent 50%);
    pointer-events: none;
}

.risk-bg {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fecaca 100%);
    position: relative;
}

.risk-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(239, 68, 68, 0.05), transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.03), transparent 50%);
    pointer-events: none;
}

.prediction-bg {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
    position: relative;
}

.prediction-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 20%, rgba(34, 197, 94, 0.05), transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(16, 185, 129, 0.03), transparent 50%);
    pointer-events: none;
}

.api-section {
    position: relative;
    z-index: 1;
}

/* Modern Centered Footer */
.footer-content-centered {
    text-align: center;
    padding: 60px 0 40px;
}

.footer-brand-center {
    margin-bottom: 40px;
}

.footer-brand-center .logo {
    font-size: 24px;
    margin-bottom: 12px;
    justify-content: center;
}

.footer-tagline {
    color: #999;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.footer-apis {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-api-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-api-link:hover {
    color: white;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.api-icon {
    font-size: 18px;
}

.footer-cta {
    margin-top: 20px;
}

.footer-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

@media (max-width: 768px) {
    .footer-apis {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .footer-api-link {
        min-width: 200px;
        justify-content: center;
    }
}
