/* Inter Variable Font */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('./assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations'),
        url('./assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

/* Fira Code - Regular */
@font-face {
    font-family: 'Fira Code';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./assets/fonts/FiraCode-Regular.ttf') format('truetype');
}

/* Fira Code - Medium */
@font-face {
    font-family: 'Fira Code';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./assets/fonts/FiraCode-Medium.ttf') format('truetype');
}

/* Local utility stylesheet for FlowDeck landing page. */
:root {
    --brand: #2B9099;
    --brand-light: #75ABB0;
    --brand-dark: #1D6269;
    --bg-dark: #0B0F12;
    --card-bg: #11161B
}

*,
*:before,
*:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg-dark);
    color: #f3f4f6;
    /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5
}

img,
svg {
    display: block;
    vertical-align: middle
}

img {
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: inherit
}

button {
    font: inherit;
    color: inherit;
    background: transparent;
    cursor: pointer
}

h1,
h2,
h3,
p {
    margin: 0
}

table {
    border-collapse: collapse;
    text-indent: 0;
    border-color: inherit
}

hr {
    height: 0;
    border-top-width: 1px
}

.glass-nav {
    background: rgba(11, 15, 18, .7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.fixed {
    position: fixed
}

.sticky {
    position: sticky
}

.inset-0 {
    inset: 0
}

.top-0 {
    top: 0
}

.top-full {
    top: 100%
}

.bottom-full {
    bottom: 100%
}

.left-1\/2 {
    left: 50%
}

.z-0 {
    z-index: 0
}

.z-10 {
    z-index: 10
}

.z-50 {
    z-index: 50
}

.z-\[100\] {
    z-index: 100
}

.-z-10 {
    z-index: -10
}

.block {
    display: block
}

.inline {
    display: inline
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.flex-grow {
    flex-grow: 1
}

.flex-shrink-0 {
    flex-shrink: 0
}

.items-center {
    align-items: center
}

.items-start {
    align-items: flex-start
}

.justify-between {
    justify-content: space-between
}

.justify-center {
    justify-content: center
}

.justify-start {
    justify-content: flex-start
}

.mr-auto {
    margin-right: auto
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr))
}

.col-span-1 {
    grid-column: span 1/span 1
}

.col-span-5 {
    grid-column: span 5/span 5
}

.col-span-7 {
    grid-column: span 7/span 7
}

.w-full {
    width: 100%
}

.w-auto {
    width: auto
}

.w-1 {
    width: .25rem
}

.w-2\.5 {
    width: .625rem
}

.w-3 {
    width: .75rem
}

.w-4 {
    width: 1rem
}

.w-5 {
    width: 1.25rem
}

.w-6 {
    width: 1.5rem
}

.w-7 {
    width: 1.75rem
}

.w-9 {
    width: 2.25rem
}

.w-10 {
    width: 2.5rem
}

.w-12 {
    width: 3rem
}

.w-14 {
    width: 3.5rem
}

.w-48 {
    width: 12rem
}

.w-72 {
    width: 18rem
}

.h-0\.5 {
    height: .125rem
}

.h-1 {
    height: .25rem
}

.h-1\.5 {
    height: .375rem
}

.h-2\.5 {
    height: .625rem
}

.h-3 {
    height: .75rem
}

.h-4 {
    height: 1rem
}

.h-5 {
    height: 1.25rem
}

.h-6 {
    height: 1.5rem
}

.h-7 {
    height: 1.75rem
}

.h-8 {
    height: 2rem
}

.h-9 {
    height: 2.25rem
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-16 {
    height: 4rem
}

.h-20 {
    height: 5rem
}

.h-full {
    height: 100%
}

.h-auto {
    height: auto
}

.min-h-screen {
    min-height: 100vh
}

.min-w-full {
    min-width: 100%
}

.max-w-2xl {
    max-width: 42rem
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-lg {
    max-width: 32rem
}

.max-w-7xl {
    max-width: 80rem
}

.max-h-\[160px\] {
    max-height: 160px
}

.p-1 {
    padding: .25rem
}

.p-1\.5 {
    padding: .375rem
}

.p-2 {
    padding: .5rem
}

.p-2\.5 {
    padding: .625rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.p-8 {
    padding: 2rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.py-0\.5 {
    padding-top: .125rem;
    padding-bottom: .125rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-1\.5 {
    padding-top: .375rem;
    padding-bottom: .375rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-2\.5 {
    padding-top: .625rem;
    padding-bottom: .625rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-3\.5 {
    padding-top: .875rem;
    padding-bottom: .875rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
}

.pt-2 {
    padding-top: .5rem
}

.pt-6 {
    padding-top: 1.5rem
}

.pb-1 {
    padding-bottom: .25rem
}

.pb-4 {
    padding-bottom: 1rem
}

.pl-1 {
    padding-left: .25rem
}

.pl-2 {
    padding-left: .5rem
}

.pl-3 {
    padding-left: .75rem
}

.m-0 {
    margin: 0
}

.my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem
}

.mt-1 {
    margin-top: .25rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mb-0\.5 {
    margin-bottom: .125rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-1\.5 {
    margin-bottom: .375rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-16 {
    margin-bottom: 4rem
}

.gap-0\.5 {
    gap: .125rem
}

.gap-1\.5 {
    gap: .375rem
}

.gap-2 {
    gap: .5rem
}

.gap-2\.5 {
    gap: .625rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.gap-12 {
    gap: 3rem
}

.gap-x-6 {
    column-gap: 1.5rem
}

.gap-x-8 {
    column-gap: 2rem
}

.gap-y-2 {
    row-gap: .5rem
}

.gap-y-3 {
    row-gap: .75rem
}

.space-y-1>*+* {
    margin-top: .25rem
}

.space-y-2>*+* {
    margin-top: .5rem
}

.space-y-2\.5>*+* {
    margin-top: .625rem
}

.space-y-3>*+* {
    margin-top: .75rem
}

.space-y-4>*+* {
    margin-top: 1rem
}

.space-y-8>*+* {
    margin-top: 2rem
}

.rounded {
    border-radius: .25rem
}

.rounded-sm {
    border-radius: .125rem
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-xl {
    border-radius: .75rem
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-3xl {
    border-radius: 1.5rem
}

.rounded-full {
    border-radius: 9999px
}

.border {
    border-width: 1px
}

.border-4 {
    border-width: 4px
}

.border-l-2 {
    border-left-width: 2px
}

.border-t {
    border-top-width: 1px
}

.border-b {
    border-bottom-width: 1px
}

.border-l {
    border-left-width: 1px
}

.border-r {
    border-right-width: 1px
}

.border-dashed {
    border-style: dashed
}

.border-transparent {
    border-color: transparent
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, .05)
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, .1)
}

.border-gray-100 {
    border-color: #f3f4f6
}

.border-gray-200 {
    border-color: #e5e7eb
}

.border-brand\/20 {
    border-color: rgba(43, 144, 153, .2)
}

.border-brand\/40 {
    border-color: rgba(43, 144, 153, .4)
}

.bg-brand {
    background-color: var(--brand)
}

.bg-brand-bgDark {
    background-color: var(--bg-dark)
}

.bg-brand-cardBg {
    background-color: var(--card-bg)
}

.bg-brand\/5 {
    background-color: rgba(43, 144, 153, .05)
}

.bg-brand\/10 {
    background-color: rgba(43, 144, 153, .1)
}

.bg-brand\/40 {
    background-color: rgba(11, 15, 18, .4)
}

.bg-brand-bgDark\/30 {
    background-color: rgba(11, 15, 18, .3)
}

.bg-brand-bgDark\/40 {
    background-color: rgba(11, 15, 18, .4)
}

.bg-brand-bgDark\/80 {
    background-color: rgba(11, 15, 18, .8)
}

.bg-brand-bgDark\/95 {
    background-color: rgba(11, 15, 18, .95)
}

.bg-brand-cardBg\/30 {
    background-color: rgba(17, 22, 27, .3)
}

.bg-brand-cardBg\/80 {
    background-color: rgba(17, 22, 27, .8)
}

.bg-white {
    background-color: #fff
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, .05)
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, .1)
}

.bg-gray-50 {
    background-color: #f9fafb
}

.bg-gray-50\/50 {
    background-color: rgba(249, 250, 251, .5)
}

.bg-gray-100 {
    background-color: #f3f4f6
}

.bg-\[\#11161b\] {
    background-color: #11161b
}

.bg-\[\#12161A\] {
    background-color: #12161a
}

.bg-\[\#1e242a\] {
    background-color: #1e242a
}

.bg-\[\#eef2f6\] {
    background-color: #eef2f6
}

.bg-\[\#2B9099\] {
    background-color: #2b9099
}

.bg-transparent {
    background-color: transparent
}

.bg-amber-500 {
    background-color: #f59e0b
}

.bg-yellow-50 {
    background-color: #fefce8
}

.text-white {
    color: #fff
}

.text-transparent {
    color: transparent
}

.text-brand {
    color: var(--brand)
}

.text-brand-light {
    color: var(--brand-light)
}

.text-gray-100 {
    color: #f3f4f6
}

.text-gray-300 {
    color: #d1d5db
}

.text-gray-400 {
    color: #9ca3af
}

.text-gray-500 {
    color: #6b7280
}

.text-gray-600 {
    color: #4b5563
}

.text-gray-700 {
    color: #374151
}

.text-gray-800 {
    color: #1f2937
}

.text-gray-900 {
    color: #111827
}

.text-red-400 {
    color: #f87171
}

.text-red-500 {
    color: #ef4444
}

.text-emerald-400 {
    color: #34d399
}

.text-emerald-500 {
    color: #10b981
}

.text-amber-500 {
    color: #f59e0b
}

.text-amber-600 {
    color: #d97706
}

.text-yellow-600 {
    color: #ca8a04
}

.text-\[\#2B9099\] {
    color: #2b9099
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.text-\[10px\] {
    font-size: 10px
}

.text-\[9px\] {
    font-size: 9px
}

.text-\[8px\] {
    font-size: 8px
}

.text-\[7\.5px\] {
    font-size: 7.5px
}

.text-\[7px\] {
    font-size: 7px
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.font-light {
    font-weight: 300
}

.font-normal {
    font-weight: 400
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.font-extrabold {
    font-weight: 800
}

.font-sans {
    /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.font-mono {
    /* font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace */
    font-family: 'Fira Code', monospace;
}

.uppercase {
    text-transform: uppercase
}

.tracking-tight {
    letter-spacing: -.025em
}

.tracking-normal {
    letter-spacing: 0
}

.tracking-wider {
    letter-spacing: .05em
}

.tracking-widest {
    letter-spacing: .1em
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.leading-none {
    line-height: 1
}

.leading-tight {
    line-height: 1.25
}

.leading-relaxed {
    line-height: 1.625
}

.leading-snug {
    line-height: 1.375
}

.whitespace-normal {
    white-space: normal
}

.underline {
    text-decoration-line: underline
}

.decoration-dotted {
    text-decoration-style: dotted
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops))
}

.from-brand {
    --tw-gradient-from: var(--brand);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 144, 153, 0))
}

.to-brand-light {
    --tw-gradient-to: var(--brand-light)
}

.from-white {
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.to-gray-300 {
    --tw-gradient-to: #d1d5db
}

.from-brand-bgDark\/50 {
    --tw-gradient-from: rgba(11, 15, 18, .5);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(11, 15, 18, 0))
}

.via-brand-bgDark\/80 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(11, 15, 18, .8), var(--tw-gradient-to, rgba(11, 15, 18, 0))
}

.to-brand-bgDark {
    --tw-gradient-to: var(--bg-dark)
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text
}

.object-cover {
    object-fit: cover
}

.object-center {
    object-position: center
}

.opacity-0 {
    opacity: 0
}

.opacity-60 {
    opacity: .6
}

.opacity-70 {
    opacity: .7
}

.opacity-75 {
    opacity: .75
}

.opacity-80 {
    opacity: .8
}

.opacity-85 {
    opacity: .85
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-hidden {
    overflow-x: hidden
}

.overflow-x-auto {
    overflow-x: auto
}

.overflow-y-auto {
    overflow-y: auto
}

.aspect-\[3\/2\] {
    aspect-ratio: 3/2
}

.table-auto {
    table-layout: auto
}

.divide-y>*+* {
    border-top-width: 1px
}

.divide-white\/5>*+* {
    border-color: rgba(255, 255, 255, .05)
}

.select-none {
    user-select: none
}

.pointer-events-none {
    pointer-events: none
}

.cursor-pointer {
    cursor: pointer
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05)
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
}

.shadow-\[0_4px_20px_rgba\(43\,144\,153\,0\.25\)\] {
    box-shadow: 0 4px 20px rgba(43, 144, 153, .25)
}

.shadow-\[0_4px_20px_rgba\(43\,144\,153\,0\.3\)\] {
    box-shadow: 0 4px 20px rgba(43, 144, 153, .3)
}

.shadow-\[0_10px_30px_rgba\(43\,144\,153\,0\.3\)\] {
    box-shadow: 0 10px 30px rgba(43, 144, 153, .3)
}

.transform {
    transform: translate(0, 0)
}

.transition-all {
    transition: all .15s ease
}

.transition-colors {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease
}

.transition-transform {
    transition: transform .2s ease
}

.duration-150 {
    transition-duration: .15s
}

.duration-200 {
    transition-duration: .2s
}

.duration-300 {
    transition-duration: .3s
}

.filter {
    filter: var(--tw-filter)
}

.blur-\[1px\] {
    filter: blur(1px)
}

.blur-3xl {
    filter: blur(64px)
}

.mix-blend-luminosity {
    mix-blend-mode: luminosity
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px)
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px)
}

.hover\:bg-brand-dark:hover {
    background-color: var(--brand-dark)
}

.hover\:bg-brand-light:hover {
    background-color: var(--brand-light)
}

.hover\:bg-white\/5:hover {
    background-color: rgba(255, 255, 255, .05)
}

.hover\:bg-white\/10:hover {
    background-color: rgba(255, 255, 255, .1)
}

.hover\:text-brand:hover {
    color: var(--brand)
}

.hover\:text-brand-light:hover {
    color: var(--brand-light)
}

.hover\:text-white:hover {
    color: #fff
}

.hover\:border-brand\/20:hover {
    border-color: rgba(43, 144, 153, .2)
}

.hover\:border-white\/20:hover {
    border-color: rgba(255, 255, 255, .2)
}

.hover\:-translate-y-0\.5:hover {
    transform: translateY(-2px)
}

.hover\:-translate-y-1:hover {
    transform: translateY(-4px)
}

.active\:translate-y-0:active {
    transform: translateY(0)
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05)
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1)
}

.group:hover .group-hover\:bg-brand\/20 {
    background-color: rgba(43, 144, 153, .2)
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1
}

.group:hover .group-hover\:visible {
    visibility: visible
}

.invisible {
    visibility: hidden
}

.visible {
    visibility: visible
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--brand)
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite
}

@media(min-width:640px) {
    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:items-center {
        align-items: center
    }

    .sm\:text-left {
        text-align: left
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .sm\:w-auto {
        width: auto
    }
}

@media(min-width:768px) {
    .md\:flex {
        display: flex
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .md\:hidden {
        display: none
    }

    .md\:inline {
        display: inline
    }
}

@media(min-width:1024px) {
    .lg\:block {
        display: block
    }

    .lg\:hidden {
        display: none
    }

    .lg\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr))
    }

    .lg\:col-span-5 {
        grid-column: span 5/span 5
    }

    .lg\:col-span-7 {
        grid-column: span 7/span 7
    }

    .lg\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem
    }

    .lg\:mb-24 {
        margin-bottom: 6rem
    }

    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }
}