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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #000;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-subheading {
    font-size: 28px;
    color: #666;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.pill {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    border: 1px solid #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -1px;
}

.section p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: #333;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.bg-light {
    background: #f9f9f9;
}

/* The Gap Section */
.gap-content {
    max-width: 900px;
    margin: 0 auto;
}

.gap-content > p {
    font-size: 17px;
    margin-bottom: 32px;
}

.gap-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.gap-item {
    padding: 24px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gap-item:hover {
    border-color: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gap-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.gap-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.gap-conclusion {
    text-align: center;
    font-size: 17px;
    padding: 24px;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #000;
}

/* Stages Grid */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stage-card {
    background: #f5f5f5;
    padding: 32px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.stage-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.stage-number {
    font-size: 48px;
    font-weight: 700;
    color: #ddd;
    margin-bottom: 16px;
}

.stage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.stage-card p {
    font-size: 14px;
    color: #666;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    padding: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Two Column */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 40px;
}

.bullets ul {
    list-style: none;
}

.bullets li {
    font-size: 16px;
    color: #666;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.bullets li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Sectors */
.sectors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.sector-item {
    padding: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
}

.sector-item:hover {
    border-color: #000;
    background: #f5f5f5;
}

/* AI Layer Section */
.ai-content {
    max-width: 900px;
    margin: 0 auto;
}

.ai-content > p {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #666;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.ai-feature {
    padding: 24px;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 3px solid #000;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.ai-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.ai-feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    border-color: #000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.team-member-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

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

.team-member-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Flywheel Grid */
.flywheel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 48px;
    align-items: center;
}

.flywheel-step {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.flywheel-step:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.flywheel-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.flywheel-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.flywheel-step p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.flywheel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
    min-height: 60px;
}

/* Manifesto */
.manifesto {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #000;
}

.manifesto p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    font-weight: 400;
}

/* Contact Form */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.flash-message {
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 16px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
}

.contact-email {
    text-align: center;
    font-size: 16px;
    color: #666;
}

.contact-email strong {
    color: #000;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 600px;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 16px 20px;
        font-size: 15px;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subheading {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-pills {
        gap: 8px;
    }

    .pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-secondary {
        border-width: 1px;
    }

    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .stages-grid,
    .services-grid {
        gap: 20px;
    }

    .stage-card,
    .service-card {
        padding: 24px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sectors-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .manifesto {
        padding: 24px;
        margin: 32px 0 0 0;
    }

    .manifesto p {
        font-size: 15px;
    }

    .stage-number {
        font-size: 36px;
    }

    .gap-list {
        grid-template-columns: 1fr;
    }

    .flywheel-grid {
        gap: 16px;
    }

    .flywheel-arrow {
        transform: rotate(90deg);
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 60px;
        padding: 0 16px;
    }

    .logo {
        font-size: 16px;
    }

    .hero {
        padding: 40px 16px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-subheading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-pills {
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 40px 16px;
    }

    .section h2 {
        font-size: 22px;
    }

    .contact-form {
        padding: 0;
    }

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

    .sectors-list {
        grid-template-columns: 1fr;
    }

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

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

    .flywheel-arrow {
        transform: rotate(0deg);
    }

    .news-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* News Preview Section */
.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.news-preview-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.news-preview-tags {
    margin-bottom: 10px;
    display: flex;
    gap: 6px;
}

.news-tag-small {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.news-tag-small.tag-asia {
    background: #e3f2fd;
    color: #1565c0;
}

.news-tag-small.tag-deal {
    background: #e8f5e9;
    color: #2e7d32;
}

.news-preview-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-preview-card h4 a {
    color: #000;
    text-decoration: none;
}

.news-preview-card h4 a:hover {
    text-decoration: underline;
}

.news-preview-date {
    font-size: 12px;
    color: #999;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}
