:root {
    --primary: #40E0D0;
    --primary-opaque: #40E0D088;
    --primary-dark: #2CC1B1;
    --background: #0A0A0A;
    --surface: #1A1A1A;
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --spacing: 2.5rem;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow: hidden;
    font-size: 18px;
    position: relative;
}

/* Background decorations */
body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-image: url('assets/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    transform: translate(5%, -15%) rotate(180deg);
}

/* Bottom logo */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background-image: url('assets/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    transform: translate(-5%, 0%);
}

/* Center logo (for all pages) */
.presentation::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 133px;
    background-image: url('assets/forwards.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.presentation {
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.nav-controls {
    position: fixed;
    bottom: calc(var(--spacing) * 1.5);
    left: 50%;
    transform: translateX(-50%) scale(1.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 100;
    background: var(--surface);
    padding: 0.5rem;
    border-radius: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    vertical-align: middle;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

button:hover {
    background: rgba(64, 224, 208, 0.1);
}

button:active {
    transform: scale(0.9);
}

#slideCounter {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    padding-bottom: 128px;
    overflow-y: auto;
}

.slide-container {
    padding: var(--spacing);
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

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

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

/* Cover Slide */
#cover {
    text-align: center;
}

#cover .forwards-logo {
    width: 600px;
    height: 100px;
    background-image: url('assets/forwards.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: var(--spacing);
}

h1 {
    display: none; /* Hide the text h1 since we're using the SVG */
}

h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-bottom: 0;
    text-align: center;
    color: var(--primary);
}

/* Common heading styles */
h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

h6 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: calc(var(--spacing) * 1.2);
    opacity: 0.75;
    text-align: center;
}

.subtitle {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing);
}

.cover-details {
    margin-top: var(--spacing);
    color: var(--text-secondary);
}

.cover-details a {
    color: var(--primary);
    text-decoration: none;
}

.cover-details .copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Common grid layout for all sections */
.solutions-grid,
.use-cases-grid,
.problems-grid,
.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Common row styling */
.solutions-row,
.use-case-row,
.problems-row,
.tech-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Common item styling */
.problem-item,
.solution-item,
.stat-item,
.use-case-item,
.tech-item,
.thesis-item {
    /* Box model */
    flex: 1;
    max-width: 450px;
    padding: calc(var(--spacing) * 0.4);
    margin-bottom: 0.75rem;

    /* Visual styling */
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 1rem;
    outline: 2px solid transparent;

    /* Animation */
    transition: all 0.3s ease-in-out;
}

/* Common hover effects */
.problem-item:hover,
.solution-item:hover,
.stat-item:hover,
.use-case-item:hover,
.tech-item:hover,
.thesis-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    outline: 2px solid var(--primary-opaque);
    box-shadow: 2px 2px 64px var(--primary-opaque) !important;
    cursor: pointer;
}

/* Common heading styles */

.problem-item img,
.solution-item img,
.stat-item img,
.use-case-item img,
.tech-item img,
.thesis-item img {
    display: block;
    width: 92px;
    height: 92px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    margin-inline: auto;
}

.problem-item h3,
.solution-item h3,
.stat-item h3,
.use-case-item h3,
.tech-item h3,
.thesis-item h3 {
    color: #40E0D0;
    font-size: 1.44rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: center;
}

/* Common paragraph styles */
.problem-item p,
.solution-item p,
.stat-item p,
.use-case-item p,
.tech-item p,
.thesis-item p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    text-align: center;
}

/* Common last row styling */
.last-row {
    justify-content: center;
}

.center-item {
    flex: 0 1 450px;
}

/* Common responsive design */
@media (max-width: 768px) {
    .solutions-row,
    .use-case-row,
    .problems-row,
    .tech-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .problem-item,
    .solution-item,
    .stat-item,
    .use-case-item,
    .tech-item,
    .thesis-item {
        width: 100%;
        max-width: 400px;
    }
}

/* Vision & Mission Slide */
.vision-container {
    display: flex;
    gap: var(--spacing);
    max-width: 1200px;
    width: 100%;
}

.vision-box {
    flex: 1;
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    text-align: center;
}

.vision-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Solution Overview Slide */
.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.solutions-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.solution-item {
    flex: 1;
    max-width: 450px;
    min-width: 350px;
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 1rem;
    padding: calc(var(--spacing) * 0.8);
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-item h3 {
    color: #40E0D0;
    font-size: 1.44rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.solution-item p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Center item in last row */
.solutions-row.last-row .solution-item.center-item {
    flex: 0 1 450px;
}

/* Market Stats */
.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing);
    max-width: 1200px;
    width: 100%;
}

