:root {
    --bg: #000;
    --fg: #fff;
    --muted: #e2e2e2;
    --ink: #1b1b1b;
    --accent: #c3ff00;
    --z-scrim: 9000;
    --z-header: 10000;
    --z-drawer: 11000;
    --safe-top: 0px
}

@supports (padding-top:constant(safe-area-inset-top)) {
    :root {
        --safe-top: constant(safe-area-inset-top)
    }
}

@supports (padding-top:env(safe-area-inset-top)) {
    :root {
        --safe-top: env(safe-area-inset-top, 0px)
    }
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: "Raleway", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

body {
    padding-top: var(--header-offset, calc(var(--header-h-compact) + var(--safe-top)))
}

html {
    font-size: 14px
}

@media (min-width:768px) {
    html {
        font-size: 14px
    }
}

@media (min-width:1280px) {
    html {
        font-size: 18px
    }
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #fff0
}

a:hover {
    border-bottom-color: #5e5e5e
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 .6em;
    font-family: "Libre Franklin", "Raleway", sans-serif;
    font-weight: 500;
    letter-spacing: .031em;
    line-height: 1.25
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem)
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem)
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem)
}

p {
    margin: 0 0 1rem;
    font-size: clamp(1rem, 2.5vw, 1.25rem)
}

li {
    font-size: clamp(1rem, 2.5vw, 1.25rem)
}

.small,
.muted {
    color: var(--muted)
}

.upper {
    text-transform: uppercase;
    letter-spacing: .214em
}

.container {
    width: 100%;
    margin-inline: auto;
    padding-top: 24px;
    padding-block: 24px
}

.section_background {
    background-color: #0b0b0b
}

.center {
    text-align: center
}

.glinks {
    color: #c3ff00
}

.hidden {
    display: none !important
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .214em
}

.nav a {
    padding-bottom: 4px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 40px;
    border-radius: 48px;
    background: #161616;
    color: #303030;
    transition: .3s
}

.btn:hover {
    background: #fff;
    color: #404040
}

.btn-accent {
    background: var(--accent);
    color: #21221e
}

.btn-accent:hover {
    filter: brightness(.95)
}

.card {
    background: #000;
    box-shadow: 0 3px 6px 3px rgb(0 0 0 / .16);
    padding: 16px
}

.card h2 {
    color: #c3ff00
}

.kicker {
    letter-spacing: .136em;
    text-transform: uppercase
}

.accent {
    color: var(--accent)
}

.section-gray {
    background: #0b0b0b
}

.stack-vertical {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px
}

:root {
    --header-h-compact: 64px;
    --header-h-expanded: 180px;
    --header-offset: calc(var(--header-h-compact) + var(--safe-top));
    --bg: #121416;
    --fg: #fff;
    --accent: #b9ff3b;
    --surface: #1b1f22;
    --ease: cubic-bezier(.2, .8, .2, 1)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    display: grid;
    grid-template-columns: var(--header-h-compact) 1fr var(--header-h-compact);
    align-items: center;
    height: var(--header-h-compact);
    padding: 0 8px;
    padding-top: var(--safe-top);
    background-color: rgb(11 13 16 / .86);
    backdrop-filter: blur(14px);
    color: var(--fg);
    transition: height .35s var(--ease), padding .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
    box-shadow: none
}

.site-header.is-scrolled {
    background-color: rgb(11 13 16 / .97);
    box-shadow: 0 18px 36px rgb(0 0 0 / .45)
}

.icon-btn {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--fg);
    border: 0;
    background: #fff0;
    cursor: pointer
}

.icon-btn svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2
}

.brand {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--fg)
}

.brand img {
    height: 32px;
    display: block;
    transition: height .35s var(--ease)
}

.desk-nav {
    display: none
}

