/*
 Theme Name:   Spatial Moon Studios Theme
 Description:  Custom Theme by Francesco
 Author:       Francesco Rossi, Tim Peeters
 Version:      1.1.1
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 */

:root {
    --introtex: url(assets/tile-texture.png);
    --introbg: url(assets/intro-bg.jpg);
    --void: #04060B;
    --moon: #EDF3FB;
    --silver: #AEB9CC;
    --dim: #5A6678;
    --signal: #6FB7D8;
    --violet: #9A82F0;
    --teal: #5FD0C4;
    --line: rgba(170, 200, 235, .16);
    --glass: rgba(13, 19, 32, .42);
    --disp: "Space Grotesk", system-ui, sans-serif;
    --body: "Inter", system-ui, sans-serif;
    --mono: "Space Mono", ui-monospace, monospace;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

body {
    color: var(--moon);
    font-family: var(--body);
    background: radial-gradient(1300px 1000px at 60% 12%, #0a1120, #04060B 62%);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3 {
    font-family: var(--disp);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.04;
    margin: 0;
}

.gtext {
    background: linear-gradient(108deg, #F2F7FE, #A8DBF2 42%, #B9A6F4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.kick {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--signal);
}

.lead {
    color: var(--silver);
    font-size: 15.5px;
    line-height: 1.6;
}

#bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

#css3d {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

#panels {
    position: absolute;
    left: -99999px;
    top: 0;
}

.panel {
    width: 760px;
    padding: 34px 38px;
    border-radius: 22px;
    pointer-events: auto;
    color: var(--moon);
    will-change: opacity, filter, transform;
    text-shadow: 0 1px 14px rgba(2, 4, 10, .72), 0 0 3px rgba(2, 4, 10, .55);
}

.glass {
    position: relative;
    background: linear-gradient(152deg, rgba(33, 45, 68, .42), rgba(8, 12, 22, .34));
    backdrop-filter: blur(7px) saturate(1.5) brightness(1.07);
    -webkit-backdrop-filter: blur(7px) saturate(1.5) brightness(1.07);
    box-shadow: 0 44px 120px -54px rgba(0, 0, 0, .86), 0 0 70px -34px rgba(111, 183, 216, .2), inset 0 1px 0 rgba(255, 255, 255, .36), inset 0 -1px 0 rgba(255, 255, 255, .07), inset 0 0 0 1px rgba(255, 255, 255, .07);
}

.panel.glass:not([data-key="intro"]) {
    background-image: linear-gradient(152deg, rgba(33, 45, 68, .42), rgba(8, 12, 22, .34)), var(--introtex);
    background-size: cover, cover;
    background-position: center, center;
}

.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .08) 27%, rgba(111, 183, 216, .16) 60%, rgba(154, 130, 240, .4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.glass::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(125deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .03) 24%, rgba(255, 255, 255, 0) 52%);
}

.panel h1 {
    font-size: 54px;
    line-height: .98;
    margin: .18em 0 .3em;
}

.panel h2 {
    font-size: 34px;
    margin: .3em 0 .5em;
}

.panel .lead {
    max-width: 54ch;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 11px 20px;
    border-radius: 30px;
    border: 1px solid var(--signal);
    color: var(--moon);
    transition: .3s;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    background: var(--signal);
    color: var(--void);
    box-shadow: 0 0 30px rgba(111, 183, 216, .5);
}

.btn--solid {
    background: linear-gradient(120deg, var(--signal), var(--violet));
    border-color: transparent;
    color: #08111c;
    font-weight: 700;
}

.btn--solid:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 36px rgba(154, 130, 240, .45);
    background: linear-gradient(120deg, var(--signal), var(--violet));
}

.btn--ghost {
    border-color: var(--line);
    color: var(--silver);
}

.btn--ghost:hover {
    border-color: var(--moon);
    color: var(--moon);
    background: transparent;
    box-shadow: none;
}

.scards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.scard {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(8, 12, 20, .4);
}

.scard__media {
    overflow: hidden;
    cursor: zoom-in;
}

