.elementor-5091 .elementor-element.elementor-element-f8f43bb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e81cea0 */:root {
    --bg: #060912;
    --ink: #e8f4ff;
    --ink-2: #a8c4e0;
    --ink-dim: #5a7aa8;
    --line: #142142;
    --line-2: #1e2e52;
    --accent: #1e6fff;
    --pad: clamp(22px, 4vw, 60px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    font-family: 'Inter Tight', sans-serif;
}

/* Header */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 22px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(18px);
    background: rgba(10, 10, 12, 0.85);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
}

.brand-mark {
    width: 42px;
    height: 42px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    line-height: 1.1;
}

.brand-name small {
    display: block;
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    padding: 10px 20px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.nav-cta:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 880px) {
    .nav-links {
        display: none;
    }
}/* End custom CSS */