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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header & Navigation */
header {
    background: #e5e5e5;
    color: #13294B;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #ff6900;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #13294B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6900;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb .container {
    text-align: left;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: #13294B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #ff6900;
}

/* Hero Section */
.hero {
    background: #ff6900;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-hero {
    background: #ff6900;
    color: white;
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.demo-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 3rem;
    border: 2px dashed rgba(255,255,255,0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    margin-right: 1rem;
}

.btn-primary {
    background: #13294B;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Value Propositions */
.value-props {
    padding: 5rem 0;
    background: #f8f9fa;
}

.value-props h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

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

.prop-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prop-card h3 {
    margin-bottom: 1rem;
    color: #13294B;
}

/* VentureBots Showcase */
.venturebot-showcase {
    padding: 5rem 0;
    background: white;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.showcase-tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    position: relative;
    overflow-x: auto;
    padding: 20px 0;
}

.journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    min-width: 150px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #ff6900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-desc {
    font-size: 0.9rem;
    color: #666;
}

.journey-arrow {
    font-size: 1.5rem;
    color: #13294B;
    margin: 0 10px;
}

/* Journey Deep Dive */
.journey-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.journey-steps {
    display: grid;
    gap: 3rem;
}

.step-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #c84113;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    color: #13294B;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-content p {
    margin-bottom: 1rem;
    color: #666;
}

.agent-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 1rem;
}

.agent-name {
    font-weight: bold;
    color: #13294B;
    margin-bottom: 0.5rem;
}

.outputs-list {
    list-style: none;
    padding-left: 0;
}

.outputs-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.outputs-list li:before {
    content: "✓ ";
    color: #4caf50;
    font-weight: bold;
}

/* News Section */
.news-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-meta {
    color: #13294B;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    margin-bottom: 1rem;
    color: #333;
}

.news-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #13294B;
    text-decoration: none;
    font-weight: 600;
}

/* Technical Architecture */
.tech-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-card h3 {
    color: #13294B;
    margin-bottom: 1rem;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 0.3rem 0;
    color: #666;
}

/* Contributors Section */
.contributors-section {
    padding: 5rem 0;
    background: white;
}

.team-phase {
    margin-bottom: 4rem;
}

.phase-header {
    margin-bottom: 2rem;
}

.phase-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.phase-description {
    color: #666;
    font-style: italic;
}

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

.contributor-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #c84113;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contributor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contributor-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.contributor-role {
    color: #13294B;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contributor-description {
    color: #666;
    line-height: 1.6;
}

/* Demo Section */
.demo-section {
    padding: 5rem 0;
    background: #ff6900;
    color: white;
    text-align: center;
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
}

.demo-interface {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    color: #333;
    text-align: left;
}

.chat-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 10px;
}

.user-message {
    background: #e3f2fd;
    margin-left: 2rem;
}

.agent-message {
    background: #f1f8e9;
    margin-right: 2rem;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    background: white;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

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

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.content-card:hover {
    transform: translateY(-3px);
}

.content-card h3 {
    color: #13294B;
    margin-bottom: 1rem;
}

.content-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #13294B; /* Dark blue background */
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    color: #A0C4FF; /* Light blue links */
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .journey-timeline {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-arrow {
        transform: rotate(90deg);
    }

    .step-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}