/* CheckThisBiz design system — matched to the mascot logo:
   navy outlines, flag red, sky blue, heavy rounded lettering, sticker-style shapes. */
:root {
  --ink: #001337;          /* logo outline navy */
  --ink-2: #26365C;
  --muted: #5C6A88;
  --line: #D8DEEB;
  --bg: #F7F5EF;           /* warm paper, keeps white cards popping */
  --card: #FFFFFF;
  --brand: #1A7FE8;        /* "This" blue */
  --brand-dk: #0B5CC5;     /* readable blue for text/links */
  --brand-lt: #E4F1FF;
  --sky: #1E9AF4;          /* brightest wordmark blue */
  --red-brand: #FD2E3F;    /* "Biz" red */
  --red-cta: #E3192C;      /* deeper red so white text passes contrast */
  --blue: #1A7FE8;
  --amber: #B7791F;
  --amber-lt: #FFF3DC;
  --red: #C8102E;
  --red-lt: #FFE8EA;
  --radius: 16px;
  --radius-sm: 11px;
  --stroke: 2px solid var(--ink);
  --pop: 4px 4px 0 var(--ink);
  --pop-sm: 3px 3px 0 var(--ink);
  --shadow: 0 1px 0 rgba(0, 19, 55, .04), 0 6px 20px rgba(0, 19, 55, .06);
  --shadow-lg: 0 14px 40px rgba(0, 19, 55, .16);
  --font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Lilita One", "Nunito", system-ui, sans-serif;
  --topbar: 72px;
  --stripes: repeating-linear-gradient(0deg, var(--red-brand) 0 6px, #fff 6px 12px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font: 500 16px/1.6 var(--font); color: var(--ink); background: var(--bg); }
img { max-width: 100%; height: auto; }
a { color: var(--brand-dk); text-decoration: none; font-weight: 700; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; margin: 0 0 .5em; letter-spacing: .005em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
b, strong { font-weight: 800; }
.small { font-size: .88rem; }
.muted { color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: .45rem; font: 800 .74rem var(--font); text-transform: uppercase; letter-spacing: .16em; color: var(--red-cta); margin: 0 0 .5rem; }
.eyebrow::before { content: "★"; font-size: .9em; letter-spacing: 0; }
.wrap { max-width: 1200px; margin: 0 auto; padding-inline: 20px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: #fff; padding: 8px 12px; border-radius: 8px; }
.ico { flex: none; vertical-align: middle; }
.hp { position: absolute !important; left: -9999px !important; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.stripe-rule { height: 12px; background: var(--stripes); border-block: 2px solid var(--ink); }

/* Buttons & inputs: sticker style, navy outline + hard offset shadow */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border: var(--stroke); background: var(--red-cta); color: #fff; font: 800 .97rem/1 var(--font); letter-spacing: .01em; padding: .8rem 1.2rem; border-radius: 999px; cursor: pointer; text-decoration: none !important; box-shadow: var(--pop-sm); transition: transform .12s, box-shadow .12s, background .12s; white-space: nowrap; }
.btn:hover { transform: translate(-1px, -1px); box-shadow: var(--pop); background: #CC0F22; }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn-ghost { background: #fff; color: var(--ink); }
.btn-ghost:hover { background: var(--brand-lt); }
.btn-dark { background: var(--brand); }
.btn-dark:hover { background: var(--brand-dk); }
.btn-sm { padding: .55rem .95rem; font-size: .86rem; box-shadow: 2px 2px 0 var(--ink); }
.btn-sm:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }
input, textarea, select { font: 600 1rem var(--font); color: inherit; width: 100%; padding: .78rem .95rem; border: var(--stroke); border-radius: var(--radius-sm); background: #fff; }
input::placeholder, textarea::placeholder { color: #8A95AE; font-weight: 600; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(30, 154, 244, .22); }
label { font-weight: 800; font-size: .9rem; display: block; margin-bottom: .3rem; }
.stack > * + * { margin-top: .75rem; }
.row { display: flex; gap: .5rem; }
.form-msg:empty { display: none; }
.form-msg.ok { color: var(--brand-dk); font-weight: 700; }
.form-msg.err { color: var(--red); font-weight: 700; }

/* Top bar */
.topbar { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: #fff; border-bottom: var(--stroke); }
.topbar::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 6px; background: repeating-linear-gradient(90deg, var(--red-brand) 0 18px, #fff 18px 36px); border-bottom: 2px solid var(--ink); }
.topbar-in { display: flex; align-items: center; gap: 1.4rem; height: var(--topbar); }
.brand { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink); text-decoration: none !important; flex: none; }
.brand-logo { display: block; height: 62px; width: auto; }
.brand-mark { width: 30px; height: 30px; }
.brand-word { font: 400 1.5rem var(--display); letter-spacing: .01em; color: var(--ink); }
.brand-word b { font-weight: 400; color: var(--sky); }
.brand-word i { font-style: normal; color: var(--red-brand); }
.topsearch { flex: 1; max-width: 440px; display: flex; background: #fff; border: var(--stroke); border-radius: 999px; overflow: hidden; }
.topsearch input { border: 0; background: transparent; padding: .6rem 1rem; }
.topsearch input:focus { box-shadow: none; }
.topsearch button { border: 0; background: var(--brand); color: #fff; padding: 0 1rem; cursor: pointer; border-left: var(--stroke); }
.topnav { display: flex; align-items: center; gap: 1.2rem; margin-left: auto; }
.topnav a:not(.btn) { color: var(--ink); font-weight: 800; font-size: .95rem; }
.menu-btn { display: none; margin-left: auto; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }

/* Cards, chips, pills */
.card, .panel { background: var(--card); border: var(--stroke); border-radius: var(--radius); box-shadow: var(--pop); }
.panel { padding: 1.5rem 1.6rem; }
.panel + .panel { margin-top: 1.4rem; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.panel-head h2 { margin: 0; }
.panel-head-right { display: flex; align-items: center; gap: .8rem; }
.panel-foot { margin: 1rem 0 0; }
.card { position: relative; padding: 1.15rem 1.2rem; transition: transform .12s, box-shadow .12s; }
.card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.card-link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.card h3 { margin: .5rem 0 .2rem; }
.card-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.biz-card-top { display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.biz-card-foot { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-top: .6rem; flex-wrap: wrap; }
.cat-chip { display: inline-block; font-size: .76rem; font-weight: 800; color: var(--ink); background: var(--brand-lt); border: 1.5px solid var(--ink); border-radius: 999px; padding: .15rem .6rem; position: relative; z-index: 2; }
a.cat-chip:hover { text-decoration: none; background: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.pill { display: inline-flex; align-items: center; gap: .25rem; font-size: .74rem; font-weight: 800; border-radius: 999px; padding: .18rem .6rem; border: 1.5px solid currentColor; }
.pill-verified { background: var(--brand-lt); color: var(--brand-dk); }
.pill-closed { background: var(--red-lt); color: var(--red); }
.pill-sponsored { background: #FFF6DB; color: #8A5A00; }
.signal { display: inline-flex; align-items: center; gap: .35rem; font-size: .82rem; font-weight: 800; }
.signal .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px currentColor; }
.signal-strong { color: var(--brand-dk); }
.signal-good { color: #2A86E8; }
.signal-some { color: var(--amber); }
.signal-few { color: var(--muted); }

/* Crumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: .45rem; padding: 1.5rem 0 .3rem; color: var(--muted); font-weight: 700; }
.crumbs a { color: var(--muted); font-weight: 700; }

/* Home hero: paper background, wordmark-colored headline, mascot, flag stripes at the base */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(circle at 88% 12%, rgba(30, 154, 244, .16), transparent 42%),
    radial-gradient(circle at 8% 90%, rgba(253, 46, 63, .10), transparent 40%),
    var(--bg);
  padding: clamp(2.6rem, 6vw, 4.6rem) 0 clamp(3.6rem, 7vw, 5.2rem); border-bottom: var(--stroke); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 18px; background: repeating-linear-gradient(90deg, var(--red-brand) 0 30px, #fff 30px 60px); border-top: 2px solid var(--ink); }
.hero .stars-bg { position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: radial-gradient(var(--line) 1.4px, transparent 1.6px); background-size: 26px 26px; mask-image: linear-gradient(to bottom, #000, transparent 75%); }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1; max-width: 13ch; margin-bottom: .3em; }
.hero h1 .w-blue { color: var(--sky); }
.hero h1 .w-red { color: var(--red-brand); }
.hero h1 em { font-style: normal; position: relative; color: var(--red-brand); }
.hero h1 em::after { content: ""; position: absolute; left: 2%; right: 2%; bottom: .02em; height: .12em; background: var(--ink); border-radius: 3px; transform: rotate(-1.5deg); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-2); max-width: 54ch; font-weight: 600; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-mascot-peek { position: absolute; z-index: 3; width: 210px; height: auto; left: -96px; top: -118px; filter: drop-shadow(4px 6px 0 rgba(0, 19, 55, .14)); animation: bob 5s ease-in-out infinite; pointer-events: none; }
.hero-art .hero-demo { margin-top: 70px; }
@keyframes bob { 50% { transform: translateY(-8px) rotate(-1deg); } }
.bigsearch { display: flex; background: #fff; border: 2.5px solid var(--ink); border-radius: 18px; padding: 6px; box-shadow: 6px 6px 0 var(--ink); margin-top: 1.6rem; max-width: 660px; }
.bigsearch input { border: 0; font-size: 1.06rem; padding: .9rem 1rem; }
.bigsearch input:focus { box-shadow: none; }
.bigsearch input + input { border-left: 2px dashed var(--line); border-radius: 0; max-width: 38%; }
.bigsearch .btn { border-radius: 13px; box-shadow: none; }
.bigsearch .btn:hover { transform: none; }
.hero-hints { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; margin-top: 1.1rem; font-size: .88rem; color: var(--muted); font-weight: 700; }
.hero-hints a { color: var(--ink); background: #fff; border: 1.5px solid var(--ink); padding: .28rem .75rem; border-radius: 999px; box-shadow: 2px 2px 0 var(--ink); }
.hero-hints a:hover { background: var(--brand-lt); text-decoration: none; }
.hero-demo { background: #fff; color: var(--ink); border: 2.5px solid var(--ink); border-radius: 20px; padding: 1.3rem 1.3rem 1.1rem; box-shadow: 8px 8px 0 var(--ink); transform: rotate(1.5deg); }
.hero-demo .sig { padding: .5rem 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin-top: 2.4rem; }
.stat { background: #fff; border: 2px solid var(--ink); border-radius: 14px; padding: .7rem .85rem; box-shadow: 3px 3px 0 var(--ink); }
.stat b { display: block; font: 400 clamp(1.3rem, 2.6vw, 1.75rem) var(--display); color: var(--ink); }
.stat:nth-child(1) b { color: var(--brand-dk); }
.stat:nth-child(2) b { color: var(--red-cta); }
.stat span { color: var(--muted); font-size: .8rem; font-weight: 700; }

.section { padding: clamp(2.8rem, 6vw, 4.8rem) 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 0; }
.section-alt { background: #fff; border-block: var(--stroke); }

.cat-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.cat-tile { display: flex; align-items: center; gap: .8rem; padding: 1rem; background: #fff; border: var(--stroke); border-radius: var(--radius); color: var(--ink); font-weight: 800; box-shadow: var(--pop-sm); transition: transform .12s, box-shadow .12s; }
.cat-tile:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); text-decoration: none; }
.cat-tile .ico-wrap { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-lt); color: var(--brand-dk); border: 2px solid var(--ink); display: grid; place-items: center; flex: none; }
.cat-tile:nth-child(3n+2) .ico-wrap { background: var(--red-lt); color: var(--red-cta); }
.cat-tile:nth-child(3n) .ico-wrap { background: #FFF3DC; color: #A36400; }
.cat-tile small { display: block; color: var(--muted); font-weight: 700; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; counter-reset: s; }
.step { padding: 1.5rem; background: #fff; border: var(--stroke); border-radius: var(--radius); box-shadow: var(--pop); }
.step::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red-cta); color: #fff; border: 2px solid var(--ink); font: 400 1.35rem var(--display); margin-bottom: .9rem; box-shadow: 2px 2px 0 var(--ink); }
.step:nth-child(2)::before { background: var(--brand); }
.step:nth-child(3)::before { background: #fff; color: var(--ink); }

.link-cols { columns: 4 200px; column-gap: 2rem; }
.link-cols a { display: block; padding: .3rem 0; color: var(--ink); break-inside: avoid; }
.link-cols a small { color: var(--muted); font-weight: 700; }

.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.cta-card { border-radius: 22px; padding: 2rem; color: #fff; background: var(--ink); position: relative; overflow: hidden; border: 2.5px solid var(--ink); box-shadow: 6px 6px 0 rgba(0, 19, 55, .25); }
.cta-card::before { content: "★ ★ ★"; position: absolute; right: 1.2rem; top: 1rem; letter-spacing: .3em; color: rgba(255, 255, 255, .22); font-size: 1.2rem; }
.cta-card.alt { background: var(--brand); }
.cta-card h3 { font-size: 1.8rem; color: #fff; }
.cta-card p { color: rgba(255, 255, 255, .9); font-weight: 600; }
.cta-card .eyebrow { color: #fff; }
.cta-card .btn { background: #fff; color: var(--ink); }

/* Profile */
.biz-photo { position: relative; margin-top: 1.2rem; border-radius: var(--radius); overflow: hidden; background: var(--bg); max-height: 340px; border: var(--stroke); box-shadow: var(--pop); }
.biz-photo img { width: 100%; height: 340px; object-fit: cover; display: block; }
.biz-photo-src { position: absolute; right: 10px; bottom: 10px; background: rgba(0, 19, 55, .75); color: #fff; font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; }
@media (max-width: 760px) { .biz-photo, .biz-photo img { height: 200px; max-height: 200px; } }
.biz-hero { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: .8rem 20px 1.8rem; }
.biz-hero h1 { margin-bottom: .3rem; }
.biz-addr { display: flex; align-items: center; gap: .4rem; color: var(--ink-2); margin-bottom: 1.1rem; font-weight: 700; }
.biz-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.scorecard { display: flex; align-items: center; gap: 1.1rem; background: #fff; border: 2.5px solid var(--ink); border-radius: 20px; padding: 1rem 1.3rem; box-shadow: 6px 6px 0 var(--ink); max-width: 390px; }
.score-ring { position: relative; width: 108px; height: 108px; flex: none; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: #EDF1F8; stroke-width: 12; }
.ring-fg { fill: none; stroke: var(--brand); stroke-width: 12; stroke-linecap: round; transition: stroke-dasharray .8s ease; }
.scorecard-good .ring-fg { stroke: var(--sky); }
.scorecard-some .ring-fg { stroke: #F0A32C; }
.scorecard-few .ring-fg { stroke: #A3AEC6; }
.score-num { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; font: 400 2.2rem/1 var(--display); }
.score-num small { font: 800 .72rem var(--font); color: var(--muted); }
.score-band { font: 400 1.4rem var(--display); margin: 0 0 .2rem; }
.biz-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 1.6rem; align-items: start; padding-bottom: 3rem; }
.biz-side { position: sticky; top: calc(var(--topbar) + 24px); }
.biz-side .panel + .panel { margin-top: 1.3rem; }
.signals { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.sig { display: flex; gap: .85rem; align-items: flex-start; padding: .8rem 0; border-top: 1.5px dashed var(--line); }
.sig:first-child { border-top: 0; }
.sig strong { font-size: .98rem; }
.sig > div { min-width: 0; overflow-wrap: anywhere; }
.sig p { margin: .1rem 0 0; color: var(--ink-2); font-size: .92rem; font-weight: 600; }
.sig-ico { width: 28px; height: 28px; border-radius: 50%; flex: none; display: grid; place-items: center; margin-top: 1px; background-repeat: no-repeat; background-position: center; background-size: 15px; border: 2px solid var(--ink); }
.sig-pass .sig-ico { background-color: var(--brand); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); }
.sig-info .sig-ico { background-color: #EEF2F8; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001337' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 11v6M12 7h.01'/%3E%3C/svg%3E"); }
.sig-warn .sig-ico { background-color: #FFD27A; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001337' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 7v6M12 17h.01'/%3E%3C/svg%3E"); }
.sig-fail .sig-ico { background-color: var(--red-brand); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E"); }
.sig-pending .sig-ico { background-color: #fff; border: 2px dashed #9AA6C0; }
.sig-running .sig-ico { border: 3px solid var(--brand-lt); border-top-color: var(--red-brand); animation: spin .8s linear infinite; background: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem 1.4rem; margin: 1rem 0 0; }
.facts dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--red-cta); font-weight: 800; }
.facts dd { margin: .15rem 0 0; word-break: break-word; font-weight: 700; }
.socials a { margin-right: .7rem; }
.minimap { height: 280px; border-radius: 12px; overflow: hidden; background: #E8EDF5; border: var(--stroke); }
.claim-cta { background: var(--ink); color: #fff; box-shadow: 6px 6px 0 var(--red-brand); }
.claim-cta h3 { color: #fff; }
.claim-cta p { color: #D3DBEC; }
.chronicle-cta { background: #FBF8F1; }
.chronicle-cta h3 { font-family: "Fraunces", Georgia, serif; font-size: 1.3rem; font-weight: 700; }
.chronicle-cta .eyebrow { color: #A4161A; }
.chronicle-cta .eyebrow::before { content: none; }
.tips { padding-left: 1.1rem; margin: 0; font-weight: 600; }
.tips li + li { margin-top: .45rem; }
.tips li::marker { color: var(--red-cta); }
.report-link { text-align: center; margin-top: 1.1rem; }

/* Listing / directory pages */
.page-hero { padding: .6rem 0 1.8rem; }
.page-hero p.lead { font-size: 1.1rem; color: var(--ink-2); max-width: 70ch; font-weight: 600; }
.layout-2 { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 1.8rem; align-items: start; padding-bottom: 3rem; }
.filters { position: sticky; top: calc(var(--topbar) + 24px); }
.filters h3 { font: 800 .76rem var(--font); text-transform: uppercase; letter-spacing: .14em; color: var(--red-cta); margin-top: 1.1rem; }
.filters a { display: flex; justify-content: space-between; padding: .35rem .6rem; margin: 0 -.6rem; border-radius: 9px; color: var(--ink); font-size: .94rem; font-weight: 700; border: 1.5px solid transparent; }
.filters a:hover { background: #fff; text-decoration: none; border-color: var(--line); }
.filters a.on { background: var(--brand); color: #fff; border-color: var(--ink); }
.filters a.on small { color: #E4F1FF; }
.filters a small { color: var(--muted); }
.pager { display: flex; gap: .5rem; justify-content: center; margin: 2.2rem 0 0; flex-wrap: wrap; }
.pager a, .pager span { padding: .5rem .95rem; border: var(--stroke); border-radius: 11px; background: #fff; color: var(--ink); font-weight: 800; box-shadow: 2px 2px 0 var(--ink); }
.pager span { background: var(--ink); color: #fff; }
.result-list { display: grid; gap: .9rem; }
.result { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.empty { text-align: center; padding: 3rem 1rem; color: var(--muted); font-weight: 700; }
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2rem; }
.prose ul { padding-left: 1.2rem; }
.prose li + li { margin-top: .4rem; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; align-items: stretch; }
.tier { display: flex; flex-direction: column; background: #fff; border: var(--stroke); border-radius: 20px; padding: 1.6rem; box-shadow: var(--pop); }
.tier.hot { border-width: 3px; box-shadow: 7px 7px 0 var(--red-brand); position: relative; }
.tier.hot::before { content: "★ Most popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red-cta); color: #fff; font-size: .74rem; font-weight: 800; padding: .25rem .8rem; border-radius: 999px; border: 2px solid var(--ink); white-space: nowrap; }
.tier .price { font: 400 2rem var(--display); margin: .4rem 0 .1rem; color: var(--brand-dk); }
.tier .price small { font: 700 .9rem var(--font); color: var(--muted); }
.tier ul { list-style: none; padding: 0; margin: 1rem 0 1.4rem; flex: 1; }
.tier li { padding: .35rem 0 .35rem 1.7rem; position: relative; font-size: .93rem; font-weight: 600; }
.tier li::before { content: ""; position: absolute; left: 0; top: .5rem; width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid var(--ink); background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") no-repeat center / 11px; }

/* Map page */
body.map-page { overflow: hidden; }
.mapapp { display: grid; grid-template-columns: 400px 1fr; position: fixed; top: calc(var(--topbar) + 8px + env(safe-area-inset-top, 0px)); left: 0; right: 0; bottom: 0; }
.map-side { display: flex; flex-direction: column; background: #fff; border-right: var(--stroke); min-height: 0; }
.map-side-head { padding: 1rem; border-bottom: var(--stroke); background: var(--bg); }
.map-filters { display: flex; gap: .45rem; overflow-x: auto; padding: .8rem .2rem .3rem; scrollbar-width: none; }
.map-filters button { flex: none; border: 1.5px solid var(--ink); background: #fff; border-radius: 999px; padding: .38rem .85rem; font: 800 .84rem var(--font); cursor: pointer; color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.map-filters button.on { background: var(--red-cta); color: #fff; }
.map-count { padding: .6rem 1rem; font-size: .84rem; color: var(--muted); font-weight: 700; border-bottom: 1.5px dashed var(--line); }
.map-list { overflow-y: auto; flex: 1; }
.map-item { display: block; padding: .9rem 1rem; border-bottom: 1.5px dashed var(--line); color: var(--ink); cursor: pointer; font-weight: 600; }
.map-item:hover, .map-item.hl { background: var(--brand-lt); text-decoration: none; }
.map-item h4 { margin: 0 0 .15rem; font-size: 1.05rem; }
.map-item p { margin: 0; font-size: .84rem; color: var(--muted); }
.map-item .signal { margin-top: .3rem; }
#bigmap { position: relative; min-height: 0; }
.map-zoom-hint { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; padding: .5rem 1rem; border-radius: 999px; font-size: .86rem; font-weight: 800; z-index: 5; box-shadow: 3px 3px 0 var(--red-brand); }
.map-toggle { display: none; }
.maplibregl-popup-content { border-radius: 14px !important; padding: .85rem 1rem !important; font-family: var(--font); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink) !important; }
.maplibregl-popup-content h4 { margin: 0 0 .2rem; font-size: 1.05rem; }
.maplibregl-popup-content p { margin: 0 0 .5rem; font-size: .84rem; color: var(--muted); font-weight: 600; }

/* Autocomplete + map pins */
.suggest { position: absolute; left: 0; right: 0; top: calc(100% + 6px); background: #fff; border: var(--stroke); border-radius: 14px; box-shadow: var(--pop); z-index: 60; overflow: hidden; text-align: left; }
.suggest a { display: flex; gap: .7rem; align-items: center; padding: .6rem .9rem; color: var(--ink); border-top: 1.5px dashed var(--line); }
.suggest a:first-child { border-top: 0; }
.suggest a:hover, .suggest a.on { background: var(--brand-lt); text-decoration: none; }
.suggest b { display: block; font-weight: 800; font-size: .95rem; }
.suggest small { color: var(--muted); font-size: .8rem; font-weight: 700; }
.suggest span[class^="sg-"] { width: 30px; height: 30px; border-radius: 9px; flex: none; border: 1.5px solid var(--ink); background: var(--brand-lt) no-repeat center / 15px; }
.sg-biz { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B5CC5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h18v13H3zM8 7V4h8v3'/%3E%3C/svg%3E"); }
.sg-place { background-color: var(--red-lt) !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E3192C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-6.2-7-11a7 7 0 1 1 14 0c0 4.8-7 11-7 11z'/%3E%3C/svg%3E"); }
.bigsearch .suggest { top: calc(100% + 14px); }
.pin { width: 24px; height: 24px; border-radius: 50% 50% 50% 0; background: var(--red-cta); transform: rotate(-45deg); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--ink), 2px 4px 8px rgba(0, 0, 0, .3); }

/* Owner + admin */
.owner-desc { background: var(--brand-lt); border: 2px solid var(--ink); border-radius: 14px; padding: 1rem 1.2rem; margin: 1rem 0 0; }
.owner-desc .eyebrow { margin-bottom: .3rem; }
.owner-desc p:last-child { margin: 0; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: .1rem .8rem; font-size: .93rem; }
.hours-grid { display: grid; grid-template-columns: 48px 1fr; gap: .4rem .6rem; align-items: center; }
.lead-item { border-top: 1.5px dashed var(--line); padding: .7rem 0; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th { text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--red-cta); padding: .5rem; border-bottom: var(--stroke); }
.admin-table td { padding: .6rem .5rem; border-bottom: 1.5px dashed var(--line); vertical-align: top; }
@media (max-width: 760px) { .panel .biz-grid { grid-template-columns: minmax(0, 1fr) !important; } }

/* Footer: navy with a flag-stripe edge */
.footer { position: relative; background: var(--ink); color: #D3DBEC; padding: 3.4rem 0 1.6rem; margin-top: 3rem; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; background: repeating-linear-gradient(90deg, var(--red-brand) 0 30px, #fff 30px 60px); border-top: 2px solid var(--ink); }
.footer .brand { color: #fff; }
.footer .brand-word { color: #fff; }
.footer-mascot { width: 64px; height: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer h4 { font: 400 1.1rem var(--display); color: #fff; letter-spacing: .02em; }
.footer-grid > div > a:not(.brand) { display: block; color: #D3DBEC; padding: .22rem 0; font-size: .95rem; font-weight: 700; }
.footer-grid > div > a:not(.brand):hover { color: #fff; }
.footer .muted { color: #9DAACB; }
.footer-tag { font: 800 .72rem var(--font); letter-spacing: .18em; text-transform: uppercase; color: #fff; margin: .8rem 0; }
.footer-tag span { color: var(--red-brand); }
.footer-base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, .15); margin-top: 2.2rem; padding-top: 1.3rem; }
.footer-base a { color: #D3DBEC; }
.subscribe { margin-top: 1rem; max-width: 380px; }
.subscribe label { color: #fff; }
.subscribe input { background: #fff; color: var(--ink); border-color: #fff; }
.subscribe .btn { box-shadow: 2px 2px 0 #fff; }

/* Responsive */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .hero-demo { display: none; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .biz-grid { grid-template-columns: minmax(0, 1fr); }
  .biz-side { position: static; }
  .layout-2 { grid-template-columns: minmax(0, 1fr); }
  .filters { position: static; }
}
@media (max-width: 760px) {
  :root { --topbar: 62px; }
  .brand-logo { height: 44px; }
  .topsearch { display: none; }
  .topnav { display: none; position: absolute; top: calc(var(--topbar) + 8px); left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 1rem 20px; border-bottom: var(--stroke); gap: .2rem; }
  .topnav a:not(.btn) { padding: .6rem 0; }
  .menu-open .topnav { display: flex; }
  .menu-btn { display: block; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps, .split-cta, .footer-grid, .tiers { grid-template-columns: 1fr; }
  .biz-hero { grid-template-columns: minmax(0, 1fr); }
  .scorecard > div:last-child { min-width: 0; }
  .panel { padding: 1.15rem 1.15rem; box-shadow: var(--pop-sm); }
  .scorecard { max-width: none; }
  .bigsearch { flex-wrap: wrap; box-shadow: 4px 4px 0 var(--ink); }
  .bigsearch input + input { max-width: none; border-left: 0; border-top: 2px dashed var(--line); }
  .bigsearch .btn { width: 100%; }
  .hero-demo { transform: none; }
  .mapapp { grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .map-side { position: absolute; left: 0; right: 0; bottom: 0; height: 45dvh; z-index: 6; border-radius: 20px 20px 0 0; border: var(--stroke); box-shadow: 0 -10px 30px rgba(0, 0, 0, .15); transition: height .25s; }
  .map-side.collapsed { height: 120px; }
  .map-toggle { display: block; width: 48px; height: 6px; border-radius: 3px; background: var(--ink); margin: .5rem auto 0; border: 0; cursor: pointer; }
  .result { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
/* Rich cards */
.biz-card { display: flex; flex-direction: column; gap: .55rem; }
.biz-card-head { display: flex; gap: .8rem; align-items: flex-start; }
.biz-card-title { min-width: 0; }
.biz-card-title h3 { margin: 0 0 .3rem; font-size: 1.12rem; overflow-wrap: anywhere; }
.mono { position: relative; flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font: 400 1.25rem var(--display); color: #fff; border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); letter-spacing: .02em; }
.mono i { position: absolute; right: -7px; bottom: -7px; width: 22px; height: 22px; border-radius: 50%; background: #fff; color: var(--ink); border: 1.5px solid var(--ink); display: grid; place-items: center; }
.mono-red { background: var(--red-cta); }
.mono-blue { background: var(--brand); }
.mono-sky { background: var(--sky); }
.mono-navy { background: var(--ink); }
.mono-gold { background: #F0A32C; color: var(--ink); }
.biz-card-addr { display: flex; gap: .35rem; align-items: flex-start; margin: 0; color: var(--muted); font-size: .86rem; font-weight: 700; }
.biz-card-addr .ico { margin-top: .15rem; color: var(--red-cta); }
.biz-card-foot { margin-top: auto; padding-top: .6rem; border-top: 1.5px dashed var(--line); }
.card-call { position: relative; z-index: 2; margin-left: auto; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-lt); color: var(--brand-dk); border: 1.5px solid var(--ink); }
.card-call:hover { background: var(--brand); color: #fff; }

/* Top-bar search: let the suggestion dropdown overflow the rounded box */
.topsearch { overflow: visible; }
.topsearch input { border-radius: 999px 0 0 999px; }
.topsearch button { border-radius: 0 999px 999px 0; }
.topsearch .suggest { top: calc(100% + 10px); min-width: 340px; }
.kbd { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; margin-right: .4rem; border-radius: 6px; border: 1.5px solid var(--line); color: var(--muted); font: 800 .75rem var(--font); align-self: center; }

/* City map + near me */
.city-hero { display: grid; grid-template-columns: minmax(0, 1fr) 460px; gap: 2rem; align-items: center; }
.city-map { height: 300px; border-radius: var(--radius); overflow: hidden; border: var(--stroke); box-shadow: var(--pop); background: #E8EDF5; }
.near-me { background: var(--ink) !important; color: #fff !important; }
.near-me:hover { background: var(--brand) !important; }

/* Phone action bar on business pages */
.m-actions { display: none; }
@media (max-width: 760px) {
  body.biz-page { padding-bottom: 84px; }
  body.biz-page .biz-actions { display: none; }
  .m-actions { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: .5rem; position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); z-index: 40; background: #fff; border: 2px solid var(--ink); border-radius: 18px; padding: .5rem; box-shadow: 4px 4px 0 var(--ink), 0 10px 30px rgba(0, 19, 55, .2); }
  .m-actions a, .m-actions button { display: flex; flex-direction: column; align-items: center; gap: .15rem; padding: .45rem .2rem; border-radius: 12px; border: 0; background: none; color: var(--ink); font: 800 .72rem var(--font); cursor: pointer; text-decoration: none; }
  .m-actions .primary { background: var(--red-cta); color: #fff; }
  .city-hero { grid-template-columns: minmax(0, 1fr); }
  .city-map { height: 230px; }
  .topsearch .suggest { min-width: 0; }
}

/* Refine bar on category pages: search + type chips, results first on phones */
.layout-2 > .filters { order: -1; }
.refine { margin: 0 0 1.4rem; }
.refine-search { display: flex; align-items: center; gap: .6rem; background: #fff; border: 2.5px solid var(--ink); border-radius: 16px; padding: .35rem .4rem .35rem 1rem; box-shadow: 4px 4px 0 var(--ink); max-width: 760px; }
.refine-search .ico { color: var(--muted); }
.refine-search input { border: 0; padding: .7rem .2rem; font-size: 1.05rem; }
.refine-search input:focus { box-shadow: none; }
.refine-search .btn { box-shadow: none; }
.type-chips { display: flex; gap: .5rem; overflow-x: auto; padding: 1rem .2rem .6rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.type-chips::-webkit-scrollbar { display: none; }
.type-chips a { flex: none; display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .9rem; border-radius: 999px; background: #fff; border: 1.5px solid var(--ink); color: var(--ink); font-weight: 800; font-size: .9rem; box-shadow: 2px 2px 0 var(--ink); text-decoration: none; white-space: nowrap; }
.type-chips a small { color: var(--muted); font-weight: 700; }
.type-chips a:hover { background: var(--brand-lt); }
.type-chips a.on { background: var(--red-cta); color: #fff; }
.type-chips a.on small { color: #FFE0E3; }
.result-note { font-weight: 700; color: var(--ink-2); margin: 0 0 .9rem; }
#results.loading { opacity: .45; transition: opacity .15s; }
@media (max-width: 1000px) { .layout-2 > .filters { order: 2; } }

/* Ratings, price level, reviews */
.stars { position: relative; display: inline-block; font-size: 1rem; line-height: 1; letter-spacing: 1px; color: #D5DBE8; vertical-align: -1px; }
.stars::before { content: "★★★★★"; }
.stars-fill { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; color: #FFB400; }
.stars-fill::before { content: "★★★★★"; }
.stars-lg { font-size: 1.5rem; }
.price-level { font-weight: 800; letter-spacing: 1px; }
.price-level b { color: #1E8E3E; font-weight: 800; }
.price-level i { font-style: normal; color: #C9D1E0; }
.rating-line { display: inline-flex; align-items: center; gap: .3rem; font-size: .92rem; flex-wrap: wrap; }
.dot-sep { color: var(--muted); }
.biz-card-rating { margin: 0; }
.hero-rating { display: inline-flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin: -.4rem 0 1rem; color: var(--ink); text-decoration: none !important; }
.hero-rating-cta { font-size: .86rem; font-weight: 800; color: var(--brand-dk); }
.review-summary { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; padding: .4rem 0 1.2rem; border-bottom: 1.5px dashed var(--line); margin-bottom: .6rem; }
.big-rating, .big-price { display: grid; justify-items: start; gap: .2rem; }
.big-rating b { font: 400 2.8rem/1 var(--display); }
.big-price .price-level { font-size: 1.8rem; }
.review-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.review { padding: 1rem 0; border-bottom: 1.5px dashed var(--line); }
.review p { margin: .5rem 0 0; font-weight: 600; color: var(--ink-2); }
.review-head { display: flex; gap: .7rem; align-items: center; }
.review-head > div { display: grid; line-height: 1.25; }
.review-stars { margin-left: auto; display: inline-flex; gap: .6rem; align-items: center; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--brand); color: #fff; border: 2px solid var(--ink); font: 400 1.1rem var(--display); flex: none; }
.review:nth-child(3n+2) .avatar { background: var(--red-cta); }
.review:nth-child(3n) .avatar { background: #F0A32C; color: var(--ink); }
.review-write { margin-top: 1rem; }
.review-write summary { list-style: none; cursor: pointer; }
.review-write summary::-webkit-details-marker { display: none; }
.review-write[open] summary { margin-bottom: 1rem; }
.review-form fieldset { border: 0; padding: 0; margin: 0; }
.review-form legend { font-weight: 800; font-size: .9rem; margin-bottom: .2rem; }
.star-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: .15rem; }
.star-input legend { width: 100%; }
.star-input input, .price-input input { position: absolute; opacity: 0; pointer-events: none; }
.star-input label { font-size: 2.2rem; line-height: 1; color: #D5DBE8; cursor: pointer; margin: 0; transition: transform .1s, color .1s; -webkit-text-stroke: 1.5px var(--ink); }
.star-input label:hover, .star-input label:hover ~ label, .star-input input:checked ~ label { color: #FFB400; }
.star-input label:hover { transform: scale(1.12); }
.star-input input:focus-visible + label { outline: 3px solid var(--sky); border-radius: 6px; }
.price-input { display: flex; gap: .45rem; flex-wrap: wrap; }
.price-input legend { width: 100%; }
.price-input label { margin: 0; cursor: pointer; padding: .4rem .8rem; border-radius: 999px; border: 1.5px solid var(--ink); background: #fff; font-weight: 800; color: #1E8E3E; box-shadow: 2px 2px 0 var(--ink); }
.price-input input:checked + label { background: #1E8E3E; color: #fff; }
.price-input input:focus-visible + label { outline: 3px solid var(--sky); }

/* Sponsored cards */
.biz-card.is-sponsored { background: #FFFBEE; box-shadow: 4px 4px 0 #F0A32C; }
.biz-card.is-sponsored:hover { box-shadow: 6px 6px 0 #F0A32C; }

/* pages (agent) */
.section-pad { height: 3rem; }
.section-pad-sm { height: 1.2rem; }
.center { text-align: center; }
.center-block { margin-inline: auto; }
.narrow { max-width: 880px; }
.prose-wide { max-width: 960px; }
.notice { background: var(--brand-lt); color: var(--brand-dk); border-radius: var(--radius-sm); padding: .7rem 1rem; }
.search-form { display: flex; gap: .5rem; flex-wrap: wrap; max-width: 760px; margin: 1rem 0 .6rem; }
.search-form input { flex: 2 1 240px; width: auto; }
.search-form input[name="loc"] { flex: 1 1 160px; }
.search-form .btn { flex: none; }
.result h3 { margin: 0 0 .2rem; }
.result p { margin: 0; }
.filters.panel { padding: 1rem 1.1rem; }
.filters.panel h3:first-child { margin-top: 0; }
.layout-2 > section > .panel { margin-top: 1.1rem; }
.owner-note { background: #FBFCFD; }
.with-ico { display: flex; align-items: center; gap: .6rem; }
.with-ico .ico-wrap { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-lt); color: var(--brand-dk); display: grid; place-items: center; }
.jump { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.jump a { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .25rem .75rem; color: var(--ink-2); }
.jump a:hover { border-color: var(--ink-2); text-decoration: none; }
[id] { scroll-margin-top: calc(var(--topbar) + 16px); }

/* forms */
.choice { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8rem 1rem; margin: .7rem 0 0; }
.choice legend { font-weight: 600; font-size: .88rem; padding: 0 .3rem; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-weight: 500; font-size: .92rem; margin: .45rem 0 0; cursor: pointer; }
.check input { width: auto; margin-top: .25rem; flex: none; accent-color: var(--brand); }
.check small { display: block; color: var(--muted); font-weight: 400; }
.claim-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 1.2rem; align-items: start; }
.claim-grid > .panel + .panel { margin-top: 0; }
.remove-forms { display: flex; flex-direction: column; gap: 1.1rem; }
.remove-forms > .panel + .panel { margin-top: 0; }
.remove-first #remove { order: -1; }

/* for-business */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.feature { padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.steps + .center { margin-top: 2rem; }
.steps + .center .btn { margin: .3rem; }
.faq { display: grid; gap: .7rem; }
.faq details.panel { padding: 0; margin: 0; }
.faq summary { cursor: pointer; padding: 1rem 1.3rem; font-weight: 600; list-style: none; position: relative; padding-right: 2.6rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; top: .8rem; font-size: 1.3rem; color: var(--muted); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 1.3rem 1.1rem; margin: 0; color: var(--ink-2); }

/* pricing */
.tier h2 { margin: 0; }
.waitlist summary { list-style: none; }
.waitlist summary::-webkit-details-marker { display: none; }
.waitlist[open] summary { display: none; }
.addon { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; }
.addon h2 { margin-bottom: .3rem; }
.addon p { margin: 0; }
.pricing-notes { margin-top: 1.4rem; }

/* badges */
.badge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; margin-bottom: 1.1rem; }
.badge-grid > .panel + .panel { margin-top: 0; }
.badge-stage { display: grid; place-items: center; padding: 2rem 1rem; background: repeating-linear-gradient(45deg, #F7F9FB, #F7F9FB 10px, #F1F4F7 10px, #F1F4F7 20px); border-radius: var(--radius-sm); margin: .6rem 0; }
.ctb-badge { display: inline-flex; align-items: center; gap: .6rem; padding: .55rem 1rem .55rem .6rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); color: var(--ink); text-decoration: none !important; }
.ctb-badge-mark { width: 32px; height: 32px; border-radius: 9px; background: var(--brand); color: #fff; display: grid; place-items: center; }
.ctb-badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.ctb-badge-text small { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.ctb-badge-text b { font: 700 1.05rem var(--display); letter-spacing: -.02em; }
.ctb-badge-text i { font-style: normal; color: var(--brand); }
.chr-badge { display: inline-flex; flex-direction: column; align-items: center; padding: .6rem 1.2rem; background: #FBF8F1; border: 1px solid #EAE2CF; border-top: 3px solid #A4161A; border-radius: 6px; color: var(--ink); text-decoration: none !important; line-height: 1.2; }
.chr-badge small { font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: #A4161A; font-weight: 700; }
.chr-badge b { font: 700 1.1rem Georgia, "Times New Roman", serif; }
.steps-list { padding-left: 1.2rem; }
.steps-list li + li { margin-top: .4rem; }
.code { background: var(--ink); color: #D6E2EE; border-radius: var(--radius-sm); padding: 1rem 1.2rem; overflow-x: auto; font: .84rem/1.6 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* tables and documents */
.table-wrap { overflow-x: auto; margin: 1rem 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.data-table th, .data-table td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table th { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.data-table tfoot td { font-weight: 700; border-bottom: 0; }
.data-table .num { text-align: right; white-space: nowrap; }
.doc { padding-bottom: 1rem; }
.doc h1 { margin-top: .6rem; }

@media (max-width: 760px) {
  .claim-grid { grid-template-columns: 1fr; }
  .search-form .btn { width: 100%; }
}
.claim-grid .tips, .panel .tips + p { margin-bottom: 1rem; }

/* Quick answer + sources */
.answer-panel { border-left: 5px solid var(--brand); }
.answer-panel h2 { margin-bottom: .5rem; }
.answer { font-size: 1.06rem; line-height: 1.65; margin: 0 0 .6rem; }
.cite { font-size: .7em; margin-left: 1px; }
.cite a { text-decoration: none; font-weight: 800; }
.sources-box { border-top: 1px solid var(--line); margin-top: 1rem; padding-top: .8rem; }
.sources-box h3 { font-size: 1rem; margin: 0 0 .4rem; }
.sources { margin: 0 0 .6rem; padding-left: 1.3rem; font-size: .9rem; line-height: 1.5; }
.sources li { margin-bottom: .35rem; }
.sources li:target { background: #fff6d6; }

/* Owner prompts */
.owner-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .4rem 1rem; margin: 0 0 1rem; padding: .75rem 1rem; border: 2px dashed var(--brand); border-radius: var(--radius); background: #F2F7FF; color: var(--ink); text-decoration: none; font-size: .92rem; }
.owner-strip:hover { background: #E6F0FF; }
.owner-strip-go { font-weight: 800; color: var(--brand); white-space: nowrap; }
.ad-cta { border-color: var(--brand); }
.ad-cta h3 { margin-top: .2rem; }
.ad-band { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.ad-band h2 { margin: .2rem 0 .5rem; }
.ad-form-wrap { max-width: 560px; }
@media (max-width: 640px) { .ad-band { flex-direction: column; align-items: flex-start; } }

/* Map search: suggestions + "looking for" chips */
.map-search { position: relative; }
.map-suggest { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30; }
.map-suggest button { display: flex; gap: .7rem; align-items: center; width: 100%; text-align: left; background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
.map-types { display: flex; gap: .45rem; overflow-x: auto; scrollbar-width: none; padding: .55rem 0 .1rem; align-items: center; }
.map-types::-webkit-scrollbar { display: none; }
.map-types-q { font-size: .8rem; font-weight: 800; color: var(--muted); white-space: nowrap; }
.map-types button { flex: none; border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: .38rem .8rem; font: 700 .82rem/1 var(--font, inherit); cursor: pointer; white-space: nowrap; color: var(--ink); }
.map-types button.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.suggest button { padding: .6rem .9rem; border-top: 1.5px dashed var(--line); }
.suggest button:first-child { border-top: 0; }
.suggest button:hover, .suggest button.on { background: var(--brand-lt); }
.sg-search { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001337' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M11 18a7 7 0 1 1 0-14 7 7 0 0 1 0 14zM21 21l-5-5'/%3E%3C/svg%3E"); }

/* Recommended funder card (partner, labeled) */
.funder-card { background: #fff; border: var(--stroke); border-radius: var(--radius); box-shadow: 6px 6px 0 #FF6B35; padding: 1.2rem 1.3rem 1rem; margin: 0 0 1.4rem; }
.funder-top { display: flex; align-items: center; gap: .55rem; margin-bottom: .55rem; }
.funder-eyebrow { font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.partner-tag { font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border: 1.5px solid var(--line); padding: .2rem .45rem; border-radius: 6px; }
.funder-logo { display: inline-block; line-height: 0; }
.funder-logo img { width: 190px; height: auto; }
.funder-lead { font-size: .92rem; margin: .45rem 0 .7rem; }
.funder-products { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.funder-products a { display: inline-block; font-size: .82rem; font-weight: 800; border: 1.5px solid var(--line); border-radius: 999px; padding: .35rem .75rem; color: var(--ink); text-decoration: none; }
.funder-products a:hover { border-color: #FF6B35; }
.funder-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; }
.funder-btn { background: #FF6B35 !important; color: #fff !important; }
.funder-phone { font-weight: 900; color: var(--ink); }
.funder-note { font-size: .74rem; color: var(--muted); margin: .75rem 0 0; }
.funder-compact .funder-btn { width: 100%; justify-content: center; }
.feature-cta { border-color: var(--red-brand); }
.feature-cta h3 { margin-top: .2rem; }

/* ---- contextual funding band ----------------------------------------------------------------
   Sits at the foot of city, state and category pages. The link varies with the page so it reads
   as a cross-reference rather than a sitewide template link. */
.fund-band { display: grid; grid-template-columns: 1fr minmax(240px, 300px); gap: 1.6rem 2.2rem;
  align-items: center; margin: 2rem 0 1rem; padding: 1.5rem 1.6rem;
  border: 1px solid var(--line, #e2e2e2); border-radius: 12px; background: #fff; }
.fb-eyebrow { margin: 0 0 .25rem; font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #A4161A; }
.fund-band h2 { margin: 0 0 .4rem; font-size: 1.32rem; line-height: 1.25; }
.fb-main p { margin: 0; font-size: .96rem; line-height: 1.55; color: #444; }
.fb-cta { display: flex; flex-direction: column; gap: .55rem; }
.fb-btn { display: block; text-align: center; background: #FF6B35; color: #fff; border: 0;
  font-weight: 700; padding: .8rem 1rem; border-radius: 8px; text-decoration: none; }
.fb-btn:hover { background: #ea5a26; color: #fff; }
.fb-phone { display: flex; flex-direction: column; align-items: center; text-decoration: none;
  border: 1px solid var(--line, #e2e2e2); border-radius: 8px; padding: .5rem 1rem;
  font-weight: 700; font-size: 1.05rem; color: inherit; }
.fb-phone span { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #777; }
.fb-phone:hover { border-color: #FF6B35; }
.fb-note { margin: 0; font-size: .7rem; color: #888; text-align: center; }
@media (max-width: 720px) {
  .fund-band { grid-template-columns: 1fr; padding: 1.2rem 1rem; gap: 1rem; }
  .fund-band h2 { font-size: 1.18rem; }
}

/* ---- local rankings ------------------------------------------------------------------------ */
.rank-head { max-width: 760px; margin: 0 0 1.4rem; }
.rank-head h1 { margin: .2rem 0 .5rem; line-height: 1.15; }
.rank-dek { font-size: 1.05rem; color: #444; margin: 0; }
.rank-note { background: #f7f7f5; border: 1px solid var(--line, #e2e2e2); border-radius: 10px;
  padding: 1rem 1.15rem; margin: 0 0 1.8rem; max-width: 820px; }
.rank-note p { margin: 0 0 .6rem; font-size: .94rem; line-height: 1.6; color: #444; }
.rank-note p:last-child { margin-bottom: 0; }
.rank-list { list-style: none; margin: 0 0 2.2rem; padding: 0; counter-reset: rank; }
.rank-row { display: flex; gap: 1rem; align-items: flex-start; padding: .95rem 0;
  border-bottom: 1px solid var(--line, #e8e8e8); }
.rank-no { flex: none; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: #17140F;
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-size: .9rem; }
.rank-row:nth-child(-n+3) .rank-no { background: #A4161A; }
.rank-body { min-width: 0; }
.rank-body h2 { margin: 0 0 .15rem; font-size: 1.12rem; line-height: 1.3; }
.rank-body h2 a { text-decoration: none; }
.rank-body h2 a:hover { text-decoration: underline; }
.rank-meta { margin: 0; font-size: .87rem; color: #666; }
.rank-signals { margin: .4rem 0 0; display: flex; flex-wrap: wrap; gap: .3rem; }
.rank-signals span { font-size: .7rem; font-weight: 600; letter-spacing: .02em; color: #0E6A4C;
  background: #E8F5EF; border-radius: 999px; padding: .15rem .55rem; }
.rank-claim { background: #fff; border: 1px solid var(--line, #e2e2e2); border-radius: 10px;
  padding: 1.15rem 1.25rem; margin: 0 0 2rem; max-width: 820px; }
.rank-claim h2 { margin: 0 0 .5rem; font-size: 1.15rem; }
.rank-claim p { margin: 0 0 .5rem; font-size: .94rem; line-height: 1.6; }
.rank-more { margin: 0 0 1.8rem; }
.rank-more h2 { font-size: 1.15rem; margin: 0 0 .6rem; display: flex; align-items: baseline; gap: .6rem; }
.rank-more h2 small { font-size: .72rem; font-weight: 500; color: #888; letter-spacing: .03em; }
.rank-links { list-style: none; margin: 0; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .3rem .9rem; }
.rank-links li { font-size: .92rem; display: flex; justify-content: space-between; gap: .5rem;
  padding: .25rem 0; border-bottom: 1px dotted #e8e8e8; }
.rank-links small { color: #999; flex: none; }
.rank-foot { margin: 0 0 1.6rem; font-size: .94rem; }
@media (max-width: 640px) { .rank-links { grid-template-columns: 1fr; } }

/* ---- business health check ------------------------------------------------------------------ */
.hc-head { max-width: 720px; margin: 0 0 1.5rem; }
.hc-dek { font-size: 1.08rem; line-height: 1.6; color: #444; margin: .4rem 0 0; }
.hc-search { max-width: 720px; margin: 0 0 2rem; }
.hc-search label { display: block; font-weight: 700; font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; color: #666; margin-bottom: .4rem; }
.hc-input-row { display: flex; gap: .5rem; }
#hc-q { flex: 1; font-size: 1.05rem; padding: .85rem 1rem; border: 2px solid #17140F;
  border-radius: 8px; min-width: 0; }
#hc-go { flex: none; background: #FF6B35; color: #fff; border: 0; font-weight: 700;
  font-size: 1rem; padding: .85rem 1.5rem; border-radius: 8px; cursor: pointer; }
#hc-go:hover { background: #ea5a26; }
.hc-hint { font-size: .84rem; color: #777; margin: .5rem 0 0; }
.hc-suggest { list-style: none; margin: .4rem 0 0; padding: 0; border: 1px solid var(--line, #e2e2e2);
  border-radius: 8px; overflow: hidden; background: #fff; }
.hc-suggest button { display: block; width: 100%; text-align: left; background: none; border: 0;
  border-bottom: 1px solid #f0f0f0; padding: .65rem .9rem; cursor: pointer; font: inherit; }
.hc-suggest button:hover { background: #f7f7f5; }
.hc-suggest b { display: block; font-size: .96rem; }
.hc-suggest span { font-size: .8rem; color: #777; }
.hc-result { max-width: 760px; margin: 0 0 2.5rem; }
.hc-loading { font-size: 1rem; color: #555; padding: 1.2rem; background: #f7f7f5; border-radius: 10px; }
.hc-card { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  border: 1px solid var(--line, #e2e2e2); border-radius: 12px; padding: 1.3rem; background: #fff; }
.hc-score { flex: none; width: 190px; }
.hc-num { font-size: 2.9rem; font-weight: 800; line-height: 1; }
.hc-num small { font-size: 1rem; font-weight: 600; color: #999; }
.hc-band { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin: .2rem 0 .5rem; }
.hc-bar { height: 8px; background: #eee; border-radius: 99px; overflow: hidden; }
.hc-bar span { display: block; height: 100%; background: currentColor; }
.hc-strong { color: #0E7A4C; } .hc-good { color: #1E7BB8; }
.hc-some { color: #C97A10; } .hc-weak, .hc-low { color: #A4161A; }
.hc-for h2 { margin: 0 0 .2rem; font-size: 1.3rem; }
.hc-when { margin: 0; font-size: .86rem; color: #777; }
.hc-sh { margin: 1.6rem 0 .6rem; font-size: 1.1rem; }
.hc-signals { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.hc-signals li { display: flex; gap: .75rem; padding: .7rem 0; border-bottom: 1px solid #f0f0f0; }
.hc-signals b { font-size: .96rem; }
.hc-signals p { margin: .1rem 0 0; font-size: .88rem; color: #666; line-height: 1.5; }
.hc-mark { flex: none; width: 1.1rem; height: 1.1rem; border-radius: 50%; margin-top: .2rem; }
.hc-s-pass .hc-mark { background: #0E9F6E; }
.hc-s-fail .hc-mark { background: #A4161A; }
.hc-s-info .hc-mark { background: #C9C4B8; }
.hc-fix { background: #FFF8F2; border: 1px solid #F3D9C4; border-radius: 12px; padding: 1.1rem 1.3rem;
  margin: 0 0 1.4rem; }
.hc-fix h3 { margin: 0 0 .6rem; font-size: 1.08rem; }
.hc-fix ol { margin: 0 0 .7rem; padding-left: 1.2rem; }
.hc-fix li { margin-bottom: .35rem; font-size: .94rem; line-height: 1.55; }
.hc-fix-note { margin: 0; font-size: .85rem; color: #777; }
.hc-next { border-top: 1px solid var(--line, #e2e2e2); padding-top: 1.2rem; }
.hc-next h3 { margin: 0 0 .4rem; font-size: 1.08rem; }
.hc-link { margin-left: .8rem; font-size: .9rem; }
.hc-explain { max-width: 860px; margin: 0 0 2.2rem; }
.hc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem 2rem; }
.hc-grid h3 { font-size: 1.05rem; margin: 0 0 .3rem; }
.hc-grid p { margin: 0; font-size: .93rem; line-height: 1.6; color: #555; }
@media (max-width: 700px) {
  .hc-grid { grid-template-columns: 1fr; }
  .hc-input-row { flex-direction: column; }
  .hc-score { width: 100%; }
}
.hc-s-warn .hc-mark { background: #C97A10; }
.hc-peers { border: 1px solid var(--line, #e2e2e2); border-radius: 12px; padding: 1.1rem 1.25rem;
  margin: 1.4rem 0 0; background: #fff; }
.hc-peers h3 { margin: 0 0 .7rem; font-size: 1.05rem; }
.hc-peers table { width: 100%; border-collapse: collapse; }
.hc-peers td { padding: .35rem 0; vertical-align: middle; font-size: .92rem; }
.hcp-what { width: 38%; color: #555; }
.hcp-bar { width: 42%; display: flex; align-items: center; gap: .55rem; }
.hcp-bar span { flex: 1; height: 7px; background: #eee; border-radius: 99px; overflow: hidden; }
.hcp-bar i { display: block; height: 100%; background: #1E7BB8; }
.hcp-bar b { font-variant-numeric: tabular-nums; font-size: .85rem; color: #555; min-width: 2.4rem; }
.hcp-you { text-align: right; font-weight: 700; font-size: .85rem; }
.hcp-you.yes { color: #0E7A4C; } .hcp-you.no { color: #A4161A; }
.hcp-note { margin: .7rem 0 0; font-size: .87rem; color: #666; }
@media (max-width: 560px) { .hcp-what { width: 46%; } .hcp-bar b { display: none; } }
.hc-share { margin: 1.2rem 0 0; font-size: .88rem; color: #666; padding: .7rem .9rem;
  background: #f7f7f5; border-radius: 8px; word-break: break-all; }
.biz-hc { margin: 0 0 1rem; font-size: .92rem; font-weight: 600; }
.hc-embed { border: 1px solid var(--line, #e2e2e2); border-radius: 12px; padding: 1.15rem 1.3rem;
  margin: 1.6rem 0; background: #fff; max-width: 760px; }
.hc-embed h3 { margin: 0 0 .4rem; font-size: 1.08rem; }
.hc-embed > p { margin: 0 0 .9rem; font-size: .93rem; color: #555; line-height: 1.6; }
.hc-embed-preview { padding: 1rem; background: #f7f7f5; border-radius: 8px; margin-bottom: .9rem; }
.hc-embed label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #777; margin-bottom: .3rem; }
.hc-embed textarea { width: 100%; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .78rem; line-height: 1.5; padding: .7rem; border: 1px solid var(--line, #e2e2e2);
  border-radius: 8px; resize: vertical; background: #fcfcfc; }
.owner-more { margin: -.6rem 0 1.1rem; font-size: .88rem; color: #666; }
