/* Minimal polish */
.btn-primary { background: var(--brand); border-color: var(--brand); }
.btn-primary:hover { filter: brightness(0.95); }
.nav-link.active { color: var(--brand) !important; font-weight: 600; }
.card { border-radius: 1rem; }


/* Hero */
.hero-soft {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #eef2f7;
}
/* Screenshot card with a subtle device frame */
.shot-card {
    border-radius: 20px;
    border: 1px solid #eef2f7;
    background: #fff;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: zoom-in;
}
.shot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(2, 6, 23, 0.12);
}
.device-frame {
    background: #0b0c0f;
    padding: 18px 14px;
    border-radius: 28px;
    position: relative;
    margin: 14px;
}
.device-notch1 {
    position: absolute; top: 14px; left: 50%;
    width: 120px; height: 18px;
    transform: translateX(-50%);
    background: #0b0c0f; border-radius: 10px;
}
.device-screen img {
    width: 100%; height: auto; border-radius: 18px;
    display: block;
}
/* “How it works” look */
.how-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.05);
    height: 100%;
}
.how-num {
    font-weight: 800; color: #2563EB; font-size: 42px; line-height: 1;
}
.chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .7rem; border: 1px solid #e5e7eb;
    border-radius: 999px; background: #fff; font-size: .9rem;
}
