/* Get Fit Phoenix — production CSS cleanup
   Organized by: foundation, layout, hero/compass, directory, forms, footer, modal, responsive. */

:root {
  --bg: #050607;
  --bg-deep: #020203;
  --panel: #10131a;
  --panel-soft: rgba(255,255,255,.065);
  --panel-softer: rgba(255,255,255,.035);
  --text: #f7f7f7;
  --muted: #b9bec8;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.2);
  --silver: #d7d7d7;
  --orange: #ff8a00;
  --blue: #15b6ff;
  --radius: 24px;
  --radius-lg: 32px;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -20%, rgba(255,138,0,.18), transparent 32%),
    radial-gradient(circle at 15% 8%, rgba(21,182,255,.13), transparent 28%),
    radial-gradient(circle at top, #16191f 0, var(--bg) 42%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
address { font-style: normal; }

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: #9fe9ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-heading { margin-bottom: 32px; }
.section-heading.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.section-heading h2,
.hero h1,
.category-header h2,
.profile-dialog h2,
.site-footer h2 {
  margin: 0;
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 4.2rem); }
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(135deg,#fff,#a5adba);
  color: #07080a;
}
.btn.ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.btn:hover { transform: translateY(-1px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px,3vw,48px);
  background: rgba(3,4,6,.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
}
.top-links {
  display: flex;
  gap: 24px;
  color: #ddd;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.top-links a:hover { color: #fff; }

/* Hero and category navigation */
.hero {
  min-height: 76vh;
  display: grid;
  place-items: center;
  padding: 46px 0 60px;
}
.hero-center {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}
.hero-wheel {
  position: relative;
  width: min(560px, 86vw);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.65));
}
.hero-wheel img { display: block; width: 100%; }
.hero-copy h1 { font-size: clamp(2.4rem, 7vw, 5.4rem); }
.hero-kicker {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.round-icon-nav {
  display: grid;
  grid-template-columns: repeat(8, minmax(78px, 1fr));
  gap: 12px;
  width: min(920px, 96vw);
  margin-top: 10px;
}
.icon-button {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 10px 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: #fff;
  transition: .18s ease;
}
.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.icon-button img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
}
.icon-button span {
  font-size: .58rem;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.slice-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slice {
  fill: transparent;
  stroke: transparent;
  stroke-width: .2;
  transition: .18s ease;
}
.slice-map a:nth-child(1) { --slice-color: #ff2020; }
.slice-map a:nth-child(2) { --slice-color: #ff8a00; }
.slice-map a:nth-child(3) { --slice-color: #ffd400; }
.slice-map a:nth-child(4) { --slice-color: #32d74b; }
.slice-map a:nth-child(5) { --slice-color: #147cff; }
.slice-map a:nth-child(6) { --slice-color: #9b35ff; }
.slice-map a:nth-child(7) { --slice-color: #00d6d6; }
.slice-map a:nth-child(8) { --slice-color: #ff2bc2; }
.slice-map a:hover .slice,
.slice-map a:focus .slice,
.slice-map a.is-active .slice {
  fill: color-mix(in srgb, var(--slice-color), transparent 72%);
  stroke: color-mix(in srgb, var(--slice-color), #fff 35%);
  stroke-width: 1;
  filter: drop-shadow(0 0 6px var(--slice-color));
}
.floating-compass {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 88;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.72));
}
.floating-compass img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.compass-target-preview {
  outline: 2px solid color-mix(in srgb, var(--cat), #fff 30%);
  outline-offset: -8px;
}
.section-pulse { animation: sectionPulse 1.2s ease; }
@keyframes sectionPulse {
  0%,100% { box-shadow: inset 0 0 0 rgba(255,255,255,0); }
  40% { box-shadow: inset 0 0 70px color-mix(in srgb, var(--cat), transparent 76%); }
}

/* Sponsor marquees */
.sponsor-strip {
  overflow: hidden;
  padding: 16px 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg,
    rgba(255,32,32,.15), rgba(255,138,0,.15), rgba(255,212,0,.15),
    rgba(50,215,75,.15), rgba(20,124,255,.15), rgba(155,53,255,.15),
    rgba(0,214,214,.15), rgba(255,43,194,.15));
}
.sponsor-strip p {
  margin: 0 0 12px;
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; }
.marquee span {
  min-width: 210px;
  display: inline-flex;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(0,0,0,.34);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* Featured */
.featured,
.directory-intro,
.events-guides,
.submit { padding: 86px 0; }
.featured-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg,var(--panel-soft),var(--panel-softer));
  box-shadow: var(--shadow);
}
.premium-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-img), radial-gradient(circle at 25% 25%, #ff792e, #180604 72%);
  background-size: cover;
  background-position: center;
  opacity: .95;
}
.featured-card::after,
.elite-card::after,
.premium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.52), rgba(0,0,0,.2));
}
.featured-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 42px;
}
.featured-content h3 {
  margin: 0;
  font-size: clamp(2rem,4vw,4rem);
  line-height: .95;
  text-transform: uppercase;
}
.featured-content p {
  color: var(--muted);
  line-height: 1.65;
}
.tagline { color: #fff; font-weight: 900; }
.featured-metrics,
.feature-actions,
.card-links,
.profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.free-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.free-card-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.featured-metrics span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.3);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Search and filters */
.directory-tools { padding-top: 0; padding-bottom: 34px; }
.filter-panel {
  display: grid;
  grid-template-columns: minmax(280px,1.7fr) minmax(220px,.8fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg,var(--panel-soft),var(--panel-softer));
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}
.filter-panel label,
.business-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.filter-panel input,
.filter-panel select,
.business-form input,
.business-form select,
.business-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(0,0,0,.36);
  color: #fff;
  padding: 14px 15px;
  outline: none;
}
.filter-panel input:focus,
.filter-panel select:focus,
.business-form input:focus,
.business-form select:focus,
.business-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,0,.18);
}
.filter-reset { min-height: 50px; white-space: nowrap; }
.filter-status {
  margin: 12px 4px 0;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}
.no-results {
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.quick-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 4px 0;
}
.quick-filter {
  position: relative;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.76);
  padding: 10px 38px 10px 14px;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.quick-filter::after {
  content: attr(data-count);
  position: absolute;
  right: 8px;
  top: 50%;
  min-width: 22px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: .62rem;
  line-height: 1;
  transform: translateY(-50%);
}
.quick-filter:hover,
.quick-filter:focus-visible {
  transform: translateY(-1px);
  border-color: var(--chip, var(--orange));
  color: #fff;
}
.quick-filter.is-active {
  border-color: var(--chip, var(--orange));
  background: linear-gradient(135deg, color-mix(in srgb, var(--chip, var(--orange)), transparent 35%), rgba(255,255,255,.08));
  color: #fff;
  box-shadow: 0 0 22px color-mix(in srgb, var(--chip, var(--orange)), transparent 72%);
}
.quick-filter:not(.has-results):not(.is-active) { opacity: .5; }
.business-card.search-match {
  outline: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 16px 44px rgba(0,0,0,.35), 0 0 26px color-mix(in srgb, var(--biz, var(--orange)), transparent 78%);
}

.business-card[hidden],
.category-section[hidden],
.no-results[hidden] { display: none !important; }

