:root {
    --fps-brand: #0f172a;
    --fps-accent: #0ea5a4;
    --fps-muted: #64748b;
    --fps-soft: #f8fafc;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

.site-logo {
    height: 34px;
    width: auto;
    display: block;
}

.btn-brand {
    background: var(--fps-brand);
    border-color: var(--fps-brand);
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.badge-soft {
    background: #e2f7f6;
    color: var(--fps-brand);
}

.chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .45rem .8rem;
    background: #eef2ff;
    color: var(--fps-brand);
    font-size: .9rem;
}

.chip-subtle {
    background: #f1f5f9;
}

.hero-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef7f7 100%);
}

.hero-card,
.info-tile,
.listing-card {
    transition: transform .15s ease, box-shadow .15s ease;
}

.listing-card:hover {
    transform: translateY(-2px);
}

.feature-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: .75rem;
}

.feature-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--fps-accent);
    font-weight: 700;
}

.form-error {
    color: #b91c1c;
    font-size: .875rem;
    margin-top: .35rem;
}

.search-panel {
    position: relative;
}

.suggestions-panel {
    position: absolute;
    inset: auto 0 auto 0;
    top: calc(100% + .35rem);
    z-index: 30;
    display: none;
    background: #fff;
    border: 1px solid #dbe4ee;
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
    overflow: hidden;
}

.suggestions-panel.is-open {
    display: block;
}

.suggestion-item {
    width: 100%;
    border: 0;
    background: transparent;
    padding: .85rem 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.suggestion-item:hover,
.suggestion-item:focus {
    background: #f8fafc;
}

.suggestion-item span {
    color: #64748b;
    font-size: .85rem;
}