.stat-item {
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Product Components */
.product-components {
    max-width: 1200px;
    width: 100%;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing);
    margin-top: var(--spacing);
}

.component-item {
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.component-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.component-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Benefits */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing);
    max-width: 1200px;
    width: 100%;
}

.benefit-column {
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.benefit-column h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: var(--spacing);
}

.benefit-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url('assets/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.ecosystems-container {
    display: grid;
    grid-template-columns: 512px 1fr;
    gap: var(--spacing);
    max-width: 1440px;
    width: 100%;
    margin-top: 6rem;
}

.ecosystem-column {
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.ecosystem-column h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ecosystem-list {
    list-style: none;
    margin-top: var(--spacing);
}

.ecosystem-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.ecosystem-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url('assets/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.ecosystem-stars-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-stars-column .star {
    width: 6rem;
    height: 6rem;
    padding: 0.5rem;
    object-fit: contain;
    object-position: center;
    border-radius: 99999px;
    border: 2px solid var(--primary);
}

.ecosystem-stars-column .planets-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ecosystem-stars-column .planets-container .planet {

    width: 5rem;
    height: 5rem;
    padding: 0.5rem;
    object-fit: contain;
    object-position: center;
    background: var(--surface);
    border-radius: 99999px;
    border: 2px solid var(--primary-opaque);

    position: absolute;
    top: 0;
    left: 0;

}

.planet-1 {
    transform: 
        translateX(calc(-50% + 180px * sin(1 * 360deg / 7)))
        translateY(calc(-50% + 180px * cos(1 * 360deg / 7)))
    ;
}

.planet-2 {
    transform: 
        translateX(calc(-50% + 180px * sin(2 * 360deg / 7)))
        translateY(calc(-50% + 180px * cos(2 * 360deg / 7)))
    ;
}

.planet-3 {
    transform: 
        translateX(calc(-50% + 180px * sin(3 * 360deg / 7)))
        translateY(calc(-50% + 180px * cos(3 * 360deg / 7)))
    ;
}

.planet-4 {
    transform: 
        translateX(calc(-50% + 180px * sin(4 * 360deg / 7)))
        translateY(calc(-50% + 180px * cos(4 * 360deg / 7)))
    ;
}

.planet-5 {
    transform: 
        translateX(calc(-50% + 180px * sin(5 * 360deg / 7)))
        translateY(calc(-50% + 180px * cos(5 * 360deg / 7)))
    ;
}

.planet-6 {
    transform: 
        translateX(calc(-50% + 180px * sin(6 * 360deg / 7)))
        translateY(calc(-50% + 180px * cos(6 * 360deg / 7)))
    ;
}

.planet-7 {
    transform: 
        translateX(calc(-50% + 180px * sin(7 * 360deg / 7)))
        translateY(calc(-50% + 180px * cos(7 * 360deg / 7)))
    ;
}

/* Use Cases */
.use-cases-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.use-case-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.use-case-item {
    flex: 1;
    max-width: 450px;
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 1rem;
    padding: calc(var(--spacing) * 0.8);
    transition: all 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.use-case-item h3 {
    color: #40E0D0;
    font-size: 1.44rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.use-case-item p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* For the last row with single item */
.last-row {
    justify-content: center;
}

.center-item {
    flex: 0 1 450px;
}

/* Technology */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing);
    max-width: 1200px;
    width: 100%;
}

.tech-item {
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
}

.tech-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
}

