@font-face {
    font-family: 'Libre Franklin';
    src: url('assets/fonts/LibreFranklin-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --pleasing-grey: #171717;
    --almost-white: #E6E6E6;
    --sleek-silver: #9A9A9A;
    --font-primary: 'Libre Franklin', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--pleasing-grey);
    color: var(--almost-white);
    font-family: var(--font-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 520px;
}

.logo-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.logo-svg {
    width: 100%;
    height: auto;
    display: block;
}

.logo-base {
    fill: #262626;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1px;
}

.logo-shimmer-stroke {
    position: absolute;
    top: 0;
    left: 0;
    fill: none !important;
    stroke: #ffffff;
    stroke-width: 0.5px;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(135deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.02) 43%,
            rgba(255, 255, 255, 0.18) 47%,
            rgba(255, 255, 255, 0.45) 49.5%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0.45) 50.5%,
            rgba(255, 255, 255, 0.18) 53%,
            rgba(255, 255, 255, 0.02) 57%,
            rgba(255, 255, 255, 0) 70%);
    mask-image: linear-gradient(135deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.02) 43%,
            rgba(255, 255, 255, 0.18) 47%,
            rgba(255, 255, 255, 0.45) 49.5%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0.45) 50.5%,
            rgba(255, 255, 255, 0.18) 53%,
            rgba(255, 255, 255, 0.02) 57%,
            rgba(255, 255, 255, 0) 70%);
    -webkit-mask-size: 300% 100%;
    mask-size: 300% 100%;
    animation: slow-shimmer 22s infinite cubic-bezier(0.33, 0, 0.67, 1);
}

@keyframes slow-shimmer {
    0% {
        -webkit-mask-position: 150% 0;
        mask-position: 150% 0;
    }
    5% {
        -webkit-mask-position: 150% 0;
        mask-position: 150% 0;
    }
    100% {
        -webkit-mask-position: -150% 0;
        mask-position: -150% 0;
    }
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    color: var(--sleek-silver);
    opacity: 0.85;
}
