:root {
    --blue: #0066FF;
    --tan: #FAF8F3;
    --green: #12C52F;
    --purple: #6701A6;
}


#topBit .closer {
    background-color: unset;
    border: unset;
    cursor: pointer;
}

main {
    background-color: var(--tan);
}

*{
    font-family: "Barlow", sans-serif;
}
.flex.center{
    justify-content: center;
}


/* 

HOOK SECTION
 */
#hook {
    background: #0066FF;
    background: linear-gradient(90deg, rgba(0, 102, 255, 1) 0%, rgba(0, 0, 0, 1) 100%);
    color: #FFF;
    border-radius: 0 0 100px 100px;
    padding-top: 150px;
}



/* CALCULATOR CARD */
#vmmcalc {
    isolation: isolate;
}

#vmmcalc,
#vmmcalc * {
    box-sizing: border-box;
}

/* Local design tokens (scoped) */
#vmmcalc {
    --vmm-bg: #ffffff;
    --vmm-text: #0f172a;
    /* slate-900 */
    --vmm-muted: #475569;
    /* slate-600 */
    --vmm-border: #e5e7eb;
    /* gray-200 */
    --vmm-accent: #6d28d9;
    /* violet-700 */
    --vmm-accent-600: #7c3aed;
    /* violet-600 */
    --vmm-accent-500: #8b5cf6;
    /* violet-500 */
    --vmm-shadow: 0 10px 30px rgba(17, 24, 39, .08);
    --vmm-radius: 28px;
}    



#vmmcalc .vmm-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--vmm-bg);
    border: 1px solid var(--vmm-border);
    border-radius: var(--vmm-radius);
    box-shadow: var(--vmm-shadow);
    overflow: hidden;
    color: var(--vmm-text);
}

#vmmcalc .vmm-wrap {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    
    background-color: #f9f9f9;
}


#vmmcalc .vmm-title {
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 40px 0;
    letter-spacing: -0.01em;
    font-weight: 700;
    width: 100%;
}

#vmmcalc .vmm-left .vmm-group {
    margin-bottom: 34px;
    width: 100%;
}

#vmmcalc .vmm-label {
    font-size: 18px;
    color: var(--vmm-muted);
    margin-bottom: 30px;
}

/* Slider Block (scoped) */
#vmmcalc .vmm-slider-row {
    position: relative;
}

#vmmcalc .vmm-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(to right, var(--vmm-accent-500) 0%, var(--vmm-accent-500) 50%, #e5e7eb 50%, #e5e7eb 100%);
}

#vmmcalc .vmm-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 3px solid var(--vmm-accent-500);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

#vmmcalc .vmm-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #fff;
    border: 3px solid var(--vmm-accent-500);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

#vmmcalc .vmm-pill {
    position: absolute;
    top: -20px;
    transform: translateX(-50%);
    background: var(--vmm-accent-600);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(124, 58, 237, .35);
    pointer-events: none;
}

#vmmcalc .vmm-right-top {
    text-align: center;
    padding: 50px 50px 10px 50px;
}

#vmmcalc .vmm-visitors {
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;

}

#vmmcalc .vmm-visitors span {
    color: var(--vmm-accent);
    font-size: 30px;
    font-weight: 800;
    margin-right: 10px;
}

#vmmcalc .vmm-sub {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    margin: 10px auto 0;
}

#vmmcalc .vmm-math {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px 0 50px;
    flex-wrap: wrap;
}

#vmmcalc .vmm-n {
    font-weight: 800;
    font-size: 30px;
    color: var(--vmm-accent);
    margin-right: 10px;
}

#vmmcalc .vmm-cap {
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

#vmmcalc .vmm-times {
    font-size: 40px;
    font-weight: 400;
    opacity: .7;
}

#vmmcalc .vmm-cta {
    margin-top: 6px;
    background: radial-gradient(120% 160% at 50% 0%, #7c3aed 0%, #4c1d95 50%, #2e1065 100%);
    color: #fff;
    text-align: center;
    padding: 44px 20px;
 
}