/* Comparison Table */
.comparison-table {
    max-width: 1200px;
    width: 100%;
    overflow-x: auto;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    padding: var(--spacing);
    margin-top: var(--spacing);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

th {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(64, 224, 208, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

td.highlight {
    color: var(--primary);
    font-weight: bold;
}

td.different {
    color: #FF6B6B;
    font-weight: 500;
}

td.warning {
    color: #FFD700;
    font-weight: 500;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(64, 224, 208, 0.05);
}

/* Responsive table */
@media (max-width: 1024px) {
    .comparison-table {
        padding: calc(var(--spacing) * 0.8);
    }

    th, td {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        padding: calc(var(--spacing) * 0.6);
    }

    th, td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    th {
        font-size: 1rem;
    }
}

/* Call to Action */
.cta-content {
    text-align: center;
    max-width: 800px;
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: var(--spacing);
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--background);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-grid,
    .market-stats,
    .component-grid,
    .benefits-container,
    .use-cases-grid,
    .tech-stack {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing: 1rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .problem-item h3,
    .vision-box h3,
    .solution-item h3,
    .use-case-item h3,
    .tech-item h3,
    .benefit-column h3,
    .component-item h4,
    .partnerships h3 {
        font-size: 1.3rem;
    }

    .benefit-list li {
        padding-left: 1.5rem;
    }

    .benefit-list li::before {
        width: 1rem;
        height: 1rem;
        top: 0.1rem;
    }
}

/* Go-to-Market Strategy */
.timeline {
    max-width: 1200px;
    width: 100%;
    position: relative;
    padding: 40px 0;
}

/* Timeline line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        rgba(64, 224, 208, 0.1),
        rgba(64, 224, 208, 0.5),
        rgba(64, 224, 208, 0.1)
    );
    transform: translateX(-50%);
}

.timeline-item {
    width: calc(50% - 30px);
    margin-bottom: 40px;
    position: relative;
    background: var(--surface);
    padding: calc(var(--spacing) * 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
}

/* Timeline dots */
.timeline-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

/* Timeline connector lines */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--primary);
    top: 50%;
    transform: translateY(-50%);
}

/* Left items */
.timeline-item:nth-child(odd) {
    float: left;
    margin-right: 40px;
}

.timeline-item:nth-child(odd)::before {
    right: -32px;
}

.timeline-item:nth-child(odd)::after {
    right: -20px;
}

/* Right items */
.timeline-item:nth-child(even) {
    float: right;
    margin-left: 40px;
}

.timeline-item:nth-child(even)::before {
    left: -32px;
}

.timeline-item:nth-child(even)::after {
    left: -20px;
}

.timeline-item:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.1);
}

.phase {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* Clear the float */
.timeline::after {
    content: '';
    display: table;
    clear: both;
}

.partnerships {
    clear: both;
    margin-top: 1rem;
    padding: var(--spacing);
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partnerships h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Responsive timeline */
@media (max-width: 768px) {
    .timeline {
        padding: 20px 0;
    }
    
    .timeline-item {
        width: calc(100% - 40px);
        float: right;
        margin-left: 40px;
        margin-bottom: 30px;
        padding: calc(var(--spacing) * 0.6);
    }
    
    .timeline-item:last-child {
        margin-bottom: 10px;
    }

    .partnerships {
        margin-top: 0.5rem;
        padding: calc(var(--spacing) * 0.8);
    }
}

/* Roadmap */
.roadmap-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

.completed-items {
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    margin-bottom: var(--spacing);
}

.completed-items h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.completed-items .checkmark {
    color: var(--primary);
    margin-right: 0.5rem;
}

.horizontal-roadmap {
    position: relative;
    padding: 40px 0;
}

/* Roadmap line */
.horizontal-roadmap::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background: linear-gradient(to right, 
        rgba(64, 224, 208, 0.1),
        rgba(64, 224, 208, 0.5),
        rgba(64, 224, 208, 0.1)
    );
    transform: translateY(-50%);
}

.roadmap-items {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.roadmap-item {
    flex: 1;
    margin: 0 15px;
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

/* Roadmap dots */
.roadmap-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

/* Alternate items above and below the line */
.roadmap-item:nth-child(odd) {
    margin-bottom: 60px;
}

.roadmap-item:nth-child(odd)::before {
    bottom: -40px;
}

.roadmap-item:nth-child(even) {
    margin-top: 60px;
}

.roadmap-item:nth-child(even)::before {
    top: -40px;
}

/* Connector lines */
.roadmap-item::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    background: var(--primary);
    left: 50%;
    transform: translateX(-50%);
}

.roadmap-item:nth-child(odd)::after {
    bottom: -30px;
}

.roadmap-item:nth-child(even)::after {
    top: -30px;
}

.roadmap-item:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.1);
}

.milestone-date {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .roadmap-items {
        flex-direction: column;
    }

    .roadmap-item {
        margin: 20px 0;
    }

    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even) {
        margin: 40px 0;
    }

    .horizontal-roadmap::before {
        left: 20px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
        transform: none;
    }

    .roadmap-item::before {
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .roadmap-item::after {
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 2px;
    }
}

/* Team */
.team-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing) * 2);
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-leaders {
    display: flex;
    gap: calc(var(--spacing) * 2);
    max-width: 1000px;
    width: 100%;
    margin-bottom: calc(var(--spacing) * 2);
    margin-left: auto;
    margin-right: auto;
}

