:root {
 
    /* Accent Shades  */ 
    --priOrange-100: #FFA500;
    --priOrange-200: #E59400;
    --priOrange-300: #CC8400;
    --priOrange-400: #B27300;
    --priOrange-500: #996300;
    --priOrange-600: #805200;
    --priOrange-700: #664200;
    --priOrange-800: #4C3100;
    --priOrange-900: #332100;
    --priOrange-1000: #191000;

    /* Accent Shades  */ 
    --accShade-100: #e6e6e6;
    --accShade-200: #CCCCCC;
    --accShade-300: #B3B3B3;
    --accShade-400: #999999;
    --accShade-500: #808080;
    --accShade-600: #666666;
    --accShade-700: #4C4C4C;
    --accShade-800: #333333;
    --accShade-900: #191919;
    
    
    /* Focus  */ 
    --focus-100:#057BFF;
    --focus-75: #0469D9;
    --focus-50: #0356B2;
    --focus-25: #02438C;
    
    
    /* Success  */ 
    --success-100: #5BFF4D;
    --success-75:  #4DD941;
    --success-50:  #40B336;
    --success-25:  #328C2A;
    
    
    /* Error  */ 
    --error-100: #FF3338;
    --error-75:  #D92B30;
    --error-50:  #B32427;
    --error-25:  #8C1C1F;
    
    
    /* Alert  */ 
    --alert-100: #FF8200;
    --alert-75:  #BF6100;
    --alert-50:  #804100;
    --alert-25:  #402000;
    
    
    /* Neutral Dark  */ 
    --neuDark-100: #0D0D0D;
    --neuDark-75:  #1A1A1A;
    --neuDark-50:  #262626;
    --neuDark-25:  #333333;
    
    
    /* Neutral White  */ 
    --neuWhite-100: #EBEBEB;
    --neuWhite-75:  #F2F2F2;
    --neuWhite-50:  #F7F7F7;
    --neuWhite-25:  #FFFFFF;

    /* Gradient */
    --Gradient-100: linear-gradient(270deg, #E9D022 0%, #E62422 100%);
    --Gradient-200: linear-gradient(360deg, #26E9FF 0%, #26FF99 100%);
    --Gradient-300: linear-gradient(360deg, #2483F1 0%, #258FFA 100%);

    --ctaGradient: linear-gradient(180deg, #E59400 0%, #B27300 100%);
    --ctaGradient: linear-gradient(180deg, #B27300 0%, #E59400 100%);
}
* , ** , *::before , *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    appearance: none;
}

body {
    margin: 0;
    background-color: var(--neuDark-75);
}

/********************************************************************/


/* 
        Typography
                        */


@font-face {
    font-family: 'Givonic-Black';
    src: url(/assets/fonts/Givonic/Givonic-Black.ttf) format('ttf');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Bold';
    src: url(/assets/fonts/Givonic/Givonic-Bold.ttf) format('ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Semibold';
    src: url(/assets/fonts/Givonic/Givonic-SemiBold.ttf) format('ttf');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Regular';
    src: url(/assets/fonts/Givonic/Givonic-Regular.ttf) format('ttf');
    font-weight: 450;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Light';
    src: url(/assets/fonts/Givonic/Givonic-Light.ttf) format('ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic-Thin';
    src: url(/assets/fonts/Givonic/Givonic-Thin.ttf) format('ttf');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Light';
    src: url(/assets/fonts/Inter/Inter-Light.ttf) format('ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Regular';
    src: url(/assets/fonts/Inter/Inter-Regular.ttf) format('ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Medium';
    src: url(/assets/fonts/Inter/Inter-Medium.ttf) format('ttf');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Semibold';
    src: url(/assets/fonts/Inter/Inter-SemiBold.ttf) format('ttf');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Bold';
    src: url(/assets/fonts/Inter/Inter-Bold.ttf) format('ttf');
    font-weight: 700;
    font-style: normal;
}



/* Headlines */

.headlineBold {
    font-family: 'Givonic-Bold', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--neuWhite-100);

    line-height: 110%;
    letter-spacing: 0.5 px;
    margin: 0;
}

.headlineLarge {
    font-family: 'Givonic-Bold', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--accShade-100);
    margin: 0;
}

.headlineRegular {
    font-family: 'Givonic-Bold', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accShade-100);
    margin: 0;
}

.headlineSmall {
    font-family: 'Givonic-Bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accShade-100);
    margin: 0;
}

.headlineSubheadline {
    font-family: 'Givonic-Semibold', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--accShade-100);
    margin: 0;
}


/*          
            Body        
                         */

/* Body Large */
.bodyLarge {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--accShade-300);

    line-height: 140%;
    letter-spacing: 0;
    margin: 0;
}
.bodyLarge .SemiBold {
    font-family: 'Inter-Semibold', sans-serif;
    font-weight: 600;
    color: var(--accShade-200);
}
.bodyLarge .Bold {
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    color: var(--accShade-200);
}

/* Body Regular */
.bodyRegular {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--accShade-300);

    line-height: 130%;
    letter-spacing: 0;
    margin: 0;
}
.bodyRegular .SemiBold {
    font-family: 'Inter-Semibold', sans-serif;
    font-weight: 600;
    color: var(--accShade-200);

}
.bodyRegulare .Bold {
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    color: var(--accShade-200);

}

/* Body Small */
.bodySmall {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--accShade-300);

    line-height: 130%;
    letter-spacing: 0;
    margin: 0;
}
.bodySmall .SemiBold {
    font-family: 'Inter-Semibold', sans-serif;
    font-weight: 600;
    color: var(--accShade-200);

}
.bodySmall .Bold {
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    color: var(--accShade-200);

    line-height: 110%;
    letter-spacing: 0;
}


/*          
        CaptionsText        
                         */


/* Caption Large */
.captionLarge {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
    margin: 0;
}
.captionLarge .Medium {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
}
.captionLarge .Light {
    font-family: 'Inter-Light', sans-serif;
    font-weight: 300;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
}


/* Caption Regular */
.captionRegular {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
    margin: 0;
}
.captionRegular .Medium {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
}
.captionRegular .Light {
    font-family: 'Inter-Light', sans-serif;
    font-weight: 300;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
}



/* Caption Small */
.captionSmall {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
    margin: 0;
}
.captionSmall .Medium {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
}
.captionSmall .Light {
    font-family: 'Inter-Light', sans-serif;
    font-weight: 300;
    color: var(--accShade-400);

    line-height: 110%;
    letter-spacing: 0;
}

section {
    width: 100%;
    max-width: 1060px;
    margin: 62px auto;
}

/********************************************************************/

/*          
        Buttons        
                         */
/* Reset */
button {
    appearance: none;
    outline: none;
    border: none;
    background-color: transparent;
}
button:focus {
    appearance: none;
    outline: none;
}

.ctaButton {
    background-image: var(--ctaGradient);  
}


/********************************************************************/

/*          
        Text Inputs        
                         */

/* Reset */

/* TextField */
.A-TextField {
    display: flex;
    flex-direction: column;

    width:100%;
    max-width:340px;
    min-height: 84px;

    transition: all 200ms ease-out;
}

.A-TextField.reg {
    margin-top: 12px;
    margin-bottom: 6px;
    gap:6px;

    width:100%;
    max-width:240px;
}

.A-TextField.small {
    margin-top: 16px;
    margin-bottom: 8px;
    gap:5px;
    
    padding-top: 8px;

    width:100%;
    max-width:340px;

}

/* Regular */
.A-TextField.reg .TF-Atom-Label {
    font-family: 'Inter-Medium', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
}
.A-TextField.reg input[type="text"] {
    appearance: none;

    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--accShade-300);

    line-height: 130%;

    width: 100%;
    margin-bottom: 6px;
    background-color: transparent;
    border: none;

    padding: 5px 16px;
    border-bottom: 2px solid var(--accShade-500);
}
.A-TextField.reg .TF-Atom-Helper {
    font-family: 'Inter-Light', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--accShade-400);

    margin: 0px;
}
.A-TextField.reg input[type="text"]::placeholder {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--accShade-500);

    line-height: 130%;
    letter-spacing: 0;
    margin: 0;
}


