﻿/* Simple, clean landing styles for the API page */
:root {
    --bg: #0f1724;
    --card: #0b1220;
    --accent: #5eead4;
    --muted: #94a3b8;
    --glass: rgba(255,255,255,0.03);
    --radius: 12px;
    --max-width: 880px;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
    background: linear-gradient(180deg,#071029 0%, #0b1220 60%);
    color: #e6eef8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
}

/* Header / hero */
.hero {
    width: 100%;
    max-width: var(--max-width);
    background: var(--glass);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(2,6,23,0.6);
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.03);
}

.logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

h1 {
    margin: 6px 0 8px;
    font-size: 1.8rem
}

.lead {
    margin: 0 0 16px;
    color: var(--muted)
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #06202a;
    background: var(--accent);
    font-weight: 600;
    transition: transform .12s ease, box-shadow .12s ease;
    box-shadow: 0 6px 12px rgba(94,234,212,0.12);
}

    .btn:hover {
        transform: translateY(-3px)
    }

    .btn.ghost {
        background: transparent;
        color: var(--accent);
        border: 1px solid rgba(94,234,212,0.12);
        box-shadow: none;
    }

/* Main content */
.container {
    width: 100%;
    max-width: var(--max-width);
    display: grid;
    gap: 18px
}

.overview, .notes {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.02);
}

    .overview ul {
        margin: 8px 0 0;
        padding-left: 20px;
        color: var(--muted)
    }

    .overview code {
        background: rgba(255,255,255,0.03);
        padding: 2px 6px;
        border-radius: 6px;
        font-family: monospace;
        color: #cfeef6
    }

.site-footer {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.9rem
}

@media (max-width:560px) {
    .hero {
        padding: 18px
    }

    .btn {
        padding: 9px 12px;
        font-size: 0.95rem
    }
}