.scard__media img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.scard:hover .scard__media img {
    transform: scale(1.04);
    filter: brightness(1.06);
}

.scard__body {
    padding: 18px 20px;
}

.scard__no {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--signal);
}

.scard__t {
    font-size: 21px;
    margin: .3em 0 .4em;
}

.scard__body p {
    color: var(--silver);
    font-size: 13.5px;
    margin: 0;
}

.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--silver);
}

.legend i {
    width: 11px;
    height: 11px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 50%;
}

.legend i.e {
    background: var(--signal);
    box-shadow: 0 0 8px var(--signal);
}

.legend i.h {
    background: var(--violet);
    box-shadow: 0 0 8px var(--violet);
}

.legend i.l {
    background: none;
    border: 1.6px solid var(--signal);
    border-radius: 2px;
}

.hintline {
    margin-top: 20px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dim);
}

.rooms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.room {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(8, 12, 20, .4);
    display: flex;
    flex-direction: column;
}

.room__media {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.room__media img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.room:hover .room__media img {
    transform: scale(1.04);
    filter: brightness(1.06);
}

.room__no {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    color: var(--moon);
    background: rgba(5, 7, 12, .55);
    padding: 4px 9px;
    border-radius: 18px;
}

.room__body {
    padding: 16px 18px;
    flex: 1;
}

.room__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.room__head h3 {
    font-size: 18px;
}

.room__sz {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--signal);
    font-weight: 700;
}

.room__body p {
    color: var(--silver);
    font-size: 13px;
    margin: 0;
}

.gal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.tile {
    position: relative;
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    background: rgba(8, 12, 20, .4);
    aspect-ratio: 4/3;
    display: block;
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06);
    transition: transform .5s ease, filter .3s;
}

.tile:hover img,
.tile:focus-visible img {
    transform: scale(1.06);
    filter: saturate(1.12) brightness(1.06);
}

.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(111, 183, 216, 0);
    transition: .3s;
    pointer-events: none;
}

.tile:hover::after,
.tile:focus-visible::after {
    box-shadow: inset 0 0 0 1px rgba(111, 183, 216, .5), 0 0 24px -6px rgba(111, 183, 216, .4);
}

.eng {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: center;
}

.eng__img {
    border-radius: 16px;
    overflow: hidden;
    border: 0;
    background: #0a0f1a;
}

.eng__img img {
    width: 100%;
    height: auto;
    display: block;
}

.eng h2 {
    font-size: 36px;
    margin: .2em 0 .25em;
}

.eng__name {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--signal);
}

.gear {
    columns: 3;
    column-gap: 22px;
}

.gear-cat {
    break-inside: avoid;
    margin-bottom: 11px;
}

.gear-cat__t {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--signal);
    padding-bottom: 6px;
    margin: 0 0 6px;
    border-bottom: 1px solid var(--line);
}

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

.gear-list li {
    font-size: 11.5px;
    color: var(--silver);
    padding: 2px 0;
    line-height: 1.32;
}

.proc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.proc__step {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
    background: rgba(8, 12, 20, .4);
}

.proc__n {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .2em;
    color: var(--signal);
}

.proc__t {
    font-size: 20px;
    margin: .6em 0 .45em;
}

.proc__step p {
    color: var(--silver);
    font-size: 13px;
    margin: 0;
}

.marq {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 26px;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
    mask: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
}

.marq::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42%;
    height: 170%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(111, 183, 216, .16), transparent 70%);
}

.marq__row {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marq__row--l {
    animation: marqL 32s linear infinite;
}

.marq__row--r {
    animation: marqR 38s linear infinite;
}

.marq__set {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
}

.marq__set img {
    height: 30px;
    width: auto;
    opacity: .5;
    -webkit-user-select: none;
    user-select: none;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, .25));
    transition: opacity .35s, filter .35s, transform .35s;
}

.marq__row:hover {
    animation-play-state: paused;
}

.marq__set img:hover {
    opacity: 1;
    transform: scale(1.12);
    filter: drop-shadow(0 0 12px rgba(111, 183, 216, .6));
}