/* Directory */
.category-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  border-top: 1px solid color-mix(in srgb, var(--cat), transparent 70%);
  background: linear-gradient(90deg, color-mix(in srgb, var(--cat), transparent 87%), transparent 55%);
}
.category-section::before {
  content: "";
  position: absolute;
  inset: 20px auto auto -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--cat);
  opacity: .11;
  filter: blur(40px);
}
.category-block {
  position: relative;
  display: grid;
  gap: 24px;
}
.category-header {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
}
.category-header img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 28px color-mix(in srgb, var(--cat), transparent 40%));
}
.category-header h2 {
  color: #fff;
  font-size: clamp(2.2rem,5vw,5.4rem);
  text-shadow: 0 0 34px color-mix(in srgb, var(--cat), transparent 20%);
}
.category-header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.category-sponsor-pill {
  justify-self: start;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cat);
  color: #071014;
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.business-card {
  position: relative;
  overflow: hidden;
  background: rgba(11,13,18,.86);
  transition: .18s ease;
}
.business-card:hover { transform: translateY(-3px); }
.tier-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #071014;
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.elite-label { background: linear-gradient(135deg,#fff,#f6be53); }
.premium-label { background: linear-gradient(135deg,#fff,#a7dcff); }
.logo-frame {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 12px;
  border: 3px solid var(--biz);
  border-radius: 18px;
  background: #050607;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 1000;
}
.elite-card {
  min-height: 260px;
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 2px solid color-mix(in srgb, var(--cat), #fff 24%);
  border-radius: 30px;
  box-shadow: 0 26px 90px rgba(0,0,0,.38);
}
.elite-card > * { position: relative; z-index: 1; }
.elite-card h3,
.elite-card p { margin: 0; }
.elite-card strong {
  color: #fff;
  font-size: clamp(2rem,4vw,4rem);
  line-height: .92;
  text-transform: uppercase;
}
.elite-card p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.premium-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.premium-card {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--biz), rgba(255,255,255,.18) 42%);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(0,0,0,.32);
}
.premium-card > * { position: relative; z-index: 1; }
.premium-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.16rem;
  line-height: 1.05;
}
.premium-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  line-height: 1.45;
}
.profile-trigger {
  width: fit-content;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 10px 12px;
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.free-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.free-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--biz), rgba(255,255,255,.18) 55%);
  border-top: 4px solid var(--biz);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
}
.free-card .logo-frame {
  grid-row: 1 / 5;
  width: 48px;
  height: 48px;
  margin: 0;
  border-width: 2px;
  border-radius: 12px;
  font-size: .75rem;
}
.free-card h3,
.free-card address,
.free-card a { margin: 0; }
.free-card h3 {
  color: #fff;
  font-size: .92rem;
  line-height: 1.05;
}
.free-card address,
.free-card a {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.15;
}
.free-card a { color: #fff; font-weight: 900; }
.free-card a:first-of-type { color: color-mix(in srgb, var(--biz), #fff 38%); }
.card-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: .8rem;
  font-weight: 900;
}

/* Guides */
.content-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.content-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--cat,#ff6a00) 38%, rgba(255,255,255,.14));
  border-radius: 24px;
  background: linear-gradient(145deg,var(--panel-soft),var(--panel-softer));
  box-shadow: 0 16px 46px rgba(0,0,0,.28);
}
.content-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: contain;
}
.content-card span {
  display: block;
  margin-top: 16px;
  color: #9fe9ff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.content-card h3 { margin: 8px 0; font-size: 1.35rem; }
.content-card p { color: var(--muted); line-height: 1.55; }

/* Submission form */
.business-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg,var(--panel-soft),var(--panel-softer));
  box-shadow: var(--shadow);
}
.business-form .wide { grid-column: 1 / -1; }
.business-form button { justify-self: start; }
.business-form input[type="color"] {
  min-height: 50px;
  padding: 6px;
}
.business-form textarea,
.business-form label:has(textarea) { display: none; }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(48px,7vw,96px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%,rgba(255,106,0,.22),transparent 34%),
    radial-gradient(circle at 82% 18%,rgba(21,182,255,.18),transparent 30%),
    linear-gradient(180deg,rgba(10,12,16,.98),rgba(3,4,7,1));
}
.footer-glow {
  position: absolute;
  inset: auto -12% -45% -12%;
  height: 280px;
  background: linear-gradient(90deg,rgba(255,32,32,.18),rgba(255,138,0,.2),rgba(21,182,255,.18),rgba(115,72,255,.14));
  filter: blur(44px);
  opacity: .8;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px,5vw,64px) 0 28px;
}
.footer-brand-block {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: clamp(18px,3vw,30px);
  align-items: center;
  padding: clamp(20px,3vw,30px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
}
.footer-logo {
  display: grid;
  place-items: center;
  width: clamp(92px,12vw,138px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0,0,0,.22);
  box-shadow: 0 0 0 8px rgba(255,255,255,.035), 0 18px 42px rgba(0,0,0,.38);
}
.footer-logo img { width: 86%; display: block; }
.site-footer h2 { font-size: clamp(2rem,5vw,4.2rem); }
.site-footer h3 { margin: 0 0 10px; color: #fff; font-size: 1.05rem; }
.footer-copy {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem,1.8vw,1.18rem);
  line-height: 1.65;
}
.footer-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 18px;
}
.footer-panel {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
}
.footer-panel p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.footer-panel a,
.footer-link { color: #fff; font-weight: 800; }
.footer-panel a:hover,
.footer-link:hover { text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.58);
  font-size: .88rem;
  line-height: 1.5;
}
.footer-bottom p { max-width: 650px; margin: 0; }

/* Premium profile modal */
.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(12px);
}
.profile-modal.open { display: grid; }
.profile-dialog {
  position: relative;
  width: min(680px,100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg,#11151e,#06070a);
  box-shadow: var(--shadow);
}
.close-profile {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #050607;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.profile-head {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}
.profile-head img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px var(--profile));
}
.profile-dialog h2 { font-size: clamp(2rem,5vw,4rem); }
.profile-dialog p { color: var(--muted); line-height: 1.6; }
.profile-headline { color: #fff !important; font-weight: 900; }
.profile-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 18px 0;
}
.profile-details span,
.profile-services li {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.76);
  padding: 12px;
}
.profile-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .round-icon-nav { grid-template-columns: repeat(4, minmax(78px,1fr)); max-width: 650px; }
  .premium-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .free-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  .top-links { display: none; }
  .hero { min-height: auto; padding: 24px 0 42px; }
  .hero-wheel { width: min(380px, 88vw); }
  .hero-copy h1 { font-size: clamp(2rem,12vw,3.4rem); }
  .hero-kicker { font-size: .95rem; }
  .icon-button img { width: 58px; height: 58px; }
  .icon-button span { font-size: .56rem; }
  .filter-panel { grid-template-columns: 1fr 1fr; }
  .filter-panel .search-field,
  .filter-reset { grid-column: 1 / -1; }
  .quick-filter-row { gap: 8px; }
  .category-section { padding: 54px 0; }
  .category-header { grid-template-columns: 74px 1fr; gap: 14px; }
  .category-header img { width: 74px; height: 74px; }
  .category-header h2 { font-size: 2.4rem; }
  .elite-card { min-height: 220px; padding: 22px; }
  .free-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
  .business-form { grid-template-columns: 1fr; }
  .content-cards { grid-template-columns: 1fr; }
  .footer-brand-block { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-panels { grid-template-columns: 1fr; }
  .footer-bottom { display: block; text-align: center; }
  .footer-bottom p + p { margin-top: 12px; }
  .floating-compass { width: 72px; height: 72px; right: 12px; bottom: 12px; }
}