.desk-nav ul {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.desk-nav a {
    color: var(--fg);
    text-decoration: none;
    opacity: .9
}

.desk-nav a:hover {
    opacity: 1
}

.drawer {
    position: fixed;
    inset: var(--header-offset, calc(var(--header-h-compact) + var(--safe-top))) 0 0 auto;
    width: auto;
    background: var(--surface);
    border-left: 1px solid #0003;
    transform: translateX(-100%);
    transition: transform .28s var(--ease);
    padding: 20px;
    overflow-y: auto
}

.drawer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.drawer li {
    border-bottom: 1px solid #ffffff12
}

.drawer a {
    display: block;
    padding: 14px 2px;
    color: var(--fg);
    text-decoration: none
}

.drawer a:hover {
    color: var(--accent)
}

.scrim {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / .5);
    backdrop-filter: blur(1px);
    z-index: var(--z-scrim)
}

.site-header[data-open] .drawer {
    transform: translateX(0)
}

.site-header[data-open] .scrim {
    display: block
}

.site-header:not([data-open]) .scrim {
    display: none
}

@media (prefers-reduced-motion:reduce) {
    .drawer {
        transition: none
    }
}

@media (min-width:900px) {
    .site-header {
        grid-template-columns: 1fr auto 1fr;
        padding-inline: clamp(32px, 5vw, 64px);
        height: var(--header-h-compact)
    }

    .site-header:not(.is-scrolled) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        justify-items: center;
        align-content: center;
        row-gap: clamp(20px, 3vw, 32px);
        height: var(--header-h-expanded);
        padding-block: clamp(18px, 4vw, 28px)
    }

    .site-header.is-scrolled .brand {
        justify-self: start
    }

    .site-header:not(.is-scrolled) .brand {
        justify-self: center
    }

    .menu-btn,
    .scrim,
    .drawer {
        display: none !important
    }

    .brand img {
        height: 48px
    }

    .site-header:not(.is-scrolled) .brand img {
        height: 84px
    }

    .desk-nav {
        display: block;
        justify-self: center
    }

    .site-header:not(.is-scrolled) .desk-nav ul {
        justify-content: center
    }
}

[hidden] {
    display: none !important
}

[data-header] {
    z-index: var(--z-header)
}

[data-header][data-open] {
    filter: none !important;
    -webkit-filter: none !important
}

#mobileNav {
    position: fixed;
    top: var(--header-offset, calc(var(--header-h-compact) + var(--safe-top)));
    right: 0;
    bottom: 0;
    width: min(90vw, 360px);
    height: max-content;
    z-index: var(--z-drawer);
    pointer-events: auto
}

#about .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 56px);
    width: 90%;
    margin-inline: auto;
    padding-inline: 5%
}

@media (min-width:900px) {
    #about .section_background>.row:nth-of-type(even) {
        flex-direction: row-reverse
    }
}

@media (max-width:900px) {
    #about .section_background>.row {
        flex-direction: column;
        text-align: center;
        padding-inline: 0
    }

    #about .section_background>.row .media {
        order: 1
    }

    #about .section_background>.row .copy {
        order: 2
    }
}

#about .media {
    flex: 1 1 50%;
    max-width: 600px;
    border-radius: 12px;
    object-fit: cover
}

#about .copy {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;
    max-width: 60ch
}

@media (max-width:900px) {
    #about .row {
        flex-direction: column;
        text-align: center;
        padding-inline: 0
    }

    #about .media,
    #about .copy {
        flex: 1 1 100%;
        max-width: 100%
    }
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: clamp(12px, 5vw, 28px) auto;
    overflow: hidden;
    border-radius: 14px;
    background: rgb(0 0 0 / .35);
    box-shadow: 0 18px 48px rgb(0 0 0 / .28);
    touch-action: pan-y
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .65s var(--ease);
    will-change: transform
}

.slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgb(0 0 0 / .4);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    user-select: none;
    transition: background .25s var(--ease)
}

.arrow:hover,
.arrow:focus-visible {
    background: rgb(0 0 0 / .7);
    outline: none
}

.arrow.prev {
    left: 12px
}

.arrow.next {
    right: 12px
}

.carousel:focus-within .arrow,
.carousel:hover .arrow {
    background: rgb(0 0 0 / .6)
}