@keyframes marqL {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqR {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marq__row {
        animation: none;
    }
}

.form {
    display: grid;
    gap: 14px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field-i {
    display: grid;
    gap: 6px;
}

.field-i label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--dim);
}

.field-i input,
.field-i select,
.field-i textarea {
    background: rgba(8, 12, 20, .6);
    border: 1px solid var(--line);
    color: var(--moon);
    font-family: var(--body);
    font-size: 14px;
    padding: 11px 13px;
    border-radius: 9px;
    width: 100%;
}

.field-i textarea {
    resize: vertical;
    min-height: 88px;
}

.field-i input:focus,
.field-i select:focus,
.field-i textarea:focus {
    outline: none;
    border-color: var(--signal);
    box-shadow: 0 0 0 3px rgba(111, 183, 216, .12);
}

.form .btn {
    justify-self: start;
    margin-top: 4px;
}

.cinfo {
    margin-top: 20px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--silver);
}

.cinfo a:hover {
    color: var(--signal);
}

.panel.narrow {
    padding: 22px 18px;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.panel.narrow h1 {
    font-size: 34px;
}

.panel.narrow h2 {
    font-size: 24px;
}

.panel.narrow .scards,
.panel.narrow .rooms,
.panel.narrow .proc,
.panel.narrow .frow {
    grid-template-columns: 1fr;
}

.panel.narrow .marq__set img {
    height: 22px;
}

.panel.narrow .marq__set {
    gap: 34px;
    padding-right: 34px;
}

.panel.narrow .gal,
.panel.narrow .gear {
    columns: 2;
}

.panel.narrow .eng {
    grid-template-columns: 1fr;
}

.panel.narrow .eng__img img {
    height: 200px;
}

/* Custom scrollbar for glass panels */
.panel::-webkit-scrollbar {
    width: 6px;
}

.panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.panel::-webkit-scrollbar-thumb {
    background: rgba(111, 183, 216, 0.25);
    border-radius: 3px;
}

.panel::-webkit-scrollbar-thumb:hover {
    background: rgba(111, 183, 216, 0.45);
}

.panel.narrow .lead {
    font-size: 13.5px;
}

.panel.narrow .scard__media img {
    height: 116px;
}

.panel.narrow .room__media img {
    height: 104px;
}

.panel.narrow .scard__t {
    font-size: 18px;
}

.panel.narrow .gear-list li {
    font-size: 11px;
    padding: 1.5px 0;
}

/* fixed UI */
.ui {
    position: fixed;
    z-index: 20;
    pointer-events: none;
}

.ui * {
    pointer-events: auto;
}

.nav {
    top: 0;
    left: 0;
    right: 0;
}

.nav__in {
    max-width: 1240px;
    margin: 14px auto 0;
    padding: 11px clamp(16px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 20px;
    background: var(--glass);
    backdrop-filter: blur(12px) saturate(1.25);
    -webkit-backdrop-filter: blur(12px) saturate(1.25);
    border: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.brand img {
    height: 34px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.menu a {
    font-size: 13.5px;
    color: var(--silver);
    transition: .25s;
    cursor: pointer;
}

.menu a:hover {
    color: var(--moon);
}

.burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 38px;
}

.burger span {
    display: block;
    height: 1.5px;
    background: var(--moon);
    margin: 5px 0;
}

.sidelist {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navrow {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 7px 8px;
    border-radius: 10px;
    transition: .25s;
    opacity: .5;
}

.navrow:hover {
    opacity: 1;
    background: rgba(150, 170, 200, .08);
}

.navrow.active {
    opacity: 1;
}

.navrow__n {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--dim);
    transition: .25s;
}

.navrow__l {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--silver);
    transition: .25s;
}

.navrow.active .navrow__n,
.navrow.active .navrow__l {
    color: var(--signal);
}

.navrow.active .navrow__l {
    text-shadow: 0 0 14px rgba(111, 183, 216, .5);
}

.navrow::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--signal);
    margin-right: 0;
    transition: .3s;
}

.navrow.active::before {
    width: 16px;
    margin-right: 4px;
}

.cue {
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity .6s;
}