@media (max-width: 520px) {
  .section-shell { width: min(100% - 22px, var(--max)); }
  .brand strong { font-size: .85rem; }
  .brand img { width: 48px; height: 48px; }
  .hero-wheel { width: min(320px,88vw); }
  .round-icon-nav { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .icon-button { padding: 8px 4px; }
  .icon-button img { width: 52px; height: 52px; }
  .icon-button span { font-size: .5rem; }
  .featured,
  .directory-intro,
  .events-guides,
  .submit { padding: 54px 0; }
  .featured-content { padding: 28px; }
  .filter-panel { grid-template-columns: 1fr; border-radius: 22px; }
  .filter-panel .search-field,
  .filter-reset { grid-column: auto; }
  .quick-filter { width: 100%; text-align: left; }
  .category-header { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .category-sponsor-pill { justify-self: center; }
  .premium-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .premium-card { min-height: 176px; padding: 14px; }
  .premium-card p { display: none; }
  .premium-card h3 { font-size: .95rem; }
  .premium-card .logo-frame { width: 48px; height: 48px; }
  .free-card { min-height: 96px; padding: 9px; grid-template-columns: 38px 1fr; }
  .free-card .logo-frame { width: 38px; height: 38px; border-radius: 10px; }
  .free-card h3 { font-size: .78rem; }
  .free-card address,
  .free-card a { font-size: .61rem; }
  .elite-card strong { font-size: 2.1rem; }
  .elite-card p { font-size: .86rem; }
  .profile-dialog { padding: 22px; }
  .profile-head,
  .profile-details,
  .profile-services { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Final SEO/disclaimer/mobile polish */
.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #050607;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

[id] { scroll-margin-top: 92px; }

.disclaimer-section { padding: 34px 0 16px; }
.disclaimer-card {
  display: grid;
  grid-template-columns: minmax(220px,.72fr) minmax(0,1.28fr);
  gap: 24px;
  padding: clamp(20px,3vw,30px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    linear-gradient(135deg,rgba(255,138,0,.12),rgba(21,182,255,.08)),
    rgba(255,255,255,.045);
  box-shadow: 0 20px 58px rgba(0,0,0,.3);
}
.disclaimer-card h2 {
  margin: 0;
  font-size: clamp(1.5rem,3.4vw,2.8rem);
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.disclaimer-grid {
  display: grid;
  gap: 12px;
}
.disclaimer-grid p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.disclaimer-grid strong { color: #fff; }

@media (hover: none) {
  .business-card:hover,
  .btn:hover,
  .icon-button:hover { transform: none; }
}

@media (max-width: 900px) {
  .site-header { position: relative; }
  [id] { scroll-margin-top: 18px; }
  .disclaimer-card { grid-template-columns: 1fr; }
  .filter-panel input,
  .filter-panel select,
  .business-form input,
  .business-form select { min-height: 52px; }
  .btn,
  .profile-trigger,
  .quick-filter { min-height: 46px; }
}

@media (max-width: 520px) {
  body { overflow-x: hidden; }
  .round-icon-nav { width: 100%; }
  .quick-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .quick-filter { width: auto; flex: 0 0 auto; }
  .premium-row,
  .free-grid { grid-template-columns: 1fr; }
  .premium-card { min-height: 150px; }
  .premium-card p { display: block; font-size: .78rem; }
  .free-card { min-height: 88px; }
  .floating-compass {
    width: 58px;
    height: 58px;
    right: 10px;
    bottom: 10px;
    opacity: .88;
  }
  .footer-inner { padding-bottom: 76px; }
  .disclaimer-section { padding-top: 18px; }
  .disclaimer-card { border-radius: 22px; }
}

/* Phase 1 community expansion */
.hero-search {
  width: min(860px, 100%);
  margin: clamp(18px, 3vw, 30px) auto 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: 0 22px 60px rgba(0,0,0,.32);
}
.hero-search label {
  display: block;
  margin: 0 0 8px 6px;
  color: rgba(255,255,255,.72);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.hero-search input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  color: #fff;
  padding: 14px 18px;
  font-weight: 800;
}
.platform-panel {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .75fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}
.split-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.two-column-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .8fr);
  gap: 22px;
  align-items: stretch;
}
.content-column {
  min-width: 0;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.038));
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.mini-heading span {
  color: #fff;
  font-weight: 1000;
  letter-spacing: -.02em;
}
.mini-heading a {
  color: #9fe9ff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stacked-feed,
.compact-feed {
  display: grid;
  gap: 14px;
}
.media-card,
.promo-card,
.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: 0 16px 44px rgba(0,0,0,.24);
}
.media-card {
  display: grid;
  grid-template-columns: 110px minmax(0,1fr);
  gap: 16px;
  padding: 14px;
}
.media-card img,
.promo-card img,
.article-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(0,0,0,.26);
  padding: 14px;
}
.media-card h3,
.promo-card h3,
.article-card h3 {
  margin: 6px 0;
  color: #fff;
  line-height: 1.05;
}
.media-card p,
.promo-card p,
.article-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.45;
  font-size: .92rem;
}
.content-type {
  color: #9fe9ff;
  font-size: .68rem;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}
.meta-row span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
  font-size: .72rem;
  font-weight: 900;
}
.mini-btn {
  min-height: 0;
  padding: 9px 12px;
  font-size: .76rem;
}
.promo-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
}
.promo-card h3 { font-size: 1rem; }
.promo-card p { font-size: .78rem; }
.featured-deals-grid .featured-card {
  min-height: 100%;
}
.news-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: -4px 0 18px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-card {
  display: grid;
  grid-template-rows: auto 1fr;
}
.article-card > div { padding: 18px; }
.article-card img {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  padding: 18px;
}
.article-date {
  color: rgba(255,255,255,.55) !important;
  font-size: .78rem !important;
  font-weight: 900;
}
.directory-intro { padding-top: clamp(22px, 4vw, 46px); padding-bottom: 18px; }
.category-block { padding-top: clamp(22px, 3vw, 42px); padding-bottom: clamp(22px, 3vw, 42px); }
.category-header { margin-bottom: 16px; }
.premium-row { gap: 14px; }
.free-grid { gap: 10px; }
.events-guides { display: none; }

@media (max-width: 980px) {
  .split-heading,
  .two-column-content { grid-template-columns: 1fr; }
  .secondary-column { display: grid; }
  .compact-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .hero-search > div,
  .media-card,
  .promo-card { grid-template-columns: 1fr; }
  .hero-search button { width: 100%; }
  .media-card img,
  .promo-card img { max-height: 130px; }
  .compact-feed,
  .news-grid { grid-template-columns: 1fr; }
  .content-column { border-radius: 22px; padding: 14px; }
  .mini-heading { align-items: flex-start; flex-direction: column; }
  .news-filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .article-card > div { padding: 14px; }
}

/* Final category personality + visual-fill pass */
.brand strong { font-size: clamp(1.18rem, 1.55vw, 1.45rem); }
.brand small { font-size: .82rem; letter-spacing: .04em; }
.top-links { font-size: .92rem; gap: clamp(16px, 2vw, 30px); }

