/* prim */

:root {
    --bg-dark: #2e2e2e;
    --bg-mid: #3f3f3f;
    --bg-light: #4b4b4b;

    --accent: #4cc9f0;
    --accent-soft: rgba(76, 201, 240, 0.15);
    --text-muted: rgba(255, 255, 255, 0.75);
}

.warning_pill {
    background-color: rgba(255, 255, 0, 0.13);
    border-radius: 100vw;
    padding: 2% 10% 2% 10%;
    font-weight: bold;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    background: linear-gradient(180deg, #2b2b2b, #1f1f1f);

    color: #ffffff;
}

main {
    max-width: 1200px;
    margin: auto;
    padding: 0px 24px;
}

a {
    color: red;
    text-decoration: underline;
}

button {
        border-radius: 50vw;
    padding: 10px;
    box-shadow: #001a1f 5px 5px 11px;
    background-color: #c5ffb5;
}

input::file-selector-button {
        border-radius: 50vw;
    padding: 10px;
    box-shadow: #001a1f 5px 5px 11px;
    background-color: #c5ffb5;
}

.centered {
    text-align: center;
}

/* heros */
.hero {
    text-align: center;
    position: relative;
}

.block {
    background-color: #333333cc;
    padding: 16px;
    padding-bottom: 64px;
    border-radius: 50px;
    box-shadow: 2px 2px 1px #a5a5a536;
}

h2 {
    font-size: 26px;
    background: linear-gradient(90deg, #ffffff, var(--accent));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -40px;
    z-index: -1;
}

.hero p {
    font-size: 18px;
    opacity: 0.85;
    /* max-width: 700px; */
    max-width: 90%;
    margin: auto;
}

section {
    margin-block: 64px;
}

/* tool grids */
.tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

article.tool-card {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

article.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

article h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

article p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.5;
}

article a {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

article a:hover {
    text-decoration: underline;
}

.radial_pop {
    position: absolute;
    background: radial-gradient(circle,
            rgba(161, 76, 240, 0.12),
            transparent 60%);
    width: 80vw;
    height: 80vw;
    top: 48vh;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: -1;
}

.radial_pop_follow {
    position: fixed;
    background: radial-gradient(circle,
            rgba(76, 240, 204, 0.12),
            transparent 60%);
}

.posrel {
    position: relative;
    /* overflow: hidden; */
}

.scrolldown {
    position: absolute;
    background-color: #ffffff60;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 16px;
    transition-duration: 200ms;
    z-index: 9;
}

.scrolldown:hover {
    background-color: #ffffff00;
}

.scrolldown img {
    position: relative;
    left: 6px;
    top: 6px;
    width: 20px;
    height: 20px;
    animation: bobbing_animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0, 1.04, 1, 1);
}

@keyframes bobbing_animation {
    0% {
        top: 3px;
    }

    50% {
        top: 6.1px;
    }

    100% {
        top: 3px;
    }
}

/* elements */

.footer_if {
    width: 100%;
    border: 0;
}

.header_if {
    border: 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 56px;
    background-color: #4b4b4b8f;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition-duration: 200ms;
}

.header_if:hover {
    background-color: #4b4b4b;
}

.fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.background {
    z-index: -99999999999;
}