.cue b {
    color: var(--silver);
    font-weight: 400;
}

.arrows {
    position: fixed;
    left: 50%;
    bottom: 54px;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.arrows button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: var(--moon);
    cursor: pointer;
    font-size: 15px;
    transition: .25s;
}

.arrows button:hover {
    border-color: var(--signal);
    box-shadow: 0 0 18px rgba(111, 183, 216, .35);
}

.mobile {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(5, 7, 12, .95);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 32px;
    transform: translateX(100%);
    transition: transform .4s ease;
    visibility: hidden;
    pointer-events: auto;
}

.mobile.open {
    transform: none;
    visibility: visible;
}

.mobile a {
    font-family: var(--disp);
    font-size: 28px;
    font-weight: 500;
    padding: 9px 0;
    cursor: pointer;
}

.mobile a:hover {
    color: var(--signal);
}

@media (max-width: 960px) {
    .menu a {
        display: none;
    }

    .burger {
        display: block;
    }

    .sidelist {
        display: none;
    }

    .arrows {
        bottom: 20px;
    }

    .cue {
        display: none;
    }
}

/* intro hero bg */
.introbg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-size: cover;
    background-position: center;
    opacity: .6;
}

.introbg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(118deg, rgba(5, 9, 17, .9), rgba(6, 11, 20, .5) 52%, rgba(10, 16, 30, .82));
}

.introinner {
    position: relative;
    z-index: 1;
}

/* immersive spatial */
.imm {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 26px;
    align-items: center;
    margin-top: 6px;
}

.imm__viz {
    display: flex;
    justify-content: center;
}

.spatial {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(111, 183, 216, .18));
}

.callout {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--signal);
    border-radius: 10px;
    padding: 13px 16px;
    background: rgba(8, 12, 20, .42);
    color: var(--silver);
    font-size: 13px;
    line-height: 1.5;
}

.callout__k {
    display: block;
    color: var(--signal);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* pricing */
.pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.pcard {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 17px 20px 14px;
    background: rgba(8, 12, 20, .4);
}

.pcard__t {
    font-size: 18px;
}

.psub {
    display: block;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dim);
    margin-top: 4px;
}

.prows {
    margin-top: 10px;
}

.prow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    padding: 6px 0;
    border-top: 1px solid rgba(170, 200, 235, .09);
    font-size: 12.5px;
    color: var(--silver);
}

.prow:first-child {
    border-top: 0;
}

.pp {
    font-family: var(--mono);
    color: var(--moon);
    font-weight: 700;
    white-space: nowrap;
}

.pnote {
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .05em;
    color: var(--dim);
    line-height: 1.6;
}

.panel.narrow .imm {
    grid-template-columns: 1fr;
}

.panel.narrow .pricing {
    grid-template-columns: 1fr;
}

.panel.narrow .spatial {
    max-width: 300px;
}

.panel.narrow .gal {
    grid-template-columns: repeat(2, 1fr);
}

.panel.narrow .eng__img img {
    height: auto;
}

/* lightbox */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6vh 6vw;
    background: rgba(4, 6, 11, .93);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
}

#lightbox.open {
    display: flex;
}

#lightbox img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 50px 140px rgba(0, 0, 0, .75);
    transition: opacity .3s ease, transform .34s cubic-bezier(.2, .7, .2, 1);
}

#lb-close {
    position: fixed;
    top: 22px;
    right: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--moon);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: .25s;
    z-index: 61;
}

#lb-close:hover {
    border-color: var(--signal);
    box-shadow: 0 0 20px rgba(111, 183, 216, .4);
}

/* Contact Form 7 integration overrides */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-spinner {
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.wpcf7-response-output {
    margin: 12px 0 0 0 !important;
    padding: 10px 15px !important;
    border-radius: 9px !important;
    font-size: 13.5px !important;
    border: 1px solid var(--line) !important;
    background: rgba(8, 12, 20, 0.6) !important;
    color: var(--moon) !important;
}

.wpcf7-not-valid-tip {
    font-family: var(--mono);
    font-size: 11px;
    color: #ff6b6b;
    margin-top: 4px;
}