.deal-marquee-panel {
  width: min(var(--max), calc(100% - 36px));
  margin: -18px auto 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
}
.deal-marquee-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.deal-marquee-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2.5rem);
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.deal-image-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 22px;
  padding: 4px 0 10px;
  scrollbar-width: thin;
}
.deal-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 42s linear infinite;
}
.deal-image-marquee:hover .deal-marquee-track { animation-play-state: paused; }
.deal-marquee-card {
  width: min(320px, 78vw);
  min-height: 190px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: #10131a;
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 44px rgba(0,0,0,.35);
}
.deal-marquee-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}
.deal-marquee-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72));
}
.deal-marquee-copy {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: grid;
  gap: 3px;
}
.deal-marquee-copy strong {
  font-size: 1.1rem;
  line-height: 1.02;
  text-transform: uppercase;
}
.deal-marquee-copy em,
.deal-marquee-copy small {
  color: rgba(255,255,255,.8);
  font-style: normal;
  font-weight: 800;
}
.events-only-column { width: 100%; }
.events-feed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.media-card img,
.promo-card img,
.article-card img {
  object-fit: cover;
  padding: 0;
}
.promo-card img { aspect-ratio: 4 / 3; }
.article-card img { aspect-ratio: 16 / 9; }
.promo-card .btn { width: fit-content; }
.spotlight-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, .34fr);
  gap: 22px;
  align-items: start;
}
.newsletter-card {
  position: sticky;
  top: 92px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,138,0,.18), rgba(21,182,255,.08)),
    rgba(255,255,255,.05);
  box-shadow: 0 18px 56px rgba(0,0,0,.28);
}
.newsletter-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.newsletter-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
}
.newsletter-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.newsletter-form > div {
  display: grid;
  gap: 10px;
}
.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(0,0,0,.38);
  color: #fff;
  padding: 14px 16px;
}
.category-layout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
  margin-top: 10px;
}
.category-layout-grid .category-section {
  height: 100%;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--cat), transparent 52%);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--cat), transparent 76%), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.category-layout-grid .category-section::before {
  inset: auto -90px -120px auto;
  width: 260px;
  height: 260px;
  opacity: .12;
}
.category-layout-grid .category-block {
  padding: clamp(18px, 2.4vw, 28px);
}
.category-layout-grid .category-header {
  grid-template-columns: 72px 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.category-layout-grid .category-header img {
  width: 72px;
  height: 72px;
}
.category-layout-grid .category-header h2 {
  font-size: clamp(1.9rem, 3vw, 3.3rem);
}
.category-layout-grid .category-header p {
  font-size: .92rem;
  line-height: 1.45;
}
.category-story-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.category-visual {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background-image: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.76)), var(--cat-img);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.category-visual span {
  display: block;
  padding: 18px;
  color: #fff;
  font-weight: 1000;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,.65);
}
.category-layout-grid .elite-card {
  min-height: 260px;
  padding: 20px;
  border-radius: 28px;
  align-content: end;
}
.category-layout-grid .elite-card strong {
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
}
.category-layout-grid .elite-card p {
  font-size: .86rem;
}
.category-layout-grid .premium-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.category-layout-grid .premium-card {
  min-height: 210px;
}
.category-layout-grid .free-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
/* Category personality variants */
.layout-feature .category-story-row { grid-template-columns: 1.18fr .82fr; }
.layout-feature .category-visual { min-height: 315px; }
.layout-promo .category-story-row { grid-template-columns: .78fr 1.22fr; }
.layout-promo .category-visual::before {
  content: "Featured Deal Ready";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cat), #fff 18%);
  color: #071014;
  font-size: .68rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.layout-image-heavy .category-story-row { grid-template-columns: 1.35fr .65fr; }
.layout-image-heavy .category-visual { min-height: 340px; }
.layout-spotlight .category-visual {
  min-height: 240px;
  border-radius: 999px 28px 28px 999px;
}
.layout-spotlight .category-visual span { padding-left: 30px; }
.layout-directory .category-story-row { grid-template-columns: .65fr 1.35fr; }
.layout-directory .category-visual { min-height: 210px; filter: grayscale(.08); }
.layout-active .category-story-row { grid-template-columns: 1fr 1fr; }
.layout-active .category-visual { min-height: 300px; background-position: center 42%; }
.layout-athlete .category-story-row { grid-template-columns: 1.25fr .75fr; }
.layout-athlete .category-visual { min-height: 330px; }
.layout-events .category-story-row { grid-template-columns: .88fr 1.12fr; }
.layout-events .category-visual span::before {
  content: "Calendar • Clinics • Camps";
  display: block;
  margin-bottom: 8px;
  color: #9fe9ff;
  font-size: .68rem;
  letter-spacing: .12em;
}
.deal-modal-hero {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  margin: 14px 0;
}
.deal-modal-hero img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
}
.deal-terms { color: var(--muted); }

@media (max-width: 1080px) {
  .events-feed { grid-template-columns: 1fr; }
  .spotlight-content-grid { grid-template-columns: 1fr; }
  .newsletter-card { position: relative; top: auto; }
}
@media (max-width: 900px) {
  .category-layout-grid { grid-template-columns: 1fr; }
  .category-story-row,
  .layout-feature .category-story-row,
  .layout-promo .category-story-row,
  .layout-image-heavy .category-story-row,
  .layout-directory .category-story-row,
  .layout-active .category-story-row,
  .layout-athlete .category-story-row,
  .layout-events .category-story-row { grid-template-columns: 1fr; }
  .category-layout-grid .premium-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .brand img { width: 48px; height: 48px; }
  .top-links { font-size: .78rem; }
  .deal-marquee-panel { width: min(100% - 24px, var(--max)); border-radius: 24px; }
  .deal-marquee-heading { align-items: start; flex-direction: column; }
  .category-layout-grid { width: min(100% - 24px, var(--max)); }
  .category-layout-grid .category-block { padding: 14px; }
  .category-layout-grid .category-header { grid-template-columns: 58px 1fr; text-align: left; justify-items: start; }
  .category-layout-grid .category-header img { width: 58px; height: 58px; }
  .category-layout-grid .premium-row,
  .category-layout-grid .free-grid { grid-template-columns: 1fr; }
  .category-visual { min-height: 220px !important; border-radius: 22px !important; }
  .deal-modal-hero { grid-template-columns: 1fr; }
  .deal-modal-hero img { width: 100%; height: 180px; }
}

/* Category layout + shape refinement pass */
.deal-marquee-track {
  animation: scroll 36s linear infinite !important;
  will-change: transform;
}
.deal-image-marquee:focus-within .deal-marquee-track,
.deal-image-marquee:hover .deal-marquee-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .deal-marquee-track { animation: none !important; }
}

.featured-deals-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
}
.featured-deals-grid .content-column {
  align-self: start;
}
.featured-deals-grid .featured-card {
  min-height: clamp(420px, 38vw, 620px) !important;
  height: auto;
}
.deals-feed {
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
}
.deals-feed .promo-card {
  min-height: 116px;
}