.team-leader {
    flex: 1;
    background: var(--surface);
    padding: calc(var(--spacing) * 1.2);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-leader:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-leader h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: calc(var(--spacing) * 0.5);
    font-size: 1.8rem;
}

.leader-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.detail-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.detail-section h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.detail-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.team-additional {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.engineering-team {
    background: var(--surface);
    padding: calc(var(--spacing) * 1.2);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.engineering-team:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.1);
}

.engineering-team .team-image {
    width: 180px;
    height: 180px;
    margin: 0 auto calc(var(--spacing) * 0.8);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    position: relative;
}

.engineering-team .team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(64, 224, 208, 0.1);
    pointer-events: none;
}

.engineering-team .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.engineering-team h3 {
    color: var(--primary);
    margin-bottom: calc(var(--spacing) * 0.5);
    font-size: 1.8rem;
}

.engineering-team p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .engineering-team .team-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .engineering-team .team-image {
        width: 100px;
        height: 100px;
    }

    .engineering-team h3 {
        font-size: 1.5rem;
    }

    .engineering-team p {
        font-size: 1rem;
    }
}

/* Fundraising */
.fundraising-content {
    max-width: 1200px;
    width: 100%;
}

.fundraising-section {
    background: var(--surface);
    padding: calc(var(--spacing) * 1.5);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.raising {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 1.5);
}

.raising h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
}

.allocation-container {
    display: flex;
    gap: calc(var(--spacing) * 2);
    align-items: center;
    justify-content: center;
}

.pie-chart {
    width: 300px;
    height: 300px;
    position: relative;
}

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

.pie-segment {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    transform-origin: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pie-segment:hover {
    stroke-width: 14;
    filter: brightness(1.2);
}

.pie-segment:nth-child(1) {
    stroke: #40E0D0;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
}

.pie-segment:nth-child(2) {
    stroke: #2CC1B1;
    stroke-dasharray: 177;
    stroke-dashoffset: -283;
}

.pie-segment:nth-child(3) {
    stroke: #1AA292;
    stroke-dasharray: 142;
    stroke-dashoffset: -460;
}

.pie-segment:nth-child(4) {
    stroke: #0A8373;
    stroke-dasharray: 106;
    stroke-dashoffset: -602;
}

.pie-hover-info {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    text-align: left;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(10, 10, 10, 0.9);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--primary);
    min-width: 180px;
    z-index: 2;
}

.pie-hover-info.active {
    opacity: 1;
}

.hover-percentage {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.hover-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 200px;
}

.allocation-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(64, 224, 208, 0.05);
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--primary);
}

.legend-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legend-text .percentage {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: bold;
    min-width: 3rem;
}

.legend-text .label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .fundraising-section {
        padding: calc(var(--spacing) * 1.2);
    }

    .raising h3 {
        font-size: 2rem;
    }

    .allocation-container {
        gap: var(--spacing);
    }

    .pie-chart {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .fundraising-section {
        padding: var(--spacing);
    }

    .raising h3 {
        font-size: 1.8rem;
    }

    .allocation-container {
        flex-direction: column;
        gap: var(--spacing);
    }

    .pie-chart {
        width: 200px;
        height: 200px;
    }

    .legend-text .percentage {
        font-size: 1rem;
        min-width: 2.5rem;
    }

    .legend-text .label {
        font-size: 1rem;
    }
}

/* Investment Thesis */
.thesis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing);
    max-width: 1200px;
    width: 100%;
}

.thesis-item {
    background: var(--surface);
    padding: var(--spacing);
    border-radius: 1rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
}

