BareGit
:root
{
    color-scheme: dark;
    --background: #0b1210;
    --panel: #14201b;
    --border: #34493c;
    --text: #f0f4e9;
    --muted: #a4b6a9;
    --accent: #c9f767;
}

*
{
    box-sizing: border-box;
}

body
{
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 75% 12%, #244733 0, transparent 34%),
        radial-gradient(circle at 2% 55%, #182e23 0, transparent 32%),
        var(--background);
    font: 16px/1.5 Inter, system-ui, sans-serif;
}

body::before
{
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(#ffffff07 1px, transparent 1px),
        linear-gradient(90deg, #ffffff07 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    pointer-events: none;
}

a
{
    color: inherit;
}

button,
input
{
    font: inherit;
}

:focus-visible
{
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.site-shell
{
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 2000px);
    margin: 0 auto;
}

.site-header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
    border-bottom: 1px solid var(--border);
}

.brand
{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.04em;
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark
{
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font: 700 1.5rem/1 ui-monospace, monospace;
    box-shadow: 0 0 22px #c9f76724;
}

.brand-accent
{
    color: var(--accent);
}

.header-badge,
.eyebrow,
.prompt-heading,
.connection-label,
.terminal,
th
{
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.header-badge
{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 99px;
    color: var(--muted);
    font-size: .75rem;
    letter-spacing: .02em;
}

.status-dot
{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.hero
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    padding: clamp(32px, 5vw, 80px) 0;
}

.hero-content
{
    min-width: 0;
    flex-grow: 1;
}

.eyebrow
{
    margin: 0 0 22px;
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
}

h1
{
    margin: 0 0 36px;
    font-size: min(5rem, 10vw);
    font-weight: bold;
    letter-spacing: -.065em;
    line-height: 1.2;
}

h1 span,
h1 strong
{
    display: block;
}

h1 strong
{
    color: var(--accent);
    font-weight: inherit;
}

.prompt-panel
{
    position: relative;
    max-width: 670px;
    padding: 24px;
    padding-bottom: 4px;
    border: 1px solid #526b49;
    border-radius: 14px;
    background: #15221de8;
    box-shadow: 0 24px 70px #0005, inset 0 1px #ffffff12;
}

.prompt-panel::before
{
    position: absolute;
    top: -1px;
    left: 24px;
    width: 68px;
    height: 2px;
    background: var(--accent);
    content: "";
}

.prompt-heading
{
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
}

.prompt-panel label
{
    display: block;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

.agent-prompt
{
    display: flex;
    gap: 8px;
}

.agent-prompt input
{
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text);
    background: #0a120e;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: .85rem;
    text-overflow: ellipsis;
}

.agent-prompt button
{
    flex: none;
    padding: 10px 18px;
    border: 1px solid var(--accent);
    border-radius: 7px;
    color: #13210c;
    background: var(--accent);
    cursor: pointer;
    font-size: .85rem;
    font-weight: 800;
    transition: background .15s ease, transform .15s ease;
}

.agent-prompt button:hover
{
    background: #e0ff9c;
    transform: translateY(-2px);
}

#agent-prompt-status
{
    min-height: 1.5em;
    margin: 5px 0 0;
    color: var(--accent);
    font-size: .8rem;
}

.prompt-hint
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px 16px;
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .78rem;
}

.prompt-hint a
{
    color: var(--accent);
    text-underline-offset: 3px;
}

.how-it-works
{
    max-width: 670px;
    margin-top: 28px;
}

.how-it-works h2
{
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 0;
}

.how-it-works p
{
    margin: 0;
    color: var(--muted);
}

.terminal
{
    min-width: 350px;
    overflow: hidden;
    border: 1px solid #536b4d;
    border-radius: 12px;
    background: #0a110ed9;
    box-shadow: 0 28px 70px #0008, 0 0 70px #c9f7670d;
    transform: rotate(2deg);
}

.terminal-topbar,
.terminal-footer
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 17px;
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .09em;
}

.terminal-topbar
{
    border-bottom: 1px solid var(--border);
}

.terminal-lights
{
    display: flex;
    gap: 6px;
}

.terminal-lights i
{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #556b58;
}

.terminal-lights i:first-child
{
    background: var(--accent);
}

.terminal-map
{
    overflow: auto;
    margin: 0;
    padding: 28px 20px;
    color: #c4ed9f;
    font: clamp(.65rem, 1.3vw, .93rem)/1.55 ui-monospace, monospace;
    text-shadow: 0 0 16px #c9f76745;
}

.terminal-footer
{
    border-top: 1px solid var(--border);
    color: var(--accent);
    letter-spacing: 0;
}

.connection-bar
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.connection-label
{
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.connection-bar code
{
    color: var(--accent);
    font-size: .86rem;
    overflow-wrap: anywhere;
}

.connection-note
{
    margin-left: auto;
    color: var(--muted);
    font-size: .8rem;
}

.results
{
    padding: 72px 0 100px;
}

.results-heading
{
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 30px;
    margin-bottom: 26px;
}

.results-heading .eyebrow
{
    margin-bottom: 8px;
}

h2
{
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    letter-spacing: -.045em;
    line-height: 1.15;
}

.results-heading > p
{
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

.table-shell
{
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #111c17dd;
}

table
{
    width: 100%;
    min-width: 790px;
    border-collapse: collapse;
}

th,
td
{
    padding: 17px 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    white-space: nowrap;
}

th
{
    color: var(--muted);
    background: #1b2b22;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

td
{
    font-size: .87rem;
}

td:first-child
{
    color: var(--accent);
    font-weight: 700;
}

tbody tr:last-child td
{
    border-bottom: 0;
}

tbody tr:hover
{
    background: #203127;
}

@media(max-width: 900px)
{
    .hero
    {
        grid-template-columns: 1fr;
    }

    .terminal
    {
        width: min(100%, 520px);
        transform: none;
    }
}

@media(max-width: 600px)
{
    .site-shell
    {
        width: min(100% - 32px, 1280px);
    }

    .site-header
    {
        min-height: 75px;
    }

    .header-badge
    {
        display: none;
    }

    .hero
    {
        padding: 54px 0 64px;
    }

    h1
    {
        margin-bottom: 28px;
    }

    .prompt-panel
    {
        padding: 18px;
        padding-bottom: 4px;
    }

    .agent-prompt button
    {
        padding: 10px 12px;
    }

    .connection-note
    {
        width: 100%;
        margin-left: 0;
    }

    .results
    {
        padding: 58px 0 80px;
    }
}

@media(prefers-reduced-motion: reduce)
{
    .agent-prompt button
    {
        transition: none;
    }
}