.category-layout-grid {
  grid-template-columns: repeat(2, minmax(420px, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
  align-items: start;
}
.category-layout-grid .category-section {
  overflow: hidden;
  isolation: isolate;
}
.category-layout-grid .category-block {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 26px);
}
.category-layout-grid .category-header {
  margin-bottom: 0;
}
.category-layout-grid .category-header h2 {
  font-size: clamp(2rem, 2.7vw, 3.15rem);
}
.category-layout-grid .category-header p {
  max-width: 100%;
}
.category-story-row { display: contents; }
.category-layout-grid .category-visual,
.layout-feature .category-visual,
.layout-promo .category-visual,
.layout-image-heavy .category-visual,
.layout-spotlight .category-visual,
.layout-directory .category-visual,
.layout-active .category-visual,
.layout-athlete .category-visual,
.layout-events .category-visual {
  width: 100%;
  min-height: clamp(230px, 22vw, 330px) !important;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  transform: translateZ(0);
}
.category-layout-grid .category-visual span {
  max-width: 74%;
  font-size: clamp(1.1rem, 2.15vw, 2.15rem);
}
.category-layout-grid .category-visual::before {
  content: none !important;
}
.category-layout-grid .elite-card,
.category-layout-grid .category-partner-card {
  width: 100%;
  min-height: 235px !important;
  padding: 20px;
  border-radius: 26px;
  align-content: end;
}
.category-layout-grid .category-partner-card strong {
  display: block;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1;
}
.category-layout-grid .category-partner-card h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.85rem);
}
.category-layout-grid .premium-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.category-layout-grid .premium-card {
  min-height: 190px;
  border-radius: 20px;
}
.free-listings-accordion {
  border: 1px solid color-mix(in srgb, var(--cat), transparent 58%);
  border-radius: 22px;
  background: rgba(0,0,0,.25);
  overflow: hidden;
}
.free-listings-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  color: #fff;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .06em;
  list-style: none;
}
.free-listings-accordion summary::-webkit-details-marker { display: none; }
.free-listings-accordion summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cat), #fff 10%);
  color: #05070a;
  font-size: 1.1rem;
  line-height: 1;
}
.free-listings-accordion[open] summary::after { content: "–"; }
.free-listings-accordion summary strong {
  margin-left: auto;
  color: rgba(255,255,255,.72);
  font-size: .74rem;
}
.free-listings-accordion .free-grid {
  padding: 0 14px 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

/* Custom category hero-image shapes */
.shape-hexagon .category-visual {
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
}
.shape-shield .category-visual {
  clip-path: polygon(10% 0, 90% 0, 90% 62%, 50% 100%, 10% 62%);
}
.shape-leaf .category-visual {
  clip-path: ellipse(46% 50% at 58% 50%);
  border-radius: 55% 8% 55% 8% / 55% 8% 55% 8%;
}
.shape-circle .category-visual {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  min-height: 0 !important;
}
.shape-heart .category-visual {
  clip-path: polygon(50% 92%, 12% 55%, 6% 33%, 14% 13%, 33% 7%, 50% 22%, 67% 7%, 86% 13%, 94% 33%, 88% 55%);
}
.shape-cross .category-visual {
  clip-path: polygon(35% 0, 65% 0, 65% 32%, 100% 32%, 100% 68%, 65% 68%, 65% 100%, 35% 100%, 35% 68%, 0 68%, 0 32%, 35% 32%);
}
.shape-parallelogram .category-visual {
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
}
.shape-ticket .category-visual {
  clip-path: polygon(0 0, 100% 0, 100% 34%, 91% 50%, 100% 66%, 100% 100%, 0 100%, 0 66%, 9% 50%, 0 34%);
}

@media (max-width: 1120px) {
  .featured-deals-grid { grid-template-columns: 1fr; }
  .deals-feed { max-height: none; }
  .category-layout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .category-layout-grid { width: min(100% - 24px, var(--max)); }
  .category-layout-grid .category-block { padding: 14px; gap: 12px; }
  .category-layout-grid .category-visual,
  .layout-feature .category-visual,
  .layout-promo .category-visual,
  .layout-image-heavy .category-visual,
  .layout-spotlight .category-visual,
  .layout-directory .category-visual,
  .layout-active .category-visual,
  .layout-athlete .category-visual,
  .layout-events .category-visual {
    min-height: 220px !important;
    clip-path: none !important;
    border-radius: 24px !important;
    width: 100%;
    aspect-ratio: auto;
  }
  .category-layout-grid .premium-row,
  .free-listings-accordion .free-grid { grid-template-columns: 1fr; }
  .free-listings-accordion summary { align-items: flex-start; flex-direction: column; }
  .free-listings-accordion summary strong { margin-left: 0; }
}

/* Final icon + category image refinement pass */
.icon-button.athlete { --icon-glow: #ff2020; }
.icon-button.fitness { --icon-glow: #ff8a00; }
.icon-button.nutrition { --icon-glow: #ffd400; }
.icon-button.health { --icon-glow: #32d74b; }
.icon-button.events { --icon-glow: #147cff; }
.icon-button.wellness { --icon-glow: #9b35ff; }
.icon-button.recovery { --icon-glow: #00d6d6; }
.icon-button.active { --icon-glow: #ff2bc2; }
.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--icon-glow, rgba(255,255,255,.28));
  background: linear-gradient(180deg, color-mix(in srgb, var(--icon-glow, #ff8a00), transparent 82%), rgba(255,255,255,.07));
  box-shadow: 0 0 28px color-mix(in srgb, var(--icon-glow, #ff8a00), transparent 52%), inset 0 0 18px color-mix(in srgb, var(--icon-glow, #ff8a00), transparent 82%);
  color: #fff;
}
.icon-button:hover img,
.icon-button:focus-visible img {
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--icon-glow, #ff8a00), transparent 10%));
}

/* Keep category hero images clean and consistent: all rectangle cards now. */
.shape-hexagon .category-visual,
.shape-shield .category-visual,
.shape-leaf .category-visual,
.shape-circle .category-visual,
.shape-heart .category-visual,
.shape-cross .category-visual,
.shape-parallelogram .category-visual,
.shape-ticket .category-visual,
.category-layout-grid .category-visual {
  clip-path: none !important;
  width: 100% !important;
  aspect-ratio: auto !important;
  border-radius: 28px !important;
  min-height: clamp(230px, 22vw, 330px) !important;
}

/* Turn the secondary category filters into icon navigation instead of text-only pills. */
.quick-filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
  margin: 16px 4px 0;
}
.quick-filter {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  border-radius: 18px;
  padding: 8px 34px 8px 10px;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.quick-filter img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--chip, #ff8a00), transparent 45%));
}
.quick-filter span {
  display: block;
  line-height: 1.05;
}
.quick-filter:hover,
.quick-filter:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, color-mix(in srgb, var(--chip, var(--orange)), transparent 78%), rgba(255,255,255,.075));
  box-shadow: 0 0 22px color-mix(in srgb, var(--chip, var(--orange)), transparent 62%), inset 0 0 18px color-mix(in srgb, var(--chip, var(--orange)), transparent 86%);
}
.quick-filter.is-active img,
.quick-filter:hover img,
.quick-filter:focus-visible img {
  filter: drop-shadow(0 0 11px color-mix(in srgb, var(--chip, #ff8a00), transparent 8%));
}

@media (max-width: 620px) {
  .quick-filter-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  .quick-filter {
    min-width: 132px;
    flex: 0 0 auto;
  }
}

/* Final polish: deal marquee readability + compact icon filter buttons */
.deal-marquee-track {
  animation: scroll 38s linear infinite !important;
  will-change: transform;
}
.deal-image-marquee:hover .deal-marquee-track,
.deal-image-marquee:focus-within .deal-marquee-track {
  animation-play-state: paused !important;
}
.deal-marquee-card {
  width: min(360px, 82vw) !important;
  min-height: 182px !important;
}
.deal-marquee-card::after {
  inset: auto 0 0 0 !important;
  height: 62% !important;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.70) 50%, rgba(0,0,0,.92) 100%) !important;
}
.deal-marquee-copy {
  left: 16px !important;
  right: 16px !important;
  bottom: 16px !important;
  gap: 5px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: calc(100% - 32px);
}
.deal-marquee-copy strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem) !important;
  line-height: .98 !important;
  letter-spacing: .015em !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.72);
}
.deal-marquee-copy em { display: none !important; }
.deal-marquee-copy small {
  display: block;
  overflow: hidden;
  max-width: 100%;
  color: rgba(255,255,255,.84) !important;
  font-size: .72rem !important;
  line-height: 1.05 !important;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0,0,0,.72);
}

.quick-filter-row {
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)) !important;
  gap: 12px !important;
}
.quick-filter {
  grid-template-columns: 38px minmax(0,1fr) auto !important;
  min-height: 62px !important;
  padding: 10px 12px !important;
  border-radius: 20px !important;
  overflow: hidden;
}
.quick-filter::after { display: none !important; }
.quick-filter img {
  width: 38px !important;
  height: 38px !important;
}
.quick-filter-label {
  min-width: 0;
  overflow: hidden;
  color: rgba(255,255,255,.92);
  font-size: clamp(.67rem, .72vw, .82rem);
  letter-spacing: .055em;
  line-height: 1.02;
  text-overflow: ellipsis;
}
.quick-filter-count {
  min-width: 28px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(0,0,0,.50);
  color: #fff;
  font-size: .68rem;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--chip, #ff8a00), transparent 52%);
}
@media (max-width: 620px) {
  .quick-filter { min-width: 160px !important; }
  .quick-filter-row { display: flex !important; }
}


/* Final cleanup: no clipped labels, cleaner deal cards, contact-safe polish */
.deal-image-marquee {
  overflow: hidden !important;
  scrollbar-width: none;
}
.deal-image-marquee::-webkit-scrollbar { display: none; }
.deal-marquee-track {
  animation: scroll 34s linear infinite !important;
}
.deal-marquee-card {
  width: clamp(280px, 29vw, 430px) !important;
  min-height: 190px !important;
}
.deal-marquee-card::after {
  inset: auto 0 0 0 !important;
  height: 58% !important;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.94) 100%) !important;
}
.deal-marquee-copy {
  left: 18px !important;
  right: 18px !important;
  bottom: 16px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: calc(100% - 36px) !important;
}
.deal-marquee-copy strong {
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  font-size: clamp(1.0rem, 1.15vw, 1.32rem) !important;
  line-height: 1.02 !important;
  letter-spacing: .018em !important;
  text-wrap: balance;
}
.deal-marquee-copy small,
.deal-marquee-copy em {
  display: none !important;
}
.news-filter.quick-filter {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-template-columns: none !important;
  min-width: 112px !important;
  width: auto !important;
  min-height: 52px !important;
  padding: 0 18px !important;
  white-space: nowrap !important;
  overflow: visible !important;
  font-size: clamp(.68rem, .82vw, .86rem) !important;
  line-height: 1 !important;
  text-align: center !important;
}
.news-filter.quick-filter span {
  display: block;
  white-space: nowrap;
}
.quick-filter-row {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)) !important;
  align-items: stretch !important;
}
.quick-filter:not(.news-filter) {
  grid-template-columns: 42px minmax(68px, 1fr) 34px !important;
  min-height: 66px !important;
  overflow: visible !important;
}
.quick-filter:not(.news-filter) .quick-filter-label {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  font-size: clamp(.66rem, .72vw, .80rem) !important;
  line-height: 1.05 !important;
  letter-spacing: .035em !important;
}
.quick-filter-count {
  justify-self: end;
  min-width: 30px !important;
}
@media (max-width: 760px) {
  .deal-marquee-card { width: 78vw !important; min-height: 170px !important; }
  .quick-filter-row { display: flex !important; overflow-x: auto !important; }
  .quick-filter:not(.news-filter) { min-width: 172px !important; }
}