.thesis-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Update Responsive Design */
@media (max-width: 1024px) {
    .roadmap-container,
    .team-leaders,
    .allocation-container,
    .thesis-grid {
        grid-template-columns: 1fr;
    }

    .team-leaders {
        gap: 1rem;
    }

    .member-photo {
        width: 100px;
        height: 100px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .pie-chart {
        width: 250px;
        height: 250px;
    }

    .legend-text .percentage {
        font-size: 1.5rem;
        min-width: 2.5rem;
    }

    .legend-text .label {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        margin-bottom: 0.5rem;
    }

    .allocation-container {
        flex-direction: column;
        gap: var(--spacing);
    }

    .pie-chart {
        width: 200px;
        height: 200px;
    }

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

    .amount {
        font-size: 2.5rem;
    }

    .legend-text .percentage {
        font-size: 1rem;
        min-width: 2.5rem;
    }

    .legend-text .label {
        font-size: 1rem;
    }
}

/* Social links - fixed to bottom right */
.social-links {
    position: fixed;
    bottom: 20px;    /* Changed from top to bottom */
    right: 20px;
    display: flex;
    gap: 1rem;
    z-index: 1000;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(1.1);
}

.social-link.logo-only img {
    width: 24px;
    height: 24px;
}

.social-link.contact-link img {
    width: 24px;
    height: 24px;
    filter: brightness(1.1) saturate(1000%) hue-rotate(120deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .watermark {
        font-size: 0.75rem;
        bottom: 8px !important;
        left: 16px;
        right: 16px;
        text-align: center;
    }

    .social-links {
        bottom: 32px;
        left: 16px;
        right: 16px;
        justify-content: center;
    }

    .social-link span {
        display: none;
    }

    .social-link img {
        margin-right: 0;
    }

    .social-link.contact-link img {
        width: 20px;
        height: 20px;
    }

}

/* List styles */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url('assets/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    ul li {
        padding-left: 1.5rem;
    }

    ul li::before {
        width: 1rem;
        height: 1rem;
        top: 0.1rem;
    }
}

.pie-chart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-image: url('assets/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
}

/* Responsive adjustments for hover info */
@media (max-width: 1024px) {
    .pie-hover-info {
        right: -150px;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .pie-hover-info {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: 200px;
        text-align: center;
    }

    .hover-percentage {
        font-size: 2rem;
    }

    .hover-label {
        font-size: 1.1rem;
    }
}

.team-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.team-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
}

.team-box:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    outline: 2px solid var(--primary-opaque);
    box-shadow: 2px 2px 64px var(--primary-opaque) !important;
    cursor: pointer;
    z-index: 1;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-name {
    margin-bottom: 0.5rem;
}

.member-name h3 {
    font-size: 1.5rem;
    margin: 0;
}

.member-title {
    margin-bottom: 1rem;
    min-height: 24px; /* Maintains space even when empty for Core Team */
}

.member-title h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-secondary);
}

.member-description {
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.member-description p {
    margin: 0;
    line-height: 1.5;
}

.member-social {
    width: 100%;
    display: flex;
    justify-content: center;
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}

.linkedin-link img {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
}

/* Watermark - fixed to bottom left */
.watermark {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--text-secondary);
    z-index: 1000;
}

@media (max-width: 768px) {
    .watermark {
        font-size: 0.8rem;
        bottom: 15px;
        left: 15px;
    }
}

.milestone-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    filter: brightness(1.1);
}

.completed-items p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .milestone-logo {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
}

.linkedin-link {
    margin-top: auto;  /* This pushes the link to the bottom */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.linkedin-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.linkedin-link img {
    width: 20px;
    height: 20px;
    filter: brightness(1.1) saturate(1000%) hue-rotate(120deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .linkedin-link {
        font-size: 0.9rem;
    }
    
    .linkedin-link img {
        width: 16px;
        height: 16px;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: var(--background);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 32px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 100%;
    width: auto;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .nav-logo {
        height: 24px;
    }
}

/* Hover effects for all items */
.use-case-item:hover,
.problem-item:hover,
.vision-box:hover,
.solution-item:hover,
.stat-item:hover,
.component-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Definition styling */
.team-definition {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

/* Members container styling */
.members-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Team box styling */
.team-box {
    flex: 1;
    max-width: 350px;
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.team-box:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .members-container {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .team-box {
        width: 100%;
        max-width: 400px;
    }
}

/* Responsive adjustments for use cases */
@media (max-width: 768px) {
    .use-case-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .use-case-item {
        width: 100%;
        max-width: 400px;
    }
}

.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.tech-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.tech-item {
    flex: 1;
    max-width: 450px;
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 1rem;
    padding: calc(var(--spacing) * 0.8);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-item h3 {
    color: #40E0D0;
    font-size: 1.44rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Last row styling */
.last-row {
    justify-content: center;
}

.center-item {
    flex: 0 1 450px;
}

/* Responsive design */
@media (max-width: 768px) {
    .tech-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .tech-item {
        width: 100%;
        max-width: 400px;
    }
}

/* New dedicated style for team intro */
.team-intro {
    max-width: 800px;
    margin: 2rem auto;
    padding: calc(var(--spacing) * 0.8);
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-intro p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.team-intro:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} 


/* new styles */

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    margin-top: 1rem;
}

.cards-grid.cols-2 {
    grid-template-columns: 1fr 1fr !important;
}

.card-item {
    padding: calc(var(--spacing) * 0.5);
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 1rem;
    outline: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.card-item:has(img) {
    margin-bottom: 3.5rem;
}

.card-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.2);
    outline: 2px solid var(--primary-opaque);
    box-shadow: 2px 2px 64px var(--primary-opaque) !important;
    cursor: pointer;
    z-index: 1;
}

.card-item img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    object-fit: contain;
    outline: 2px solid var(--primary-opaque);
    border-radius: 16px;
}

.card-item h3 {
    color: #40E0D0;
    font-size: 1.44rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.card-item > img + h3 {
    margin-top: 2.5rem;
}

.card-item p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    text-align: center;
}

.equal-cards-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    padding: 1rem;
}

.equal-cards-row .card-item {
    width: 384px;
}

.mobile-warning {
    display: none;
}

.arrows-line {
    display: flex;
    width: 100%;
    margin-top: 8rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: calc(var(--spacing) * 0.5);
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 1rem;
}

.arrow-card-inner {
    position: relative;
}

.arrow-card-inner h5 {
    color: #40E0D0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.arrow-card-inner h5 iconify-icon {
    font-size: 1.8rem;
}

.arrow-card-outer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 32px)) !important;
    width: 300px;
    padding: calc(var(--spacing) * 0.45);
}

