/* Global Styles */
:root {
    --anthropic-cream: #f5f2e8;
    --anthropic-dark: #1a1a1a;
    --anthropic-accent: #e8b79e;
    --anthropic-light-grey: #e5e5e5;
    --anthropic-text: #2d2d2d;
    --anthropic-code-bg: #f4f4f4;
    --anthropic-blue: #0077b5;
    --anthropic-green: #4caf50;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--anthropic-cream);
    color: var(--anthropic-text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

a {
    color: var(--anthropic-dark);
    text-decoration: none;
}

/* Header Styles */
header {
    background-color: var(--anthropic-cream);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--anthropic-dark);
    display: block;
}

.site-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--anthropic-text);
    display: block;
    margin-top: 4px;
    font-style: italic;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    padding: 8px 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
    background-color: var(--anthropic-dark);
    color: white;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s;
    color: var(--anthropic-dark);
}

.social-link:hover {
    background-color: var(--anthropic-light-grey);
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link.linkedin:hover {
    color: #0077b5;
}

.social-link.twitter:hover {
    color: #1DA1F2;
}

/* Pagination Navigation */
.pagination {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--anthropic-cream);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
}

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

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background-color: var(--anthropic-dark);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.nav-btn:hover:not(:disabled) {
    background-color: #333;
}

.nav-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.page-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--anthropic-dark);
}

#pageIndicator {
    font-size: 14px;
    font-weight: 500;
}

/* Slides Container */
.slides-container {
    width: 100%;
    height: calc(100vh - 136px); /* Adjusted for header and pagination */
    margin-top: 76px; /* Header height */
    overflow: hidden;
    position: relative;
}

/* Slide Styles */
.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    overflow-y: auto;
    padding: 20px 0;
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Slide 1 Styles */
#slide1 .slide-content {
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.slide-text {
    flex: 1;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-illustration {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}


/* Slide 2 Styles */
.slide-description {
    margin: 20px 0 30px;
    font-size: 1.1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.comparison-item {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-item h3 {
    margin-bottom: 10px;
    color: var(--anthropic-dark);
}

/* Slide 3 Styles */
.startup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.startup-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--anthropic-light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    font-size: 24px;
}

.startup-item h3 {
    margin-bottom: 10px;
}

.slide-note {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(232, 183, 158, 0.2);
    border-left: 4px solid var(--anthropic-accent);
    border-radius: 0 4px 4px 0;
}

/* Slide 4 Styles */
.enterprise-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.enterprise-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.enterprise-content {
    flex: 1;
}

.enterprise-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature h3 {
    margin-bottom: 8px;
}

.enterprise-note {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(232, 183, 158, 0.2);
    border-left: 4px solid var(--anthropic-accent);
    border-radius: 0 4px 4px 0;
}

/* Slide 5 Styles */
.pyramid-container {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    gap: 5px;
}

.pyramid-level {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    gap: 15px;
}

.level-1 {
    width: 90%;
}

.level-2 {
    width: 80%;
}

.level-3 {
    width: 70%;
}

.level-4 {
    width: 60%;
}

.pyramid-icon {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pyramid-text h3 {
    margin-bottom: 5px;
}

.missing-piece-note {
    margin-top: 30px;
}

/* Slide 6 Styles */
.stats-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;
}

.stat-card {
    flex: 1;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--anthropic-dark);
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.need-explanation {
    margin-top: 30px;
}

/* Slide 7 Styles */
.tools-wheel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.wheel-segment {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.segment-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.segment-content h3 {
    margin-bottom: 10px;
}

.tools-explanation {
    margin-top: 30px;
}

/* Slide 8 Styles */
.evolution-timeline {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    gap: 20px;
}

.timeline-stage {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stage-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--anthropic-light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stage-content h3 {
    margin-bottom: 8px;
}

.future-vision {
    margin-top: 30px;
}

/* Footer Styles */
footer {
    background-color: var(--anthropic-dark);
    color: white;
    text-align: center;
    padding: 20px 0;
}

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

.mcp-info {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .startup-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-container {
        flex-direction: column;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .tools-wheel {
        grid-template-columns: 1fr;
    }
    
    #slide1 .slide-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        margin-bottom: 10px;
    }
    
    .slides-container {
        margin-top: 120px;
        height: calc(100vh - 180px);
    }
    
    .pagination-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .page-dots {
        display: none;
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
}

/* General Text Styles */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--anthropic-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--anthropic-dark);
    margin-bottom: 15px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--anthropic-dark);
}

p {
    margin-bottom: 15px;
}