#vmmcalc .vmm-big {
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .01em;
    margin: 0 0 10px 0;
}

#vmmcalc .vmm-hint {
    color: #e9d5ff;
    font-size: 20px;
}
.vmm-left{
    padding: 50px;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.vmm-math .vmm-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}


#content{
    background-color: #FFF;
}


#hook .left{
    min-width: 700px;
}
#hook .right{
    position: relative;
}
#hook .right img{
    width: 100%;
    height: auto;
}
#hook h1{
    font-size: 4.5em;
    font-weight: 900;
    text-transform: none;
    margin: 0 0 20px 0;
}
#hook p{
    font-size: 1.25em;
}
#hook a {
    text-decoration: none;
    font-size: 1.25em;
}
#hook .btn{
    color: #FFF;
    background-color: var(--green);
    border-radius: 5px;
    padding: 10px 25px;
    margin-right: 25px;
}
#hook .call{
    color: #FFF;   
}
#hook .right img.backAccent{
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 70%;
    max-width: 450px;
}
#hook .right img.frontAccent{
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 70%;
    max-width: 450px;
}
#hook #tsparticles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#CTA #tsparticles3{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#hook .maxWidth{
    position: relative;
    z-index: 2;
}
#tsparticles canvas {
  position: absolute !important; /* or relative, depending on layout */
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  background-color: transparent !important; /* optional */
  opacity: 0.7;
}
#tsparticles2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#tsparticles2 canvas {
  position: absolute !important; /* or relative, depending on layout */
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  background-color: transparent !important; /* optional */
  opacity: 0.7;
}
#tsparticles3 canvas {
  position: absolute !important; /* or relative, depending on layout */
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  background-color: transparent !important; /* optional */
  opacity: 0.5;
}
#tsparticles4 canvas {
  position: absolute !important; /* or relative, depending on layout */
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  background-color: transparent !important; /* optional */
  opacity: 0.7;
}
#tsparticles4{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* 


TAN CONTENT*/
#tanContent .item{
    width: 33%;
    padding: 0 25px;
    text-align: center;
}
#tanContent .flex.center{
    align-items: flex-start;
}
#tanContent h3{
    margin: 0 0 10px 0;
    font-size: 1.5em;
}
#tanContent p{
    margin: unset;
}

#vidSection{
    padding-top: 50px;
}
#vidSection h3{
    margin: 0 0 10px 0;
    font-size: 1.25em;
}
#vidSection p{
    margin: unset;
}
#vidSection .wrap{
    margin-bottom: 25px;
}
svg#topWave{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
}
svg#bottomWave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: rotate(180deg);
}
#topWave img{
    width: 100%;
    height: 100px;
}

#content .content{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding: 100px 0 50px;
}
#content img{
    width: 40%;
    height: auto;

}
#content .text{
    width: 390px;
    padding-right: 50px;
}
#content .title{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#content h3{
    font-size: 1.5em;
    margin: unset;
}
#content .num{
    font-size: 90px;
    margin-right: 20px;
    font-weight: 600;
}
#content p{
    margin: 10px 0;
}
#content .content.reverse{
    flex-direction: row;
}
#content .content.reverse .text{
    padding: 0 0 0 50px;
}
#content .content.reverse .text{
    width: 500px;
}
#content{
    padding-bottom: 500px;
}
#valueCalculator{
    position: absolute;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -600px);
}
#tanWave{
    padding-top: 200px;
}

#CTA{
    background: linear-gradient(90deg, rgba(0, 102, 255, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-radius: 100px;
    padding: 150px 100px;
    color: #FFF;
}
#CTA p{
    margin: unset;
}
#CTA h2{
    font-size: 70px;
    font-weight: 900;
    margin: unset;
}
#CTA .btn{
    padding: 10px 20px;
    background-color: #FFF;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    display: inline-block;
}
#CTA .right{
    width: 450px;
}
#CTA .flex{
    justify-content: center;
    position: relative;
    z-index: 2;
}
#greenBottom{
    background: #129A24;
    background: linear-gradient(90deg, rgba(18, 154, 36, 1) 0%, rgba(16, 110, 29, 1) 100%);
    padding: 150px 0;
}
#greenBottom h2{
    font-weight: 900;
    font-size: 2.5em;
    margin: unset;
}
#faq h2{
    text-align: center;
}

