/* Base and Reset */
html, body, h1, h2, h3, h4, h5, h6, p {
    font-family: 'Funnel Display', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

body {
    background: black;
    overflow-x: hidden;
}

img{
    pointer-events: none;
    user-select: none;
}

/* Top Bar */
#topbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
    padding: 1rem 2%;
    gap: 1rem;
    z-index: 10;
}
a{color:white;
    text-decoration: none;}

.ti {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 5.5rem;
    aspect-ratio: 1;
    background-image: url("black_corrected_icons.png");
    background-size: cover;
}

.tii {
    width: 2rem;
    height: 2rem;
}

/* Hero Section */
.lp1 {
    width: 100%;
    min-height: 45.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.groupedowls {
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.2),
        rgba(0, 0, 0, 0.3)
    );
    user-select: none;
    pointer-events: none;
}
.docs-link{
    color: white;
    font-size: large;
    text-decoration: none;
    background-attachment: fixed;
    background-size:10rem;
    width: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.3rem;
    border-width: 1px;
    border-color: rgba(255,255,255,0.1);
    border-style: solid;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.docs-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
    transition: all 0.25s ease;
    cursor: pointer;
}
#f{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
    flex-direction: column;
    gap: 1rem;
}
.lp2 {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5rem;
    gap: 1rem;
    color: white;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.3),
        0 0 55px rgba(255, 255, 255, 0.2);
}

.lp3 {
    font-size: 5rem;
    user-select: text;
}

.lp4 {
    width: 50%;
    text-align: center;
    font-size: 1.25rem;
}

/* Feature Sections */
section {
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12%;
    flex-wrap: wrap;
}

.frame {
    width: 40%;
    color: white;
}

.frame-h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.frame-p {
    font-size: 1.125rem;
    line-height: 1.6;
}

#speedsvg {
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin-top: 2rem;
}

*::selection {
    background-color: rgba(30, 143, 255, 0.415);
    border-radius: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .lp4 {
        width: 70%;
    }
    .frame {
        width: 60%;
    }
    section {
        gap: 4rem;
    }
    h1{
        width: 70%;
    }
}

@media (max-width: 768px) {
    .lp3 {
        font-size: 3rem;
    }
    .lp4 {
        width: 85%;
        font-size: 1rem;
    }
    .frame {
        width: 90%;
    }
    section {
        flex-direction: column;
        gap: 2rem;
    }
    .frame-h1 {
        font-size: 1.5rem;
    }
    .frame-p {
        font-size: 1rem;
    }
    #speedsvg {
        max-width: 80%;
    }
    .lp1 {
        min-height: auto;
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .lp3 {
        font-size: 2.5rem;
    }
    .frame-h1 {
        font-size: 1.25rem;
    }
    .frame-p {
        font-size: 0.9rem;
    }
    .tii {
        width: 1.8rem;
        height: 1.8rem;
    }
}