@media (max-width:720px) {
    .carousel {
        border-radius: 10px
    }

    .arrow {
        font-size: 1.6rem;
        padding: 6px 10px
    }

    .arrow.prev {
        left: 8px
    }

    .arrow.next {
        right: 8px
    }
}

.carousel-text {
    width: 100%;
    max-width: 880px;
    margin: 15px auto;
    text-align: center;
    color: var(--fg);
    font-size: clamp(1rem, 2.5vw, 1.25rem)
}

.wrap {
    width: min(1100px, 92%);
    margin-inline: auto
}

.section {
    padding: clamp(24px, 6vw, 20px) 0
}

.section-centered {
    text-align: center
}

.card-spaced {
    margin-top: 16px
}

.section-subheading {
    margin-top: 12px
}

.two {
    display: grid;
    gap: 24px
}

@media (min-width:900px) {
    .two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(32px, 6vw, 72px);
        row-gap: clamp(28px, 5vw, 48px)
    }

    .two ul.clean {
        padding-left: clamp(1.5rem, 2.5vw, 2rem)
    }

    .two ul.clean li+li {
        margin-top: clamp(.85rem, 1.4vw, 1.25rem)
    }
}

.divider {
    height: 1px;
    background: rgb(255 255 255 / .14);
    margin: 24px 0
}

.price {
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    font-weight: 700
}

ul.clean {
    margin: 0;
    padding-left: 1.1rem
}

.cta {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / .16);
    text-decoration: none
}

.cta:hover {
    border-color: rgb(255 255 255 / .32)
}

.services-page {
    background: var(--bg);
    color: var(--fg)
}

.services-page .muted {
    opacity: .85
}

.services-page .card {
    border: 1px solid rgb(255 255 255 / .12);
    border-radius: 14px;
    padding: 20px;
    background: rgb(255 255 255 / .02);
    box-shadow: none
}

.services-page footer {
    padding: 40px 0;
    text-align: center;
    opacity: .85
}

.hide {
    display: none
}

.site-footer {
    padding: clamp(32px, 6vw, 48px) clamp(20px, 6vw, 40px);
    border-top: 1px solid rgb(255 255 255 / .12)
}

.footer-grid {
    display: grid;
    gap: clamp(18px, 4vw, 28px);
    grid-template-areas: "brand" "socials" "credit";
    justify-items: center
}

.footer-brand,
.footer-socials,
.footer-credit {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.footer-brand {
    grid-area: brand;
    align-items: center;
    text-align: center
}

.footer-brand p {
    margin: 0
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.footer-links a {
    font-size: .9rem;
    color: var(--fg);
    opacity: .8
}

.footer-links a:hover {
    opacity: 1
}

.footer-socials {
    grid-area: socials;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center
}

.footer-social {
    display: inline-flex;
    width: 48px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / .08);
    transition: transform .3s var(--ease), opacity .3s var(--ease)
}

.footer-social:hover {
    transform: translateY(-2px);
    opacity: .9
}

.footer-social img {
    width: 24px;
    height: 24px
}

.footer-credit {
    grid-area: credit;
    align-items: center;
    text-align: center
}

.footer-credit p {
    margin: 0;
    font-size: .95rem
}

.footer-credit a {
    color: var(--accent)
}

/* Cheap fix */
.filter-white {
    filter: invert(80%) sepia(41%) saturate(1824%) hue-rotate(37deg) brightness(102%) contrast(98%);
} 

@media (min-width:900px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas: "socials brand credit";
        align-items: center;
        justify-items: stretch;
        gap: clamp(24px, 5vw, 56px)
    }

    .footer-socials {
        justify-content: flex-start
    }

    .footer-brand {
        align-items: center;
        text-align: center
    }

    .footer-credit {
        align-items: flex-end;
        text-align: right
    }
}

@media (max-width:899px) {
    .footer-grid {
        text-align: center
    }

    .footer-brand,
    .footer-credit {
        align-items: center
    }
}