@media (max-width: 1250px){
    #hook h1{
        font-size: 3em;
    }
    #hook .left{
        min-width: 500px;
    }
    #hook p, #hook a{
        font-size: 1em;
    }
    #tanContent h3{
        font-size: 1.25em;
    }
    #vidSection h3{
        font-size: 1em;
        margin: 0 0 5px 0;
    }
    #vidSection .right{
        padding-left: 50px;
    }
    #CTA h2{
        font-size: 40px;
    }
    #CTA{
        padding: 100px 50px;
    }
}
@media (max-width: 850px){
    .maxWidth{
        padding: 0 25px;
    }
    #hook .flex{
        flex-direction: column;
    }
    #hook .left{
        padding: 50px 0;
        min-width: unset;
    }
    #hook .flex .flex{
        flex-direction: row;
    }
    #hook{
        padding: 150px 0 100px;
    }
    #tanContent .flex.center{
        flex-wrap: wrap;
        flex-direction: column;
    }
    #tanContent .item{
        width: 100%;
        padding: 25px 0;
    }
    #vidSection .flex.center{
        flex-direction: column;
    }
    #vidSection .right{
        padding: 50px 0 0 0;
    }
    #content .content, #content .content.reverse{
        flex-direction: column;
    }
    #content .text, #content .content.reverse .text{
        width: 100%;
        padding: 50px 0 0 0;
    }
    #content img{
        width: 100%;
    }
    #valueCalculator{
        transform: unset;
        left: unset;
        top: unset;
        position: relative;
    }
    #content{
        padding-bottom: 100px;
    }
    svg#bottomWave{
        height: 50px;
    }
    #tanWave{
        padding-top: 50px;
    }
    #vmmcalc .vmm-wrap{
        display: flex;
        flex-direction: column;
    }
    #CTA .flex{
        flex-direction: column;
    }
    #CTA .right{
        padding: 25px 0 0 0;
        text-align: center;
    }
    #CTA{
        border-radius: 50px;
    }

}
@media (max-width: 600px){
    #vidSection iframe{
        width: 90vw;
        height: 50.625vw;
    }
    #vmmcalc .vmm-big{
        font-size: 50px;
    }
    #vmmcalc .vmm-math{
        padding: 25px 25px 50px;
    }
    .ctawrap{
        padding: unset;
    }
    #CTA{
        border-radius: unset;
    }
    #vmmcalc{
        padding-bottom: 50px;
    }
    #tanWave .maxWidth{
        padding: unset;
    }
    #vmmcalc .vmm-card{
        border-radius: unset;
        border: unset;
    }
    svg#topWave, svg#bottomWave{
        display: none;
    }
    #content .content{
        padding: 50px 0;
    }
    #tanWave{
        background-color: #FFF;
    }
    #content{
        padding-bottom: 50px;
    }
    #CTA h2{
        text-align: center;
    }
    #designExamples{
        padding: 0 25px;
    }
    #hook{
        border-radius: 0 0 50px 50px;
    }
    #hook h1{
        text-align: center;
    }
    #hook .left{
        text-align: center;
    }
    #hook .flex .flex{
        justify-content: center;
    }
    #tanContent{
        padding: 50px 0 0;
    }
    #vidSection .right{
        padding: 50px 0;
    }
    #CTA .right{
        width: 100%;
    }
    
    #CTA{
        padding: 100px 25px;
    }

    #greenBottom{
        padding: 100px 0;
    }
    
    #faq{
        padding: 50px 0 !important;
    }
}