.arrow-card-outer:hover {
    transform: translate(-50%, calc(-100% - 32px - 12px)) !important;
}

.arrow-card-inner:nth-of-type(even) .arrow-card-outer {
    top: 100%;
    transform: translate(-50%, calc(32px)) !important;
}

.arrow-card-inner:nth-of-type(even) .arrow-card-outer:hover {
    transform: translate(-50%, calc(32px + 12px)) !important;
}

.arrow-card-outer h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.arrow-card-outer p {
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {

    .cards-grid, .cards-grid.cols-2  {
        margin-top: 1.5rem !important;
        grid-template-columns: 1fr !important;
    }

    .slide {
        padding-bottom: 160px !important;
    }

    .nav-controls {
        display: none;
    }

    #slideCounter {
        font-size: 0.85rem;
    }

    .equal-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .equal-cards-row .card-item {
        width: auto
    }

    #cover .forwards-logo {
        width: 256px;
    }

    body::after {
        width: 256px;
    }

    body::before {
        height: 300px;
        width: 256px;
    }

    .presentation::before {
        width: 16rem;
    }

    .mobile-warning {
        display: block;
        position: fixed;
        bottom: 68px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0.9rem;
        padding-inline: 1rem;
    }

}

.labelBkg.labelBkg.labelBkg.labelBkg.labelBkg.labelBkg.labelBkg {
    background-color: var(--surface) !important;
    color: #FAFAFA !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.edgeLabel.edgeLabel.edgeLabel.edgeLabel.edgeLabel.edgeLabel.edgeLabel {
    background-color: var(--surface) !important;
    color: #FAFAFA !important;
}

.node.node.node.node.node.node .label-container.label-container.label-container.label-container.label-container.label-container.label-container {
    fill: #1A1A1A !important;
    stroke: #40E0D088 !important;
    color: #FAFAFA !important;
    stroke-width: 2px !important;
}

.node.node.node.node.node.node .nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel p span {
    color: #FAFAFA !important;
}

.node.node.node.node.node.node .nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel p {
    color: #FAFAFA !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.node.node.node.node.node.node .nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel.nodeLabel p img {
    width: 64px !important;
    border-radius: 12px;
    margin-top: 12px;
}

.edgeLabel.edgeLabel.edgeLabel.edgeLabel.edgeLabel.edgeLabel.edgeLabel p {
    background-color: var(--surface) !important;
    color: #FAFAFA !important;
    padding: 8px !important;
}

.edgePaths path {
    filter: invert(1) !important;
}

.mvp-notice {
    position: relative;
    margin-top: 5rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 0.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    bottom: -3cm;
}

.mvp-notice p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.mvp-notice .notice-detail {
    color: var(--text-secondary);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.mvp-link {
    color: #40E0D0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mvp-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mvp-notice {
        margin: 2rem 1rem;
        padding: 0.8rem;
    }
    
    .mvp-notice p {
        font-size: 1rem;
    }
}

/* If you need more space in the slide to accommodate the lower position */
#how-it-works {
    min-height: calc(100vh + 5cm);
    padding-bottom: 6cm;
    position: relative;
}