/* Final directory realism pass: keep all category hero images as clean rectangles. */
.category-section .category-visual,
.category-section.shape-rectangle .category-visual {
  clip-path: none !important;
  border-radius: 26px !important;
}

/* Business profile completion pass */
.logo-frame {
  overflow: hidden;
}
.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.category-partner-card .partner-logo {
  width: 86px;
  height: 86px;
  margin-bottom: 6px;
  border-color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.72);
  box-shadow: 0 14px 38px rgba(0,0,0,.34), 0 0 34px color-mix(in srgb, var(--cat), transparent 45%);
}
.premium-card .listing-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border-color: rgba(255,255,255,.74);
  background: rgba(0,0,0,.72);
  box-shadow: 0 10px 24px rgba(0,0,0,.32);
}
.free-card .listing-logo img {
  object-fit: cover;
}
.profile-hero {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  align-items: end;
  margin: 16px 0 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.42), rgba(0,0,0,.2)),
    var(--profile-img);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 24px 70px rgba(0,0,0,.36);
}
.profile-hero .profile-head {
  width: 100%;
  margin: 0;
  padding: 20px;
  position: relative;
  z-index: 2;
}
.profile-hero .profile-head img {
  background: rgba(0,0,0,.76);
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 22px;
  object-fit: cover;
}
.profile-hero .profile-head h2,
.profile-hero .profile-head .eyebrow {
  text-shadow: 0 2px 18px rgba(0,0,0,.72);
}
.business-form label.wide textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
}
@media (max-width: 700px) {
  .profile-hero { min-height: 190px; }
  .profile-hero .profile-head { grid-template-columns: 68px 1fr; padding: 16px; }
  .profile-hero .profile-head img { width: 68px; height: 68px; }
}

/* Mobile + interaction cleanup pass */
.deal-marquee-heading {
  position: relative;
}
.deal-marquee-panel .mobile-accordion-content {
  position: relative;
}
.deal-marquee-controls {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}
.deal-scroll-control {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(0,0,0,.62);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,.36), inset 0 0 18px rgba(255,255,255,.05);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.deal-scroll-control:hover,
.deal-scroll-control:focus-visible {
  transform: scale(1.06);
  background: rgba(255,138,0,.82);
  border-color: rgba(255,255,255,.44);
}
.deal-image-marquee {
  overflow-x: auto !important;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.deal-image-marquee::-webkit-scrollbar { display: none; }
.deal-marquee-panel.is-user-controlled .deal-marquee-track {
  animation-play-state: paused !important;
}
.mobile-accordion-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 10px 14px;
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.mobile-accordion-toggle:hover,
.mobile-accordion-toggle:focus-visible {
  background: rgba(255,138,0,.20);
  border-color: rgba(255,138,0,.46);
}

@media (max-width: 760px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .section-shell,
  .platform-panel,
  .community-spotlight-panel,
  .events-panel,
  .business-deals-panel,
  .directory-intro,
  .category-section,
  .category-layout-grid,
  .spotlight-content-grid,
  .newsletter-card,
  .news-grid,
  .events-feed,
  .deals-feed {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .section-heading.split-heading {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .mobile-accordion-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
  }
  .mobile-collapsible.is-mobile-collapsed .mobile-accordion-content {
    display: none !important;
  }
  .mobile-collapsible:not(.is-mobile-collapsed) .mobile-accordion-toggle::after {
    content: "  –";
  }
  .mobile-collapsible.is-mobile-collapsed .mobile-accordion-toggle::after {
    content: "  +";
  }
  .spotlight-content-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .newsletter-card {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    padding: 18px !important;
    border-radius: 22px !important;
  }
  .newsletter-card h3 {
    font-size: clamp(1.05rem, 7vw, 1.55rem) !important;
    line-height: 1.02 !important;
    overflow-wrap: anywhere;
  }
  .newsletter-form > div {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100% !important;
    max-width: 100% !important;
  }
  .news-filter-row {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .news-filter.quick-filter {
    min-width: 0 !important;
    flex: 1 1 calc(50% - 8px) !important;
    padding: 0 10px !important;
    font-size: .68rem !important;
  }
  .events-feed {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .deal-marquee-controls {
    left: 4px;
    right: 4px;
  }
  .deal-scroll-control {
    width: 38px;
    height: 38px;
    font-size: 1.65rem;
  }
  .deal-image-marquee {
    max-width: 100% !important;
  }
  .deal-marquee-card {
    width: 78vw !important;
    min-width: 78vw !important;
  }
}

/* Business population + admin simplicity pass */
.business-form label.wide,
.business-form label:has(textarea) {
  display: flex !important;
  flex-direction: column !important;
}
.business-form textarea {
  display: block !important;
  width: 100% !important;
  min-height: 130px !important;
  resize: vertical !important;
}
.free-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.free-card .free-profile-trigger {
  border: 1px solid color-mix(in srgb, var(--biz), #ffffff 36%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--biz), rgba(255,255,255,.08) 20%);
  color: #fff;
  padding: 6px 8px;
  font-size: .62rem;
  font-weight: 1000;
  letter-spacing: .045em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.free-card .free-profile-trigger:hover,
.free-card .free-profile-trigger:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--biz), transparent 72%);
  transform: translateY(-1px);
}
.profile-modal .tier-label {
  display: inline-flex;
  margin-bottom: 4px;
}
@media (max-width: 700px) {
  .free-card .free-profile-trigger,
  .free-card-links a {
    font-size: .58rem !important;
    padding: 5px 7px !important;
  }
}

/* Final marquee + mobile accordion polish pass */
.section-heading-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}
.deal-marquee-shell {
  position: relative;
  width: 100%;
}
.deal-image-marquee {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
}
.deal-image-marquee:active { cursor: grabbing; }
.deal-image-marquee::-webkit-scrollbar { display: none; }
.deal-marquee-track {
  animation: none !important;
  width: max-content;
  will-change: transform;
}
.deal-marquee-card {
  position: relative;
  flex: 0 0 clamp(260px, 25vw, 340px);
  min-height: 210px;
  overflow: hidden;
}
.deal-marquee-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 74%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.48) 38%, rgba(0,0,0,.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.deal-marquee-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 3px;
  min-width: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,.85);
}
.deal-marquee-copy strong,
.deal-marquee-copy small,
.deal-marquee-copy em {
  display: block !important;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}
