*{
    font-family: "Montserrat", sans-serif;
}
html {
    scroll-behavior: smooth ; 
  }
body{
    /* Landing page */
    position: relative;
    width: 100%;
   /* height: 7663.04px; */
    background: #070410;
    color: #FFFFFF;
}

header{
    /* Header */

    box-sizing: border-box;

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 100px;
    gap: 308px;

    position: relative;
    /*width: 1440px; */
    width: auto;
    height: 88px;
    left: 0px;
    top: 0px;

    background: #070410;
    backdrop-filter: blur(25px);
    /* Note: backdrop-filter has minimal browser support */
    
    border-bottom-width: 1px;
    border-bottom-style: solid;
    -moz-border-image: -moz-linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    -webkit-border-image: -webkit-linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    border-image: linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    -webkit-border-image-slice: 2;
    border-image-slice: 2;
}
.nav{
    /* Header */

    box-sizing: border-box;

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 100px;
    gap: 308px;

    position: relative;
    width: 100%;
    height: 88px;
    left: 0px;
    top: 0px;

    background: #070410;
    backdrop-filter: blur(25px);
    /* Note: backdrop-filter has minimal browser support */
}
.navpanel{
    /* Frame 2 */
    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 32px;

    width: auto;
    height: 19px;


    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;

}
.nav-link{
    /* About */
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    width: auto;
    height: 19px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;

    /* Troika/White */
    color: #FFFFFF;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;

}

.nav-link:hover{
    color: #D0C4EE;
}

