:root {
    --bg: #09100d;
    --panel: #101915;
    --panel2: #14201a;
    --text: #f3f5f4;
    --muted: #8d9c94;
    --accent: #a9ff3f;
    --line: #26332c;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 75% 0%, #173022 0, transparent 32%),
        var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, sans-serif;
}

header {
    height: 86px;
    padding: 0 6vw;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    gap: 13px;
    align-items: center;
    letter-spacing: .12em;
}

.brand strong,
.brand span {
    display: block;
}

.brand span {
    color: var(--muted);
    font-size: 10px;
}

.ball {
    color: var(--accent);
    font-size: 34px;
    transform: rotate(-25deg);
}

nav {
    color: var(--muted);
    font-size: 13px;
}

main {
    max-width: 1450px;
    margin: auto;
    padding: 0 6vw 100px;
}

.hero {
    padding: 110px 0 95px;
    max-width: 1000px;
}

.eyebrow {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: .22em;
    font-weight: 800;
}

h1 {
    margin: 18px 0;
    font-size: clamp(58px, 8vw, 112px);
    line-height: .89;
    letter-spacing: -.065em;
}

h1 span {
    color: var(--accent);
}

.hero p {
    color: var(--muted);
    max-width: 620px;
    font-size: 18px;
    line-height: 1.6;
}

.search {
    margin-top: 42px;
    height: 70px;
    max-width: 820px;
    border: 1px solid #34463c;
    background: rgba(16,25,21,.85);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 18px;
}

.search span {
    font-size: 28px;
    color: var(--accent);
}

.search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
    font-size: 16px;
}

.search input::placeholder {
    color: #69786f;
}

kbd {
    border: 1px solid var(--line);
    padding: 7px 9px;
    color: var(--muted);
    background: #0b120e;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

h2 {
    font-size: 38px;
    margin: 8px 0 0;
}

.status {
    color: var(--accent);
    font-size: 12px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.card {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(16,25,21,.72);
    transition: .2s ease;
}

.card:hover {
    background: var(--panel2);
    transform: translateY(-3px);
}

.card-top {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 11px;
}

.arrow {
    color: var(--accent);
    font-size: 18px;
}

.card h3 {
    margin-top: 52px;
    margin-bottom: 10px;
    font-size: 21px;
}

.card p {
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
    min-height: 64px;
}

.card-footer {
    color: var(--accent);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: .14em;
    margin-top: 25px;
}

footer {
    border-top: 1px solid var(--line);
    padding: 35px 6vw;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .12em;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    nav {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .status {
        display: none;
    }
}
