/* Documentation Content Styles */
.documentation-content {
    padding: 2rem 0;
    background: var(--background);
    color: var(--text-color);
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-color);
}

.card-content {
    color: var(--text-color);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    font-size: 2rem;
    color: white;
}

.metric-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-description {
    color: var(--text-color);
    opacity: 0.8;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.timeline-date {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Projections Grid */
.projections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.projection-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.projection-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
}

.feature-list i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.feature-list span {
    color: var(--text-color);
}

/* Pain Points */
.pain-points {
    margin-bottom: 2rem;
}

.pain-points h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Use Cases */
.use-cases h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.use-case-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.use-case-card h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.use-case-card p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Adoption Section */
.adoption-section {
    margin-top: 3rem;
}

.adoption-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.adoption-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.adoption-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.adoption-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.adoption-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adoption-icon i {
    font-size: 2rem;
    color: white;
}

.adoption-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.adoption-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Team Grid Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--text-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    color: var(--text-color);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

/* Join Us Section */
.join-us-content {
    text-align: center;
}

.join-us-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.open-positions {
    margin-bottom: 2rem;
}

.open-positions h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .documentation-content {
        padding: 4rem 0;
    }

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

    .team-image {
        height: 250px;
    }

    .content-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
    }

    .card-header i {
        margin-right: 0;
        margin-bottom: 1rem;
    }

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

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
    }

    .timeline-icon {
        position: absolute;
        left: -45px;
    }

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

    .use-case-grid {
        grid-template-columns: 1fr;
    }

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

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

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.documentation-content h1 {
    margin-bottom: 30px;
    color: #333;
}

.documentation-content h2 {
    margin: 30px 0 20px;
    color: #4a6cf7;
}

.documentation-content h3 {
    margin: 25px 0 15px;
}

.documentation-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.documentation-content ul, .documentation-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.documentation-content li {
    margin-bottom: 10px;
}

.documentation-content blockquote {
    border-left: 4px solid #4a6cf7;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.documentation-content .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.documentation-content .stat {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.documentation-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.documentation-content th, .documentation-content td {
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    text-align: left;
}

.documentation-content th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.documentation-content tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Investor pitch specific styles */
.slide {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slide h3 {
    color: #4a6cf7;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.slide-number {
    background-color: #4a6cf7;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

/* User Segments (Pain Points & Use Cases) */
.user-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.segment {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.segment:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.segment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.segment-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.segment-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.segment-content h4 {
    font-size: 1.05rem;
    margin: 0.75rem 0 0.5rem;
    color: var(--primary-color);
}

.segment-content ul {
    list-style: disc;
    margin-left: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.segment-content ul li {
    margin-bottom: 0.4rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .user-segments {
        grid-template-columns: 1fr;
    }
}

/* Validation Badge */
.validation-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    margin: 3rem auto 2rem;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.validation-badge i {
    font-size: 1.25rem;
}

/* Metrics Table */
.metrics-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.metrics-table th,
.metrics-table td {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.metrics-table th {
    background: rgba(255,255,255,0.08);
    font-weight: 600;
}

.metrics-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

/* TAM SAM SOM Grid */
.tam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.tam-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tam-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.tam-card.sam::before {
    background: var(--accent-color);
}

.tam-card.som::before {
    background: var(--secondary-color);
}

.tam-card:hover {
    transform: translateY(-5px);
}

.tam-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.tam-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Advisor Grid */
.advisor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advisor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.advisor-card:hover {
    transform: translateY(-5px);
}

.advisor-card h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.advisor-card .role {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.advisor-card .linkedin {
    color: var(--text-color);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.advisor-card .linkedin:hover {
    color: var(--primary-color);
}

/* KPI Grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.kpi-card h4 {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.kpi-card .kpi-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Feature Matrix */
.feature-matrix {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.feature-matrix th,
.feature-matrix td {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.feature-matrix th {
    background: rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.feature-matrix td:first-child {
    text-align: left;
    font-weight: 500;
}

.feature-matrix .check {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.feature-matrix tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Ribbon */
.ribbon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    margin: 2rem -2rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ribbon h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.ribbon p {
    color: rgba(255, 255, 255, 0.9);
}

/* Opportunity Badge */
.opportunity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 1rem 0;
}

.opportunity-badge i {
    font-size: 1.25rem;
}

/* Channel Cards */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
}

.channel-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.channel-card h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-metric {
    text-align: center;
}

.hero-metric .value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.hero-metric .label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tam-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .ribbon {
        margin: 2rem -1rem;
    }
} 