* {
    --classic-border: 1px solid rgba(255, 255, 255, 0.106);
    --classic-border-active: 1px solid rgba(255, 255, 255, 0.277);
    --border_col: #6c6c6c80;
    --border_col_weak: #6c6c6c35;
    --svg_icon_col: #a1a1a1;
    --svg_icon_col_boost: #bebebe;
    --primary_col: #272727;
    --secondary_col: #1f1f1f;
    --third_col: #1a1a1a;
    --accent_col: #0030ee;
    --small_border_radius: 4px;
    --medium_border_radius: 8px;
    --large_border_radius: 12px;
    --huge_border_radius: 16px;
    --small_padding: 4px;
    --medium_padding: 12px;
    --large_padding: 36px;
    --huge_padding: 108px;
    --selection_color: #ffa200;
    --bezier: cubic-bezier(0, .8, .4, 1.04);
    font-family: ui-monospace, 'SF Mono', 'Roboto Mono', 'Cascadia Mono', 'Segoe UI Mono', monospace;
}

button {
    cursor: pointer;
}

.start_button {
    height: 32px;
    border-radius: 8px;
    border: none;
    outline: none;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
}

.start_button:active {
    scale: 1.02;
}

.option .inner {
    display: flex;
    flex-direction: column;
}

@font-face {
    font-family: 'Funnel Display';
    src: url('FunnelDisplay[wght].woff2') format('woff2-variations'),
        url('FunnelDisplay[wght].woff2') format('woff2');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: transparent;
    background-color: var(--third_col);
    color: white;
}

html {
    overflow-y: hidden;
}

body {
    overflow-y: scroll;
    scrollbar-color: var(--border_col) var(--third_col);
}

.header {
    margin-left: 32px;
    height: 48px;
    padding: 16px;
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
}



.header svg {
    height: 100%;
}

.pricing {
    justify-self: flex-end;
    justify-self: flex;
}

.tabs {
    font-size: 14px;
    padding-left: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.tab {
    font-weight: 400;
    color: var(--svg_icon_col_boost);
    cursor: pointer;
    margin-top: 4px;
    padding: 8px;
}

.tab:hover {
    color: white;
}

.main_container {
    padding: 64px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

h1 {
    font-family: 'Funnel Display', sans-serif;

    font-weight: 600;
    font-size: 60px;
    margin-bottom: 16px;
}

h2 {
    max-width: 500px;
    color: var(--svg_icon_col_boost);
    font-weight: 400;
    margin-bottom: 48px;
}

.other_platforms {
    font-family: 'Funnel Display', sans-serif;
    outline: none;
    background-color: transparent;
    border: none;
    height: 64px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    color: white;
    padding-left: 24px;
    padding-right: 24px;
    cursor: pointer;
    width: max-content;
}

.download_button {
    font-family: 'Funnel Display', sans-serif;
    outline: none;
    background-color: white;
    border: none;
    height: 64px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    color: black;
    padding-left: 24px;
    padding-right: 24px;
    cursor: pointer;
    width: max-content;
}

a {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .download_button {
    position: relative;
    z-index: 1;
    font-family: 'Funnel Display', sans-serif;
    font-weight: 500;
    background-color: white;
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
} */


.download_button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    box-shadow: 0px 0px 10px 1px #f5a226;
}


.download_button:hover::after {
    opacity: 1;
}


.other_platforms {}

.download_wrapper {
    display: flex;
    flex-direction: row;
}

h3 {
    font-size: 20px;
    font-family: "Inter";
    font-weight: 600;
}

.info {
    font-family: "Inter";
    font-weight: 500;
}

.nectan_demo {
    height: 500px;
    flex-shrink: 0;
}


footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 24px;
}

.footer_logo {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.footer_logo svg {
    color: #545454;
    height: 100%;
    width: 100%;
    max-width: 500px;
}

.footer_links {
    flex: 0 0 auto;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

@media (max-width: 500px) {
    footer {
        height: auto;
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .footer_logo {
        height: 60px;
        flex: none;
    }
}

.pricing_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pricing_container h1 {
    margin-top: 20px;
    margin-bottom: 64px;
}

.pricing_options {
    width: 80%;
    height: 500px;
    border: var(--classic-border);
    border-radius: 12px;
    background-color: var(--primary_col);
    display: grid;
    grid-template-columns: 1fr 1fr;
}


.option {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.option .type {
    font-size: 20px;
    font-weight: 500;
}


.option .desc {
    margin-top: 12px;
    font-size: 14px;
}

.price {
    font-size: 32px;
}

.price_container {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.price_details {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.details_inner {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
}

.price_details .detail {
    font-size: 12px !important;
}

.option .desc_details {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    font-size: 13px;
}

.desc_details span {
    color: #dbdbdb;
    margin-top: 4px;
    font-weight: 400;
}

.option.border {
    border-right: var(--classic-border);
}