* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #020617;
    color: #e5e7eb;
}
a {
    color: #a5b4fc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.header {
    border-bottom: 1px solid #111827;
    background: #020617;
}
.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-img {
    height: 32px;
    width: auto;
}
.logo-text {
    font-weight: 700;
    letter-spacing: 0.02em;
}
nav a {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}
h1, h2, h3 {
    color: #f9fafb;
}
.badge {
    display: inline-flex;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #4f46e5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: none;
    background: #4f46e5;
    color: #f9fafb;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background: #6366f1;
}
.alert {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: #7f1d1d;
    color: #fee2e2;
    font-size: 0.9rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.card {
    background: #020617;
    border-radius: 0.75rem;
    border: 1px solid #1f2937;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(15,23,42,0.5);
}
.card h3 {
    margin-top: 0;
}
.price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(90deg, #f97316, #facc15);
    color: #020617;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.filter-bar-copy {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    max-width: 900px;
}
.filter-bar-copy h2 {
    margin-bottom: 0.35rem;
}
.filter-bar-copy p {
    font-size: 0.95rem;
    color: #9ca3af;
}

.filter-bar {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.filter-bar select {
    width: auto;
    min-width: 180px;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #374151;
    background: #020617;
    color: #e5e7eb;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.table th,
.table td {
    padding: 0.5rem 0.4rem;
    border-bottom: 1px solid #111827;
}
.table th {
    text-align: left;
    font-weight: 600;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    border-top: 1px solid #1f2937;
    padding: 1rem 1rem 1.5rem;
    background: #020617;
    margin-top: 2rem;
}
.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #9ca3af;
}
.footer-links a {
    margin-left: 0.75rem;
    font-size: 0.85rem;
}
.footer-brand {
    font-weight: 500;
}

label input,
label textarea {
    margin-top: 0.25rem;
    padding: 0.4rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #374151;
    background: #020617;
    color: #e5e7eb;
}
textarea {
    resize: vertical;
}