/* Small */
.A-TextField.small .TF-Atom-Label {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
}
.A-TextField.small input[type="text"] {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--accShade-300);

    line-height: 110%;
    letter-spacing: 0;
    
    background-color: transparent;
    border: none;

    padding: 3px 16px;
    border-bottom: 2px solid var(--accShade-500);
}
.A-TextField.small .TF-Atom-Helper {
    font-family: 'Inter-Light', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--accShade-400);

    margin: 0px;
}
.A-TextField.small input[type="text"]::placeholder {
    font-family: 'Inter-Medium', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--accShade-500);

    line-height: 110%;
    letter-spacing: 0;
    margin: 0;
}



/* TextField States 
input[type="text"]:focus-visible {
    border-bottom: 2px solid var(--priOrange-300);
}

input[type="text"]:hover{
    border-bottom: 2px solid var(--accShade-300);
}

.A-TextField:focus-within .TF-Atom-Label{
    color: var(--priOrange-300);
}
/* Disabled Styles 
.standardInput:disabled label {
    color: var(--focusBlue-25);
}

 /* Error Styles 
.standardInput.reg:has(input[type="text"]:required) label{
    color: var(--errorRed-50);
}

.standardInput.large:has(input[type="text"]:required) label{
    color: var(--errorRed-50);
}


/* Hover Styles */
.A-TextField input[type="text"]:hover {
    color: var(--accShade-200);
    border-bottom: solid 2px var(--accShade-300);
}


/* Focus Styles */
/*Reset Default Focus*/
.A-TextField input[type="text"]:focus {
    appearance: none;
    outline: none;
}
/*Focus only on Keyboard*/
.A-TextField input[type="text"]:focus-visible {
    border-bottom: 2px solid var(--priOrange-300);
}

.A-TextField:focus-within .TF-Atom-Label {
    color: var(--priOrange-300);
}

/* Disabled Styles */
.A-TextField.reg.disabled input[type="text"] {
    border-bottom: 2px solid var(--accShade-700);
}

.A-TextField.reg.disabled .TF-Atom-Label {
    color: var(--accShade-700);
}

.A-TextField.reg.disabled .TF-Atom-Helper {
    color: var(--accShade-700);
}


.A-TextField.small.disabled input[type="text"] {
    border-bottom: 2px solid var(--accShade-700);
}

.A-TextField.small.disabled .TF-Atom-Label {
    color: var(--accShade-700);
}

.A-TextField.small.disabled .TF-Atom-Helper {
    color: var(--accShade-700);
}



/* Disabled Styles */

/********************************************************************/

/*          
        Text Area        
                         */



/********************************************************************/

/*          
        Dropdowns        
                         */