@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --nav-height: 68px;
    color-scheme: dark;
    font-family: "DM Sans", sans-serif;
}

body {
    padding: 0;
    margin: 0;
    background: rgb(0, 0, 0);
    background-size: cover;
    color: white;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
}

#maincontent {
    padding: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h3 {
    opacity: 75%;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    box-sizing: border-box;
    height: var(--nav-height);
}

.site-nav::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.12'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/assets/hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* pull hero up so it sits behind the navbar */
    margin-top: calc(var(--nav-height) * -1);
    padding-top: calc(var(--nav-height) + 1rem);
}

.sidekick {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 1rem 1rem 1rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 1rem;
}

.hero-wordmark {
    max-width: 36%;
    height: auto;
    display: block;
}

.hero-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-icon {
    max-width: 120px;
    width: 100%;
    height: auto;
}

@media (max-width: 920px) {
    .hero-wordmark {
        max-width: 56%;
    }
}

@media (max-width: 480px) {
    .hero-wordmark {
        max-width: 78%;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 280px;
    gap: 1rem;
    position: relative;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-link img {
    max-height: 2.6rem;
    width: auto;
    display: block;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.nav-toggle i {
    font-size: 1.35rem;
    line-height: 1;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    color: white;
    padding: 0.95rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    text-decoration: underline;
    transform: translateY(-1px);
}

.nav-links a.active {
    font-weight: 800;
}

.notxt {
    padding: 0;
}

body.nav-open .nav-toggle i {
    transform: scale(0.98);
}

@media (max-width: 920px) {
    .site-nav {
        flex-wrap: wrap;
        padding: 0.85rem 1rem;
    }

    .nav-toggle {
        display: flex;
        position: fixed;
        right: 12px;
        top: 12px;
        z-index: 60;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        display: none;
        margin-top: 0.75rem;
        padding: 0.25rem 0;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 18px;
        border: none;
        backdrop-filter: blur(12px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li:not(:last-child) a {
        border-bottom: none;
    }

    .nav-links a {
        width: 100%;
        padding: 0.9rem 1rem;
        text-align: left;
    }
}

@media (max-width: 620px) {
    .site-nav {
        padding: 0.75rem 0.85rem;
    }

    .nav-links a {
        font-size: 0.97rem;
    }
}

.hero-icon {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 50%;
}

.thintxt {
    font-weight: 300;
    letter-spacing: 0.03em;
}

b {
    font-weight: 600;
}

.h0 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.h-1 {
    font-size: 2.75rem;
    line-height: 1.5;
}

.h-2 {
    font-size: 3rem;
    line-height: 1.3;
}

.pl {
    padding: 0;
}

.pl li {
    list-style: none;
    padding: 0;
    margin-bottom: 0.7rem;
}
.pl li a {
    display: block;
    padding: 0.95rem 1rem;
    background: rgba(0, 0, 0, 0.40);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.usrbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0.5rem;
    margin: 0;
    box-sizing: border-box;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}
.usrbtn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}