:root {
    --c2-black: #191921;
    --c2-black-70: #5e5e64; /* 70% */
    --c2-yellow: #fff000;
    --c2-action-blue: #0085FF;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

.inline-text-link {
    color: var(--c2-action-blue);
    cursor: pointer;
    letter-spacing: -0.015em;
    transition: all 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
}

.inline-text-link:any-link {
    color: var(--c2-action-blue);
}

.inline-text-link:hover {
    filter: brightness(70%);
}

.content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    gap: 20px;
    justify-content: center;
    min-width: 400px;
}

.content-comingsoon {
    display: flex;
    flex-direction: column;
    height: 100vh;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25vh;
}

.content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 514px;
    margin: 40px;
}

@media (max-width: 600px) {
    .content-block {
        width: auto;
    }
}

.content-block-img {
    width: 250px;
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .content-block-img {
        width: 150px;
    }
}

.content-block-img img {
    width: 100%;
    height: auto;
}

.header-main {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 60px;
    background-color: #fcfcfcd2;
    border-bottom: 0.75px solid #f1f1f2;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-main-logo {
    display: flex;
    align-items: center;
    width: 95px;
    overflow: hidden;
}

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

.content-home {
    display: flex;
    flex-direction: column;
    height: 100vh;
    gap: 3.5vh;
    align-items: center;
    padding-top: 100px;
}

.splash-heading {
    display: flex;
    flex-direction: row;
    gap: 12px;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--c2-black);
    align-items: center;
    justify-content: center;
}

.heading2 {
    display: flex;
    font-size: 36px;
    line-height: 36px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--c2-black);
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .heading2 { 
        font-size: 24px;
        line-height: 25px;
    }
}

@media (max-width: 800px) {
    .splash-heading { 
        flex-direction: column;
        gap: 0px;
        font-size: 40px;
    }
}

@media (max-width: 300px) {
    .splash-heading { 
        font-size: 30px;
    }
}

.splash-heading1, .splash-heading2, .splash-heading3 {
    display: flex;
    width: fit-content;
}

.getapp-badges {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 80vw;
    max-width: 360px;
    align-items: center;
}

@media (max-width: 300px) {
    .getapp-badges {
        flex-direction: column;
    }
}

@media (min-width: 800px) {
    .getapp-badges-cta {
        display: none;
    }
}

.getapp {
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.15s ease;
}

.getapp:hover {
    scale: 1.02;
}

.getapp img {
    width: 100%;
    height: auto;
}

.hero-container {
    display: flex;
    flex-direction: row;
    gap: 1.25vw;
    justify-content: center;
    margin-top: 15px;
    max-width: 80vw;
}

@media (max-width: 800px) {
    .hero-container {
        flex-direction: column;
        gap: 1vh;
        max-width: 60vw;
    }
}

@media (max-width: 600px) {
    .hero-container {
        flex-direction: column;
        gap: 1vw;
        max-width: 80vw;
    }
}

.app-screenshot {
    border-radius: 1vw;
    overflow: hidden;
    height: 100%;
}

@media (max-width: 800px) {
    .app-screenshot {
        border-radius: 3vw;
    }
}

@media (max-width: 600px) {
    .app-screenshot {
        border-radius: 3vw;
    }
}

.app-screenshot img {
    height: auto;
    width: 100%;
}

.cta-m {
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
    gap: 20px;
    align-items: center;
}

@media (min-width: 800px) {
    .cta-m {
        display: none;
    }
}

.cta-heading {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--c2-black);
}


/* ----------------------------------------------------------------------------------
    VIPs
------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------
    Footer
------------------------------------------------------------------------------------- */

.footer {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 50px;
    min-width: 400px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--c2-black-70);
    font-size: 10px;
    font-weight: 300;
    text-align: center;
    margin-top: 30px;
    gap: 12px;
    background-color: #fff;
}

.footer-text {
    display: flex;
    width: fit-content;
}

.footer-text-link {
    display: flex;
    width: fit-content;
    color: inherit; 
    text-decoration: none;
}

.footer-text-link:hover {
    text-decoration: underline;
}


/* ----------------------------------------------------------------------------------
    Docs Content (privacy policy, terms etc)
------------------------------------------------------------------------------------- */

.docs-content-container {
    display: flex;
    flex-direction: column;
    flex-shrink: 1;
    align-items: center;
    padding: 30px 30px 60px 30px;
}

.docs-content {
    display: flex;
    flex-direction: column;
    min-width: 230px;
    max-width: 700px;
}

.docs-heading {
    letter-spacing: -0.01em;
    font-size: 18px;
    font-weight: 700;
    color: var(--c2-black);
    text-align: left;
}

.docs-bodytext {
    text-align: left;
    font-size: 12px;
    color: var(--c2-black-70);
    letter-spacing: -0.01em;
    font-weight: 400;
    line-height: 16px;
    margin-top: 15px;
}

.docs-subsection {
    text-align: left;
    font-size: 12px;
    color: var(--c2-black-70);
    letter-spacing: -0.01em;
    font-weight: 400;
    line-height: 16px;
    margin-top: 10px;
}

.docs-section-heading {
    letter-spacing: -0.01em;
    font-size: 14px;
    font-weight: 700;
    color: var(--c2-black);
    text-align: left;
    margin-top: 30px;
}

.docs-section-subheading {
    letter-spacing: -0.01em;
    font-size: 12px;
    font-weight: 700;
    color: var(--c2-black);
    text-align: left;
    margin: 15px 0px 7px 0px;
}

.docs-section-subsubheading {
    letter-spacing: -0.01em;
    font-size: 11px;
    font-weight: 600;
    color: var(--c2-black);
    text-align: left;
    margin: 15px 0px 5px 0px;
}

.docs-section-subtitle {
    letter-spacing: -0.01em;
    font-size: 12px;
    font-weight: 700;
    color: var(--c2-black);
    text-align: left;
    margin: 15px 0px 0px 0px;
}

ol li {
    margin-bottom: 10px;
}

ul.aligned-bullets, ul.aligned-bullets-faq {
    list-style-position: outside;
}

ul.aligned-bullets li {
    margin-bottom: 4px;
}

ul.aligned-bullets-faq li {
    margin-bottom: 4px;
    text-align: left;
    font-size: 16px;
    color: var(--c2-black-70);
    letter-spacing: -0.01em;
    font-weight: 400;
    line-height: 20px;
}

.faq-section-heading {
    letter-spacing: -0.01em;
    font-size: 16px;
    font-weight: 700;
    color: var(--c2-black);
    text-align: left;
    margin-top: 30px;
}

.faq-bodytext {
    text-align: left;
    font-size: 16px;
    color: var(--c2-black-70);
    letter-spacing: -0.01em;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
}


/* ----------------------------------------------------------------------------------
    Interstitials
------------------------------------------------------------------------------------- */

.content-interstitial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100vh;
    align-items: center;
    padding: 50px 30px;
}

.c2-icon-medium {
    display: flex;
}

.c2-icon-medium img {
    width: 18vw;
    max-width: 100px;
    min-width: 50px;
}

.avatar-interstitial {
    display: flex;
    cursor: pointer;
}

.avatar-interstitial img {
    width: 66vw;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.heading1 {
    display: flex;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--c2-black);
}

.button1 {
    width: fit-content;
    min-width: 100px;
    padding: 12px 22px 14px 22px;
    background-color: var(--c2-yellow);
    border-radius: 10px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--c2-black);
    text-align: center;
}

.subheading1 {
    display: flex;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: var(--c2-black);
}