.deal-marquee-copy strong {
  font-size: clamp(1.02rem, 1.45vw, 1.32rem) !important;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.deal-marquee-copy small {
  font-size: .82rem !important;
  font-weight: 950;
  letter-spacing: .02em;
  opacity: .98;
}
.deal-marquee-copy em {
  font-size: .72rem !important;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.deal-marquee-controls,
.deal-scroll-control {
  display: flex;
}
.deal-scroll-control.prev,
.deal-scroll-control.next {
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
}
.deal-scroll-control.prev { left: 10px; }
.deal-scroll-control.next { right: 10px; }
.deal-scroll-control.prev:hover,
.deal-scroll-control.prev:focus-visible,
.deal-scroll-control.next:hover,
.deal-scroll-control.next:focus-visible {
  transform: translateY(-50%) scale(1.06);
}
.mobile-accordion-toggle {
  white-space: nowrap;
}
@media (max-width: 760px) {
  .deal-marquee-panel .deal-marquee-heading,
  .events-panel .split-heading,
  .community-spotlight-panel .split-heading {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    align-items: start !important;
  }
  .deal-marquee-panel .mobile-accordion-toggle,
  .events-panel .mobile-accordion-toggle,
  .community-spotlight-panel .mobile-accordion-toggle {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 16px;
  }
  .mobile-collapsible.is-mobile-collapsed .mobile-accordion-content {
    display: none !important;
  }
  .mobile-collapsible:not(.is-mobile-collapsed) .mobile-accordion-toggle::after { content: "  –"; }
  .mobile-collapsible.is-mobile-collapsed .mobile-accordion-toggle::after { content: "  +"; }
  .deal-marquee-card {
    flex-basis: min(82vw, 330px) !important;
    min-height: 188px !important;
  }
  .deal-marquee-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .deal-marquee-copy strong { font-size: 1.04rem !important; }
  .deal-marquee-copy small { font-size: .76rem !important; }
  .deal-marquee-copy em { font-size: .66rem !important; }
  .deal-scroll-control.prev { left: 6px; }
  .deal-scroll-control.next { right: 6px; }
  .news-filter-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    overflow: visible !important;
  }
  .news-filter.quick-filter {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 8px !important;
    font-size: .63rem !important;
    white-space: nowrap !important;
  }
  .news-filter.quick-filter span {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .spotlight-content-grid,
  .newsletter-card,
  .news-grid,
  .article-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .floating-compass {
    width: 90px !important;
    height: 90px !important;
    right: 10px !important;
    bottom: 10px !important;
  }
}

/* Targeted publish polish: keep marquee visible, readable, and controllable without changing desktop layout. */
#featured-deals-marquee.deal-marquee-panel .mobile-accordion-toggle { display: none !important; }
#featured-deals-marquee .deal-marquee-content { display: block !important; }
#featured-deals-marquee .deal-marquee-shell { position: relative; }
#featured-deals-marquee .deal-image-marquee {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
#featured-deals-marquee .deal-marquee-track {
  animation: none !important;
  display: flex !important;
  gap: 18px !important;
  width: max-content !important;
  will-change: scroll-position;
}
#featured-deals-marquee .deal-marquee-card {
  position: relative;
  flex: 0 0 clamp(270px, 25vw, 350px) !important;
  min-height: 214px !important;
  overflow: hidden;
}
#featured-deals-marquee .deal-marquee-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 38%, rgba(0,0,0,.72) 100%),
    radial-gradient(circle at 50% 46%, rgba(0,0,0,.55), rgba(0,0,0,0) 38%);
  pointer-events: none;
}
#featured-deals-marquee .deal-marquee-copy {
  position: absolute !important;
  inset: 16px !important;
  z-index: 2;
  display: grid !important;
  grid-template-areas:
    "."
    "business"
    "location"
    "."
    "title";
  grid-template-rows: 1fr auto auto 1fr auto;
  justify-items: center;
  align-items: center;
  gap: 2px;
  padding: 0 !important;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,.9);
  pointer-events: none;
}
#featured-deals-marquee .deal-marquee-copy strong,
#featured-deals-marquee .deal-marquee-copy small,
#featured-deals-marquee .deal-marquee-copy em {
  display: block !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-style: normal !important;
  line-height: 1.05 !important;
}
#featured-deals-marquee .deal-marquee-copy strong {
  grid-area: title;
  justify-self: start;
  align-self: end;
  font-size: clamp(1rem, 1.35vw, 1.25rem) !important;
  font-weight: 1000 !important;
  letter-spacing: -.02em !important;
}
#featured-deals-marquee .deal-marquee-copy small {
  grid-area: business;
  font-size: clamp(.92rem, 1.05vw, 1.08rem) !important;
  font-weight: 1000 !important;
  letter-spacing: .01em !important;
}
#featured-deals-marquee .deal-marquee-copy em {
  grid-area: location;
  font-size: .75rem !important;
  font-weight: 900 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase;
  color: rgba(255,255,255,.86) !important;
}
#featured-deals-marquee .deal-scroll-control.prev,
#featured-deals-marquee .deal-scroll-control.next {
  display: inline-grid !important;
  place-items: center;
}

.quick-filter-row { padding-top: 12px !important; }
.quick-filter.is-active { margin-top: 2px; }

@media (max-width: 760px) {
  #featured-deals-marquee .mobile-accordion-content,
  #featured-deals-marquee .deal-marquee-content { display: block !important; }
  #featured-deals-marquee .deal-scroll-control.prev,
  #featured-deals-marquee .deal-scroll-control.next { display: none !important; }
  #featured-deals-marquee .deal-marquee-card {
    flex-basis: min(82vw, 340px) !important;
    min-height: 190px !important;
  }
  #featured-deals-marquee .deal-marquee-copy { inset: 14px !important; }
  #featured-deals-marquee .deal-marquee-copy strong { font-size: 1.02rem !important; }
  #featured-deals-marquee .deal-marquee-copy small { font-size: .9rem !important; }
  #featured-deals-marquee .deal-marquee-copy em { font-size: .68rem !important; }
  .floating-compass {
    width: 96px !important;
    height: 96px !important;
    right: 10px !important;
    bottom: 10px !important;
  }
  .quick-filter-row { padding-top: 14px !important; }
}


