.roboto-mono-paragraph {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.fira-code-headings {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html,body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Roboto Mono", monospace;
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(1200px 600px at 50% -200px, #1f2937, #020617);
    color: #e5e7eb;
}

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 0 28px;
    height: 56px;

    background:linear-gradient(180deg,rgba(30, 41, 59, 0.85),rgba(15, 23, 42, 0.85));
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar a {
    color: #e5e7eb;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
}

.navbar a:hover {
    background: rgba(255,255,255,0.08);
}

section {
    min-height: 100vh;
    padding: 120px 8vw 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.heading {
    font-family: "Fira Code", monospace;
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 600;
    margin: 0;
}

.tagline {
    color: #9ca3af;
    font-size: 1.1rem;
}

.checkapps {
    width: fit-content;
    background: #38bdf8;
    color: #020617;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.checkapps:hover {
    background: #0ea5e9;
}


.appscont {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
}

.appscont a {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    height: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.06);

    text-decoration: none;
    color: #e5e7eb;
    text-align: center;
}

.appscont a:hover {
    transform: translateY(-4px);
    background: rgba(30, 41, 59, 0.9);
    transition: 0.3s ease-in-out transform, background;
}


.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 6vw 16px;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.footer-section h2 {
    font-family: "Fira Code", monospace;
    font-size: 1rem;
    margin-bottom: 6px;
}

.footer-section p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-section a {
    text-decoration: none;
    font-size: 0.85rem;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-section a {
    color: #38bdf8;
}

.footer-section a:hover {
    color: #0ea5e9;
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}