.btn.contactus, .btn.explorenow{
        /* Frame 7 */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    gap: 10px;

    width: auto;
    height: 40px;

    /* Troika/Primary Gradient */
    background: linear-gradient(263.54deg, #6943CA 14.51%, #8668D4 90.89%);
    border-radius: 70px;

    /* Inside auto layout */
    flex: none;
    order: 2;
    flex-grow: 0;

    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.btn.contactus:hover, .btn.explorenow:hover{
    background: linear-gradient(90deg, #6943CA 14.51%, #8668D4 90.89%);
}

section{
    padding: 100px;
    width: auto;
    display: flex;
    margin-bottom: 5px;

    min-height: 90vh;
    display: flex;

    border-bottom-width: 1px;
    border-bottom-style: solid;
    -moz-border-image: -moz-linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    -webkit-border-image: -webkit-linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    border-image: linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    -webkit-border-image-slice: 2;
    border-image-slice: 2;
}

.mb-100{
    margin-bottom: 100px;
}
.mb-40{
    margin-bottom: 40px;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 78px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.section-1{
    top: 88px;
    padding: 26px 100px 26px 100px;
    gap: 24px;
    border: 0px 0px 1px 0px;
    opacity: 0px;
    display: flex;
    background: url(../images/heroBackgroundLeft.svg) left top no-repeat, url(../images/heroBackgroundRight.svg) right bottom no-repeat;
}

.homeHero{
    width: 744px;
    margin: auto;
    display: block;
    text-align: center;
    justify-items: center;
}

@keyframes anim-lineUp {
    0% {
      opacity: 0;
      transform: translateY(80%);
    }
    20% {
      opacity: 0;

      transform: translateY(30%);
    }
    50% {
      opacity: 1;
      transform: translateY(0%);
    }
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }

.homeHero>*{
    margin-top: 10px;
    margin-bottom: 10px;
    animation: 3s anim-lineUp ease-out none;
}

.homeHeroTitle{
    font-family:  "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 78px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.heroTextGradient{
    font-family:  "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 78px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    background: -webkit-linear-gradient(77.57deg, #D0C4EE 6.4%, #9176D8 43.18%, #D0C4EE 84.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.homeHeroText{
    font-family:  "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    color: rgba(217, 216, 223, 1);
}

.section-title{
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 52.8px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 32px;
}


.sectionText{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

ul {
    list-style-image: url('../images/bullet.svg');
}

.sectionText > ul > li {
    margin-bottom: 16px;
}

.section4-head{
    grid-auto-flow: row;
    justify-content: center;
    margin-bottom: 32px;
}
.footerCenterLogo{
    grid-auto-flow: row;
    justify-content: center;
    margin-bottom: 32px;
}
footer{
    padding-top: 100px;
    min-height: 384px;
}
.footerOneLiner, .footerNav{
    grid-auto-flow: row;
    justify-content: center;
    margin-bottom: 32px;

    font-family: Aeonik;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.copyrightDiv{
    padding: 50px;
    grid-auto-flow: row;
    justify-content: center;
    margin-bottom: 5px;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.footerAddress{
    padding: 30px;

    grid-auto-flow: row;
    justify-content: center;
    margin-bottom: 5px;

    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.nav-link.footer{
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(255, 255, 255, 1);
}

.nav-link.footer:hover{
    color: #D0C4EE;
}

.footerGradient{
    border-bottom-width: 1px;
    border-bottom-style: solid;
    -moz-border-image: -moz-linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    -webkit-border-image: -webkit-linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    border-image: linear-gradient(263.54deg, rgba(105, 67, 202, 0) 14.51%, rgba(105, 67, 202, 0.7) 51.93%, rgba(105, 67, 202, 0) 90.89%);
    -webkit-border-image-slice: 2;
    border-image-slice: 2;
}

.locationMarker{
    color: #9176D8;
    margin-right: 2px;
    padding: 2px;
}


/* company cards */

.custom-card {
      background-color: #141129;
      border: 1px solid #2b2365;
      border-radius: 12px;
      padding: 1.5rem;
      position: relative;
      /*max-width: 500px;*/
      box-shadow: 0 0 15px rgba(90, 80, 200, 0.1);
      background: linear-gradient(140.23deg, #160E29 2.15%, #0E091B 98.58%);
}

.status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 999px;
    font-weight: 600;
}

.status-badge.live {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #00c853;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 999px;
    font-weight: 600;
}
.status-badge.upcoming {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 191, 0, 0.2);
    color: #FFBF00;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 999px;
    font-weight: 600;
}

.card-logo {
    max-width: 160px;
    margin-bottom: 1rem;
    background-color: white;
    max-height: 64px;
    height: 64px;
    width: 160px;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 6px 10px 6px 6px;
    gap: 10px;
    margin: 0 auto;
}

.card-description {
    font-size: 1rem;
    color: #d1d1e0;
    margin-bottom: 0;
    margin-top: 10px
}

.companiesCardsRow{
    justify-content: center;
}

.companiesCardsRow>.card-gradient-border-wrapper{
    margin: 20px;
}

.card-gradient-border-wrapper{
    background: linear-gradient(90deg, #6A44CA, #070410, #aa86ff);
    border-radius: 14px;
    padding: 2px; /* controls thickness of border */
    /*display: inline-block;*/
    max-width: 500px;
}


/** SCRUBBER **/
.scrubber-container {
    padding: 30px;
    border-radius: 10px;
    max-width: 100%;
    margin: auto;
    width: 80%;
}

.company-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.company-name {
    width: 25%; /* Changed to 25% as per your request */
    flex-shrink: 0;
    font-weight: 500;
}

.scrubber-bar-wrapper {
    flex-grow: 1;
    display: flex;
    height: 15px; /* Height of the colored bars */
    border-radius: 7.5px; /* Half of height for rounded ends on the wrapper */
    overflow: hidden; /* Important for rounded ends on inner bars when they meet the wrapper edge */
    /* Remove background-color here, as individual slots will handle it */
}

.scrubber-bar {
    display: flex;
    width: 100%; /* Occupy full width of its parent */
    height: 100%;
}

.segment-slot {
    flex-basis: 25%; /* Each slot takes 25% of the bar's width */
    height: 100%;
    display: flex; /* Make it a flex container to hold filled/empty parts */
    align-items: center;
    justify-content: flex-start; /* Align content to the start */
    background-color: rgba(255, 255, 255, 0.1); /* Default background for empty slots */
    margin-right: 5px; /* Gap between slots as per your update */
    box-sizing: border-box; /* Include padding/border in element's total width/height */
    border-radius: 40px; /* Apply border-radius to the entire slot */
    overflow: hidden; /* Important for partial fills inside */
}

.segment-slot:last-child {
    margin-right: 0; /* No margin on the last slot */
}

.segment-fill {
    height: 100%;
    /* No flex-basis here, will be set inline based on completion */
    /* No margin-right here, as it's inside a slot */
    border-radius: 40px; /* Inherit rounded corners from slot if it fills entirely, or for visual consistency */
}

/* Specific segment colors (for the fill portion) */
.segment-fill.seed {
    background-color: #55B4D9; /* Light blue/teal */
}

.segment-fill.profitable {
    background-color: #8BC34A; /* Green */
}

.segment-fill.pre-series-a {
    background-color: #8C6CEE; /* Lighter purple */
}

.segment-fill.series-b {
    background-color: #EF7385; /* Pinkish red */
}

.segment-fill.exit {
    background-color: #FFEB3B; /* Yellow */
}

/* Legend styling */
.legend-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0 15px 10px 15px;
}

.legend-color-box {
    width: 15px;
    height: 15px;
    border-radius: 50%; /* Make it a circle */
    margin-right: 8px;
    flex-shrink: 0;
}

/* --- ADD THESE NEW RULES FOR LEGEND COLORS --- */
.legend-color-box.seed {
    background-color: #55B4D9;
}

.legend-color-box.profitable {
    background-color: #8BC34A;
}

.legend-color-box.pre-series-a {
    background-color: #8C6CEE;
}

.legend-color-box.series-b {
    background-color: #EF7385;
}

.legend-color-box.exit {
    background-color: #FFEB3B;
}
/* --- END NEW LEGEND COLOR RULES --- */

.legend-text {
    font-size: 0.9em;
    white-space: nowrap; /* Prevent text wrapping */
}

div.hide{
    display: none;
}