/* Scroll behavior restoration pass: keep the deals marquee auto-moving, manually browsable, and loop-safe. */
#featured-deals-marquee .deal-marquee-content,
#featured-deals-marquee .mobile-accordion-content {
  display: block !important;
}

#featured-deals-marquee .deal-marquee-shell {
  position: relative !important;
  overflow: visible !important;
}

#featured-deals-marquee .deal-image-marquee {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-x: contain !important;
  cursor: grab !important;
  scrollbar-width: none !important;
}

#featured-deals-marquee .deal-image-marquee::-webkit-scrollbar {
  display: none !important;
}

#featured-deals-marquee .deal-image-marquee.is-dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
}

#featured-deals-marquee .deal-marquee-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  width: max-content !important;
  min-width: max-content !important;
  animation: none !important;
  transform: none !important;
  will-change: auto !important;
}

#featured-deals-marquee .deal-marquee-card {
  flex: 0 0 320px !important;
  width: 320px !important;
  min-height: 188px !important;
  overflow: hidden !important;
}

#featured-deals-marquee .deal-marquee-copy {
  position: absolute !important;
  inset: auto 14px 14px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 4px !important;
  min-width: 0 !important;
  max-width: calc(100% - 28px) !important;
  z-index: 2 !important;
}

#featured-deals-marquee .deal-marquee-copy strong,
#featured-deals-marquee .deal-marquee-copy small,
#featured-deals-marquee .deal-marquee-copy em {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.12 !important;
  margin: 0 !important;
}

#featured-deals-marquee .deal-marquee-copy strong {
  font-size: 1rem !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
}

#featured-deals-marquee .deal-marquee-copy small {
  font-size: .82rem !important;
  font-weight: 800 !important;
}

#featured-deals-marquee .deal-marquee-copy em {
  font-size: .72rem !important;
  font-style: normal !important;
  opacity: .9 !important;
}

#featured-deals-marquee .deal-scroll-control.prev,
#featured-deals-marquee .deal-scroll-control.next {
  display: grid !important;
}

@media (max-width: 760px) {
  #featured-deals-marquee .deal-scroll-control.prev,
  #featured-deals-marquee .deal-scroll-control.next {
    display: none !important;
  }

  #featured-deals-marquee .deal-marquee-card {
    flex-basis: 78vw !important;
    width: 78vw !important;
    min-height: 170px !important;
  }

  #featured-deals-marquee .deal-marquee-copy {
    inset: auto 12px 12px 12px !important;
  }
}


/* Final clickthrough + marquee behavior cleanup */
#featured-deals-marquee .deal-image-marquee {
  scroll-behavior: smooth !important;
  touch-action: pan-x !important;
}
#featured-deals-marquee .deal-image-marquee.is-dragging {
  scroll-behavior: auto !important;
}
#featured-deals-marquee .deal-marquee-card {
  cursor: pointer !important;
  user-select: none !important;
}
#featured-deals-marquee .deal-marquee-card:focus-visible {
  outline: 3px solid rgba(255,255,255,.9) !important;
  outline-offset: 4px !important;
}
#featured-deals-marquee .deal-marquee-copy {
  inset: auto 16px 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 5px !important;
  text-align: left !important;
  max-width: calc(100% - 32px) !important;
  pointer-events: none !important;
}
#featured-deals-marquee .deal-marquee-copy strong,
#featured-deals-marquee .deal-marquee-copy small,
#featured-deals-marquee .deal-marquee-copy em {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.08 !important;
  margin: 0 !important;
}
#featured-deals-marquee .deal-marquee-copy strong {
  order: 3 !important;
  font-size: clamp(.95rem, 1.15vw, 1.12rem) !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}
#featured-deals-marquee .deal-marquee-copy small {
  order: 1 !important;
  align-self: center !important;
  text-align: center !important;
  font-size: clamp(1rem, 1.35vw, 1.2rem) !important;
  font-weight: 1000 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,.95) !important;
}
#featured-deals-marquee .deal-marquee-copy em {
  order: 2 !important;
  align-self: center !important;
  text-align: center !important;
  font-size: .76rem !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  opacity: .92 !important;
}
#featured-deals-marquee .deal-scroll-control.prev,
#featured-deals-marquee .deal-scroll-control.next {
  display: grid !important;
}
@media (max-width: 760px) {
  #featured-deals-marquee .deal-scroll-control.prev,
  #featured-deals-marquee .deal-scroll-control.next {
    display: none !important;
  }
  #featured-deals-marquee .deal-marquee-copy {
    inset: auto 12px 12px 12px !important;
    gap: 4px !important;
  }
  #featured-deals-marquee .deal-marquee-copy small {
    font-size: .95rem !important;
  }
  #featured-deals-marquee .deal-marquee-copy em {
    font-size: .65rem !important;
  }
  #featured-deals-marquee .deal-marquee-copy strong {
    font-size: .92rem !important;
  }
}

/* === Interaction Integrity Pass: clean marquee + reliable clickable cards === */
#featured-deals-marquee .deal-marquee-track,
#featured-deals-marquee .marquee-track {
  animation: none !important;
  transform: none !important;
  will-change: auto !important;
}

#featured-deals-marquee .deal-image-marquee {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#featured-deals-marquee .deal-image-marquee.is-dragging,
#featured-deals-marquee .deal-image-marquee:active {
  cursor: grabbing;
}

#featured-deals-marquee .deal-image-marquee::-webkit-scrollbar { display: none; }

#featured-deals-marquee .deal-marquee-card {
  flex: 0 0 clamp(260px, 28vw, 390px) !important;
  width: clamp(260px, 28vw, 390px) !important;
  min-height: 190px !important;
  border: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x;
}

#featured-deals-marquee .deal-marquee-card::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.18) 36%, rgba(0,0,0,.78) 100%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.48), transparent 34%) !important;
}

#featured-deals-marquee .deal-marquee-copy {
  inset: 0 !important;
  padding: 18px 20px !important;
  display: block !important;
  text-align: left !important;
  pointer-events: none !important;
}

#featured-deals-marquee .deal-marquee-copy strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: block !important;
  max-width: calc(100% - 36px);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem) !important;
  line-height: 1.02 !important;
  letter-spacing: .035em !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0,0,0,.72);
}

#featured-deals-marquee .deal-marquee-copy small,
#featured-deals-marquee .deal-marquee-copy em {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block !important;
  width: calc(100% - 56px);
  max-width: 260px;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(6px);
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

#featured-deals-marquee .deal-marquee-copy small {
  top: 48%;
  font-size: .82rem !important;
  font-weight: 900 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase;
}

#featured-deals-marquee .deal-marquee-copy em {
  top: calc(48% + 31px);
  font-size: .72rem !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
  opacity: .92;
}

#featured-deals-marquee .deal-scroll-control {
  display: grid !important;
  place-items: center;
  z-index: 8;
}

.modal-contact-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.modal-contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,.74);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.modal-contact-form input,
.modal-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 12px 13px;
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
}

@media (max-width: 760px) {
  #featured-deals-marquee .deal-scroll-control {
    display: none !important;
  }
  #featured-deals-marquee .deal-marquee-card {
    flex-basis: 82vw !important;
    width: 82vw !important;
    min-height: 178px !important;
  }
  #featured-deals-marquee .deal-marquee-copy strong {
    font-size: 1.08rem !important;
    bottom: 16px;
  }
  #featured-deals-marquee .deal-marquee-copy small,
  #featured-deals-marquee .deal-marquee-copy em {
    max-width: 230px;
  }
}
