@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Nunito:wght@800&display=swap');

:root {
    --primary-color: #c275f3;
    --background-color: #121212;
    --text-color: #e0e0e0;
    --surface-color: #1e1e1e;
    --border-color: #333;
}

body {
    font-family: 'Montserrat', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
}

.page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    box-sizing: border-box;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    background-color: var(--background-color);
}

.page:last-of-type {
    border-bottom: none;
}

h1, h2, h3, h4 {
    margin: 0 0 1rem 0;
    color: #ffffff;
    font-weight: 600;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.75rem; }
p { max-width: 800px; }

ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    text-align: left;
}

ul li {
    background-color: var(--surface-color);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

strong {
    color: var(--primary-color);
}

/* --- Slide Specific Styles --- */

/* Slide 1: Title */
.title-slide h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--primary-color);
}
.title-slide .logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 24px;
    background-color: white;
}
.title-slide .meta {
    margin-top: 2rem;
    color: #aaa;
    font-style: italic;
}

/* Slide 4: How it Works */
.how-it-works-slide .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    width: 100%;
    margin: 2rem 0;
}
.how-it-works-slide .feature-box {
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    border-left: 4px solid var(--primary-color);
}
.how-it-works-slide .feature-box h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}
.how-it-works-slide .feature-box p {
    margin: 0;
    color: #aaa;
}
.how-it-works-slide .feature-images {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}
.how-it-works-slide .feature-images figure {
    margin: 0;
    padding: 0;
    text-align: center;
}
.how-it-works-slide .feature-images figcaption {
    margin-top: 0.75rem;
    color: #aaa;
    font-style: italic;
    font-size: 0.9rem;
}
.how-it-works-slide .mobile-shot {
    max-height: 40vh;
    border: 4px solid var(--surface-color);
    border-radius: 20px;
}
.how-it-works-slide .desktop-shot {
    max-height: 35vh;
    border: 4px solid var(--surface-color);
    border-radius: 12px;
}

/* Slide 5: Meet Aichiki */
.aichiki-slide {
    padding-left: 6rem;
    padding-right: 6rem;
}
.aichiki-slide .aichiki-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
}
.aichiki-slide .aichiki-text {
    flex: 1;
    text-align: left;
    max-width: 550px;
}
.aichiki-slide .aichiki-text h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}
.aichiki-slide .aichiki-image {
    flex: 0 0 300px; /* Do not grow, do not shrink, base width 300px */
}
.aichiki-slide .aichiki-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 6px solid var(--primary-color);
    object-fit: cover;
}

/* Slide 6: Traction */
.traction-slide .traction-image {
    max-width: 80%;
    max-height: 40vh;
    margin-top: 2rem;
    border-radius: 12px;
    object-fit: contain;
}
.traction-slide .kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}
.traction-slide .kpi {
    background-color: var(--surface-color);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
}
.traction-slide .kpi .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.traction-slide .kpi .label {
    font-size: 1rem;
    color: #aaa;
}
.traction-slide .subtitle {
    max-width: 800px;
    margin-bottom: 2rem;
    font-style: italic;
    color: #aaa;
}
.traction-slide ul { margin-top: 2rem; }

/* Slide 7: Unique Selling Points */
.usp-slide ul li {
    padding: 1.25rem;
    margin-bottom: 1rem;
}

/* Slide 8: Monetization */
.monetization-slide .plans {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.monetization-slide .plan {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    border: 1px solid var(--border-color);
}
.monetization-slide .plan.premium {
    border-color: var(--primary-color);
}
.monetization-slide .plan h3 {
    color: var(--primary-color);
}
.monetization-slide .plan ul li {
    background: var(--background-color);
}

/* Slide 9: The Ask */
.ask-slide .ask-amount {
    margin-top: 2rem;
}
.ask-slide .ask-amount span {
    font-size: 2rem;
    color: #aaa;
}
.ask-slide .ask-amount .amount {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slide 10: Use of Funds */
.funds-slide .fund-allocation {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.funds-slide .fund-item {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
}
.funds-slide .fund-item h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Slide 11: The Team */
.team-slide .team-members {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}
.team-slide .member {
    flex: 1;
}
.team-slide .member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-bottom: 1rem;
}

/* Slide 12: Contact / Roadmap */
.contact-slide .roadmap {
    background: var(--surface-color);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    max-width: 800px;
    width: 100%;
}
.contact-slide .roadmap h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.contact-slide .roadmap ul {
    text-align: left;
    margin: 0;
}
.contact-slide .roadmap ul li {
    background: none;
    border: none;
    padding: 0.25rem 0;
    list-style-type: '✓  ';
    padding-left: 0.5rem;
}
.contact-slide .contact-info {
    margin-top: 2rem;
    font-size: 1.25rem;
}
.contact-slide .contact-info strong {
    font-weight: 600;
    color: #fff;
}

.contact-grid {
    display: inline-grid;
    grid-template-columns: max-content auto;
    gap: 0.5rem 1rem;
    text-align: left;
    margin-top: 1.5rem;
}

.contact-grid strong {
    text-align: right;
    color: var(--primary-color);
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* --- Print Layout --- */
@media print {
    @page {
        size: A4 landscape;
        margin: 0;
    }

    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .page {
        height: 100vh;
        page-break-after: always;
        page-break-inside: avoid;
        border-bottom: none;
        padding: 2rem; /* Reduce padding for print */
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    /* Make "How It Works" slide more compact for printing */
    .how-it-works-slide .features-grid {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    .how-it-works-slide .feature-box {
        padding: 1rem;
    }
    .how-it-works-slide .feature-box h3 {
        font-size: 1rem;
    }
    .how-it-works-slide .feature-box p {
        font-size: 0.8rem;
    }
    .how-it-works-slide .feature-images {
        margin-top: 1rem;
        gap: 1.5rem;
    }
    .how-it-works-slide .mobile-shot {
        max-height: 25vh;
    }
    .how-it-works-slide .desktop-shot {
        max-height: 22vh;
    }
}