/* ============================================================
   The Wealth Mosaic, landing v1
   ============================================================ */

:root {
  --ink: #101524;
  --ink-soft: #3b4258;
  --muted: #6b7280;
  --rule: #e5e7eb;
  --rule-soft: #eef0f3;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --navy: #0e1b36;
  --navy-2: #0a1429;
  --magenta: #e6175a;
  --magenta-2: #ff2a72;
  --accent-blue: #2a3a8c;
  --select-caret: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23101524' d='M0 0l5 6 5-6z'/></svg>");

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --max: 1320px;
  --gutter: 32px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: var(--font);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt", "ss01";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----------------------------------
   Buttons & generic UI
   ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: #fff;
  border: 0;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--magenta-2); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { background: #f1f1f4; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  font-weight: 500;
}
.pill.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.section-head h2::before {
  content: "";
  width: 14px; height: 20px;
  background: url("../assets/logos/chevron-mark.svg") center/contain no-repeat;
  flex-shrink: 0;
}
.section-head .view-all {
  font-size: 13px;
  font-weight: 600;
  color: #2c56e0;
}
.section-head .view-all:hover { color: #1d3fa8; }
select.filter {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  min-height: 34px;
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #fff var(--select-caret) right 14px center / 10px 6px no-repeat;
  appearance: none;
  -webkit-appearance: none;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(16, 21, 36, .02);
}
select.filter:hover {
  border-color: #d5dae3;
}
select.filter:focus {
  outline: 2px solid rgba(44, 86, 224, .16);
  outline-offset: 2px;
  border-color: #b9c2d2;
}

/* ----------------------------------
   Announcement scroller — one story at a time
   ---------------------------------- */
.announce {
  /* Hidden for launch (announce={false}). Recolored to brand pink — no blue — for whenever it returns. */
  background: var(--magenta);
  color: #fff;
  font-size: 13px;
}
.announce--scroller .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.announce-rotor {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
}
.announce-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .45s ease, transform .45s ease, visibility .45s;
  pointer-events: none;
}
.announce-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.announce-slide__label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 4px 10px;
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.announce-slide__chev {
  width: 9px;
  height: 13px;
  background: url("../assets/icons/announce-chevron.png") center/contain no-repeat;
  flex-shrink: 0;
}
.announce-slide__headline {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -.005em;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.announce-slide:hover .announce-slide__headline { text-decoration: underline; }

.announce-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.announce-nav__btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.announce-nav__btn:hover { background: rgba(255,255,255,.22); }
.announce-nav__dots {
  display: inline-flex;
  gap: 5px;
  padding: 0 6px;
}
.announce-nav__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: background .15s ease, width .15s ease;
}
.announce-nav__dot.is-active {
  background: #fff;
  width: 16px;
  border-radius: 100px;
}

/* ----------------------------------
   Header
   ---------------------------------- */
.site-header {
  border-bottom: 1px solid var(--rule);
  background: #fff;
  position: relative;
  z-index: 60;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.primary-nav {
  display: flex;
  gap: 18px;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  min-width: 0;
}
.primary-nav .nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .15s ease;
  padding: 28px 0;
  position: relative;
  flex-shrink: 0;
}
.primary-nav .nav-link.has-caret::after {
  content: "";
  width: 8px; height: 5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: .5;
  transition: opacity .15s ease, transform .15s ease;
}
.primary-nav .nav-link:hover { color: var(--magenta); }
.primary-nav .nav-link:hover::after { opacity: 1; }

/* ----------------------------------
   Mega menu, search-panel architecture
   (contained white card, tabs + card grid)
   ---------------------------------- */
.mega-item {
  position: relative;        /* mega anchors to its trigger */
  display: inline-flex;
  align-items: stretch;
}
.mega-item:hover .nav-link.has-caret::after,
.mega-item:focus-within .nav-link.has-caret::after {
  opacity: 1;
  transform: rotate(180deg);
}
.mega-item:hover > .nav-link,
.mega-item:focus-within > .nav-link {
  color: var(--magenta);
}

.mega {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .2s ease, visibility .18s;
  z-index: 55;
  pointer-events: none;
  padding-top: 14px;          /* hover bridge so cursor can cross gap */
}
.mega-item:hover > .mega,
.mega-item:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega__panel {
  width: min(960px, 96vw);
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 30px 60px rgba(16,21,36,.18),
    0 4px 12px rgba(16,21,36,.08);
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 0;
  padding: 22px;
  text-align: left;
}
.mega--narrow .mega__panel {
  width: min(720px, 96vw);
  grid-template-columns: 180px minmax(0, 1fr);
}

/* Left tab rail */
.mega__tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--rule-soft);
  padding-right: 14px;
  margin-right: 22px;
}
.mtab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  text-align: left;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
  white-space: nowrap;
}
.mtab:not(.mtab--active):hover { background: #f4f6f8; color: var(--ink); }
.mtab--active,
.mtab--active:hover {
  background: linear-gradient(180deg, #3d6bf0, #2c56e0);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px -4px rgba(44,86,224,.45);
}

/* Card grid */
.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.mcard {
  display: block;
  background: #f3f5f7;
  border-radius: 8px;
  padding: 14px 16px;
  color: inherit;
  transition: background .15s ease, transform .15s ease;
}
.mcard:hover {
  background: #ebeef2;
  transform: translateY(-1px);
}
.mcard h4 {
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
}
.mcard p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.mcard--cta {
  background: #fff;
  border: 1px dashed #cdd2da;
}
.mcard--cta:hover {
  background: #fff;
  border-color: var(--magenta);
}
.mcard--cta h4 { color: var(--magenta); }
.mcard--cta:hover h4 { color: var(--magenta-2); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.signin {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color .15s ease;
}
.signin:hover { color: var(--magenta); }
.header-cta .btn {
  padding: 9px 20px;
  font-size: 13.5px;
}

/* ====================================================================
   Hero
   -----
   Layered composition: search and center copy sit above an oversized,
   faded brand wheel backdrop.
   ==================================================================== */
.hero {
  --wheel-size: clamp(940px, 90vw, 1940px);
  --wheel-top: clamp(-260px, -8vw, -92px);
  --search-wash-height: clamp(150px, 14vw, 230px);
  position: relative;
  padding: 46px 0 0;
  min-height: clamp(700px, 62vw, 1320px);
  isolation: isolate;
  display: grid;
  place-items: start center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: var(--search-wash-height);
  background: #fff;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity .45s ease, height .7s cubic-bezier(.4, 0, .2, 1);
}
/* Focused state, wheel stays large (user prefers oversized; OK if some
   of the outer-tail edges get cropped by the viewport / stats banner).
   Just slightly smaller than the default-state hero so the search + chips
   read cleanly above it. */
.hero.is-focused,
.hero.has-selection {
  --active-top-space: clamp(145px, 17vh, 230px);
  --wheel-size: clamp(1120px, min(132vw, 160vh), 2200px);
  --wheel-top: calc(var(--active-top-space) + ((100vh - var(--active-top-space) - var(--wheel-size)) / 2));
  min-height: max(820px, 100vh);
  padding-top: 28px;
  overflow: hidden;
}
.hero.is-focused::before,
.hero.has-selection::before {
  opacity: 0;
  height: 0;
}
/* Hide the default center copy (heading + Visit-all-directories CTA)
   once the wheel is focused, the wheel itself is the interface now. */
.hero.is-focused #centerDefault {
  opacity: 0;
  transform: translate(-50%, calc(-50% - 12px));
  pointer-events: none;
  transition: opacity .35s ease, transform .45s ease;
}
.hero .hero-content {
  position: relative;
  z-index: 2;            /* search & filters above wheel backdrop */
  width: 100%;
}

/* Search row floats above the wheel backdrop */
.hero-search-row {
  text-align: center;
  position: relative;
  margin: 0 auto 8px;
  max-width: 760px;
  z-index: 2;
  transition: opacity .55s ease, transform .55s cubic-bezier(.4, 0, .2, 1),
              max-height .55s cubic-bezier(.4, 0, .2, 1),
              margin .55s cubic-bezier(.4, 0, .2, 1);
  max-height: 260px;
  overflow: visible;
}
.hero.search-tucked .hero-search-row {
  opacity: 0;
  transform: translateY(-12px) scale(.96);
  max-height: 0;
  margin-bottom: -8px;
  pointer-events: none;
  overflow: hidden;
}
/* Focused state, keep search visible but collapse the eyebrow labels
   so only the pill + filters sit above the wheel (matches v56). */
.hero.is-focused .search-label,
.hero.is-focused .search-sublabel {
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: opacity .35s ease, max-height .4s ease, margin .4s ease;
}
.search-label,
.search-sublabel {
  font-size: 14.5px;
  color: #9aa0aa;
  margin: 14px 0;
  font-weight: 500;
  letter-spacing: -.002em;
  min-height: 20px;
}
.search-label .search-slot,
.search-sublabel .search-slot {
  display: inline-block;
  white-space: nowrap;
}
.hero-search-row.is-rotating .search-label .search-slot,
.hero-search-row.is-rotating .search-sublabel .search-slot,
.hero-search-row.is-rotating .search-pill__rotor .search-slot {
  opacity: 0;
}
.search-rotator-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: visible;
}
.search-rotate-clone {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  will-change: transform, opacity, color, font-size;
  transition:
    transform .72s cubic-bezier(.22, 1, .36, 1),
    opacity .5s ease,
    color .72s ease,
    font-size .72s cubic-bezier(.22, 1, .36, 1),
    font-weight .72s ease;
}
.search-rotate-clone--incoming {
  opacity: 0;
}
.search-pill input::placeholder { transition: color .18s ease, opacity .18s ease; }

.search-pill {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 999px;
  padding: 7px 7px 7px 30px;
  max-width: 680px;
  min-height: 64px;
  margin: 0 auto;
  transition: box-shadow .15s ease, border-color .15s ease;
  position: relative;
  z-index: 4;
}
.search-pill:focus-within {
  border-color: #3dc7c0;
  box-shadow: 0 0 0 4px rgba(61,199,192,.18);
}
.search-pill input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 12px 0;
  font-size: 15.5px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  background: transparent;
  color: var(--ink);
  letter-spacing: -.005em;
}
.search-pill input::placeholder {
  color: #b6bac3;
  font-weight: 500;
  letter-spacing: -.002em;
}
.search-pill.has-rotator:not(:focus-within) input::placeholder {
  color: transparent;
}
.search-pill__rotor {
  position: absolute;
  left: 30px;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  color: #b6bac3;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.4;
  white-space: nowrap;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity .18s ease;
}
.search-pill:focus-within .search-pill__rotor,
.search-pill.has-value .search-pill__rotor {
  opacity: 0;
}
.search-pill__rotor .search-slot {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.search-pill button {
  width: 44px; height: 44px;
  background: var(--magenta);
  border: 0;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .15s ease;
  flex-shrink: 0;
}
.search-pill button:hover { background: var(--magenta-2); }

/* Search dropdown panel */
.search-panel {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
  width: min(880px, 96vw);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(16,21,36,.18), 0 4px 12px rgba(16,21,36,.08);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  padding: 26px;
  z-index: 5;
  text-align: left;
}
.search-panel[hidden] { display: none; }
.search-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--rule-soft);
  padding-right: 16px;
}
.stab {
  border: 0;
  background: transparent;
  padding: 9px 14px;
  text-align: left;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.stab:hover { background: #f4f6f8; }
.stab.active {
  background: linear-gradient(180deg, #4cd5cc, #3bbab3);
  color: #fff;
  font-weight: 600;
}
.search-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-left: 20px;
}
.scard {
  background: #f3f5f7;
  border-radius: 8px;
  padding: 14px 16px;
  transition: background .15s ease;
}
.scard:hover { background: #ebeef2; }
.scard h4 {
  margin: 0 0 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.scard p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Wheel filter chips */
.wheel-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 0;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.wheel-filters[hidden] { display: none; }
.hero.is-focused .wheel-filters {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.chip {
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 999px;
  padding: 10px 20px 10px 22px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -.005em;
  box-shadow: 0 1px 2px rgba(16,21,36,.04);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.chip:hover {
  border-color: #bfc6cf;
  box-shadow: 0 4px 10px rgba(16,21,36,.06);
}
.chip .caret {
  display: inline-block;
  width: 10px;
  height: 6px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: .55;
}

/* ====================================================================
   Wheel stage, oversized absolute backdrop.
   DEFAULT  : faded behind the search and transparent center overlay.
   FOCUSED  : search tucks away, the brand SVG saturates, and its
              markers become the interactive segment targets.
   ==================================================================== */
/* Wheel backdrop, layer 1. Absolute, oversized, and faded behind the
   search and center overlay. */
.wheel-stage {
  position: absolute;
  top: var(--wheel-top);
  left: 50%;
  width: var(--wheel-size);
  aspect-ratio: 1;
  margin: 0;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none; /* re-enabled on markers below */
  transition: width .7s cubic-bezier(.4, 0, .2, 1),
              top .7s cubic-bezier(.4, 0, .2, 1);
}
.wheel-stage .wheel-brand-host,
.wheel-stage .brand-marker { pointer-events: none; }
.wheel-stage.is-focused .wheel-brand-host,
.wheel-stage.has-selection .wheel-brand-host,
.wheel-stage.is-focused .brand-marker,
.wheel-stage.has-selection .brand-marker {
  pointer-events: auto;
}
.wheel-stage::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,23,90,.10), rgba(61,199,192,.06) 40%, transparent 70%);
  opacity: 0;
  transform: scale(.86);
  transition: opacity .35s ease, transform .35s ease;
  z-index: -1;
}
/* JS wheel is now a data-only store, never visible, never interactive.
   The brand SVG below is what the user sees and clicks. */
.wheel-stage .wheel {
  width: 100%;
  height: 100%;
  display: none;
}

/* Brand wheel, inline SVG, always the visible wheel in every state. */
.wheel-stage .wheel-brand-host {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  user-select: none;
  /* Default (idle), wheel reads as a calm background; headline + CTA dominate. */
  opacity: .28;
  filter: saturate(.58) contrast(.96);
  transform-origin: center;
  transition: opacity .55s ease, filter .55s ease,
              transform .55s cubic-bezier(.2,.75,.2,1);
}
.wheel-stage .wheel-brand-host svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.wheel-stage .wheel-brand-host svg path:not(.brand-marker) {
  pointer-events: none;
}

/* Focused (after the user clicks "Visit all directories" or a marker),
   full saturation, slight scale, brand wheel becomes the spotlight. */
.wheel-stage.is-focused .wheel-brand-host,
.wheel-stage.has-selection .wheel-brand-host {
  opacity: .9;
  filter: saturate(1) contrast(1);
  transform: scale(1.01);
}

/* Each colored marker carries a per-path radial unit vector (--bux/--buy)
   computed at init from getBBox; --lift drives a CSS translate so hover
   and selection lift each marker outward along its own axis. */
.wheel-stage .wheel-brand-host .brand-marker {
  --lift: 0;
  cursor: pointer;
  transform: translate(calc(var(--bux, 0) * var(--lift) * 1px),
                       calc(var(--buy, 0) * var(--lift) * 1px));
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition: opacity .25s ease, filter .3s ease,
              transform .4s cubic-bezier(.34, 1.35, .64, 1);
  will-change: transform, filter, opacity;
}
/* Hover state, only fires when the wheel is focused, so the dim landing
   doesn't accidentally light up before the user has engaged. */
.wheel-stage.is-focused .wheel-brand-host svg.is-hovering .brand-marker { opacity: .22; filter: saturate(.5); }
.wheel-stage.is-focused .wheel-brand-host .brand-marker.is-hovered {
  --lift: 28;
  opacity: 1;
  filter: brightness(1.18) saturate(1.55) contrast(1.05)
          drop-shadow(0 18px 32px rgba(16,21,36,.42))
          drop-shadow(0 0 22px rgba(255,255,255,.18));
}
/* Selected state, same machine, more emphasis. */
.wheel-stage.has-selection .wheel-brand-host .brand-marker { opacity: .35; }
.wheel-stage.has-selection .wheel-brand-host .brand-marker.is-selected {
  --lift: 22;
  opacity: 1;
  filter: brightness(1.08) saturate(1.22)
          drop-shadow(0 10px 22px rgba(16,21,36,.3));
}
.wheel-stage.is-focused::before,
.wheel-stage.has-selection::before {
  opacity: 1;
  transform: scale(1);
}
/* ----------------------------------
   Wheel segments, hover & selection
   Each path carries CSS vars --ux / --uy (its radial unit vector).
   We translate by that vector × a lift distance to "magnetize" the
   slice outward from the wheel center.
   ---------------------------------- */
.wheel-stage .seg,
.wheel-stage .bar,
.wheel-stage .seg-label {
  --lift: 0;
  transform: translate(calc(var(--ux, 0) * var(--lift) * 1px),
                       calc(var(--uy, 0) * var(--lift) * 1px));
  transform-box: fill-box;
  transform-origin: 50% 50%;
  will-change: transform, filter, opacity;
}
.wheel-stage .seg {
  cursor: default;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.34, 1.35, .64, 1),
              filter .3s ease,
              opacity .25s ease;
}
.wheel-stage .bar {
  transition: transform .5s cubic-bezier(.34, 1.35, .64, 1),
              filter .3s ease,
              opacity .25s ease;
}
.wheel-stage .seg-label {
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 500;
  fill: rgba(50, 60, 80, .68);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: .01em;
  opacity: .55;
  transition: transform .45s cubic-bezier(.34, 1.35, .64, 1),
              opacity .3s ease,
              fill .2s ease,
              font-weight .2s ease;
}

/* Becomes interactive once the wheel is in focus or has a selection. */
.wheel-stage.is-focused .seg,
.wheel-stage.has-selection .seg {
  cursor: pointer;
  pointer-events: auto;
}
.wheel-stage.is-focused .seg-label,
.wheel-stage.has-selection .seg-label {
  opacity: .82;
  font-weight: 600;
}

/* ---- Hover (focused state, no selection yet) ---- */
.wheel-stage.is-focused.is-hovering .seg:not(.is-hovered) { opacity: .5; }
.wheel-stage.is-focused.is-hovering .bar:not(.is-hovered) { opacity: .35; }
.wheel-stage.is-focused.is-hovering .seg-label:not(.is-hovered) { opacity: .22; }

.wheel-stage.is-focused .seg.is-hovered {
  --lift: 18;
  filter: brightness(1.04) saturate(1.18)
          drop-shadow(0 10px 22px rgba(16, 21, 36, .24));
}
.wheel-stage.is-focused .bar.is-hovered {
  --lift: 18;
  filter: brightness(1.06) saturate(1.18);
}
.wheel-stage.is-focused .seg-label.is-hovered {
  --lift: 18;
  opacity: 1;
  fill: var(--ink);
  font-weight: 700;
}

/* ---- Selected state, same lift treatment but slightly more emphasis ---- */
.wheel-stage.has-selection .seg { opacity: .5; }
.wheel-stage.has-selection .bar { opacity: .35; }
.wheel-stage.has-selection .seg-label { opacity: .28; }

.wheel-stage.has-selection .seg.is-selected {
  --lift: 28;
  opacity: 1;
  filter: brightness(1.05) saturate(1.22)
          drop-shadow(0 14px 30px rgba(16, 21, 36, .30));
}
.wheel-stage.has-selection .bar.is-selected {
  --lift: 28;
  opacity: 1;
  filter: brightness(1.08) saturate(1.22);
}
.wheel-stage.has-selection .seg-label.is-selected {
  --lift: 28;
  opacity: 1;
  fill: var(--ink);
  font-weight: 700;
}

/* Center overlay, layer 3, top of the stack. Positioned over the wheel
   center without adding a separate circular panel. */
.wheel-center {
  position: absolute;
  top: calc(var(--wheel-top) + (var(--wheel-size) * .5));
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(var(--wheel-size) * .66));
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.2vw, 34px);
  text-align: center;
  padding: 0 24px;
  z-index: 3;
  box-shadow: none;
  transition: top .7s cubic-bezier(.4, 0, .2, 1),
              width .7s cubic-bezier(.4, 0, .2, 1);
  pointer-events: auto;
}
.wheel-center[hidden] { display: none; }
.wheel-center h1 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(26px, 2vw, 42px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.wheel-center .btn {
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 4px;
}

.wheel-center-selected h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -.014em;
  margin: 0 0 14px;
  color: var(--ink);
  text-wrap: balance;
}
.seg-stats {
  margin: 0 0 18px;
  font-size: 13px;
  display: grid;
  gap: 6px;
}
.seg-stats > div { display: flex; gap: 6px; justify-content: center; align-items: baseline; }
.seg-stats dt { color: var(--ink-soft); font-weight: 500; margin: 0; }
.seg-stats dd {
  color: var(--ink);
  font-weight: 700;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

/* Cursor decoration was tied to the (now-hidden) JS wheel geometry.
   The brand SVG already conveys selection via its own marker lift +
   drop-shadow, so we keep this element off the page. */
.wheel-cursor { display: none; }

/* Hover tooltip, follows the cursor while hovering a wheel marker.
   Shows segment name + business count from SEGMENTS. */
.brand-tooltip {
  position: absolute;
  z-index: 6;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
  pointer-events: none;
  transform: translate(14px, 14px);
  box-shadow: 0 10px 26px rgba(16,21,36,.22);
  display: grid;
  gap: 2px;
  min-width: 130px;
  white-space: nowrap;
}
.brand-tooltip[hidden] { display: none; }
.brand-tooltip strong {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -.005em;
  color: #fff;
}
.brand-tooltip span {
  font-size: 12px;
  color: rgba(255,255,255,.78);
  font-variant-numeric: tabular-nums;
}

/* ----------------------------------
   Sign-up call-out band (navy), replaces the dense stats grid.
   ---------------------------------- */
.signup-band {
  background: var(--navy);
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.signup-band::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(49,187,199,.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.signup-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 44px;
  align-items: center;
  position: relative;
}
.signup-band__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #31BBC7;
  margin-bottom: 12px;
}
.signup-band__copy h3 {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
}
.signup-band__copy p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
  max-width: 60ch;
}
.signup-band__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.signup-band__cta .btn-lg {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
}
.signup-band__signin {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.signup-band__signin strong {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 1px;
  margin-left: 4px;
}
.signup-band__signin:hover strong { border-bottom-color: #fff; }

/* ----------------------------------
   Featured Businesses
   ---------------------------------- */
.featured {
  padding: 60px 0 30px;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.business-card {
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 10px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.business-card:hover {
  box-shadow: 0 10px 28px -12px rgba(16,21,36,.12);
  transform: translateY(-2px);
  border-color: #d6dae0;
}
.business-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}
.business-card .biz-logo {
  height: 36px;
  display: flex;
  align-items: center;
}
.business-card .biz-logo img {
  max-height: 32px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.business-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  background: #fde8ef;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
  align-self: flex-start;
  white-space: nowrap;
}
.business-card__badge--sponsored {
  background: var(--ink);
  color: #fff;
}
.business-card .biz-name {
  font-weight: 700;
  font-size: 17px;
  margin: 0;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.25;
}
.biz-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.biz-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--magenta);
  background: #fff2f6;
  padding: 4px 9px;
  border-radius: 100px;
  line-height: 1.3;
}
.biz-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.biz-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--rule-soft);
}
.biz-meta .biz-loc::after {
  content: "·";
  margin: 0 8px;
  color: #c0c4cc;
}
.biz-meta .biz-loc:last-child::after { content: none; }
.biz-meta .biz-sol { color: var(--ink-soft); font-weight: 500; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.carousel-dots button {
  width: 12px; height: 12px;
  border: 0;
  border-radius: 50%;
  background: #d1d5db;
  padding: 0;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.carousel-dots button:hover { background: #b3b8c2; }
.carousel-dots button.active { background: var(--magenta); }

/* ----------------------------------
   Content grid (2-col)
   ---------------------------------- */
.content-block {
  padding: 30px 0 60px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}
.content-main .section-head { margin-bottom: 18px; }

.feature-card {
  background: #0e1b36;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
  min-height: 320px;
}
.feature-card .copy {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.feature-card .meta {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.feature-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.018em;
  color: #fff;
}
.feature-card .copy p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
  max-width: 58ch;
}
.feature-card .byline {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.feature-card .byline strong { color: #fff; }
.feature-card .illus {
  background: #0e1b36;
  display: grid;
  place-items: stretch;
  overflow: hidden;
  min-height: 320px;
}
.feature-card .illus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 22px;
}
.post-card { display: flex; flex-direction: column; gap: 10px; }
.post-card .thumb {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: #ddd;
}
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .cat {
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 700;
}
.post-card h4 {
  font-size: 16px;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
}
.post-card .byline {
  font-size: 12px;
  color: var(--muted);
}
.post-card .byline strong { color: var(--ink); font-weight: 600; }

/* Author links, blue, link to author profile */
.byline .author,
a.author {
  color: #2c56e0;
  font-weight: 600;
  text-decoration: none;
  transition: color .12s ease;
}
.byline .author:hover,
a.author:hover {
  color: #1d3fa8;
  text-decoration: underline;
}
.feature-card .byline .author,
.feature-card .byline a.author {
  color: #31BBC7;
}
.feature-card .byline a.author:hover {
  color: #5fd4dc;
}
.post-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

/* Only the thumbed cards (Row 1) carry a container, they sit alongside
   the dark feature hero and read as the second-tier highlight. The
   no-thumb cards below are plain text rows for visual hierarchy. */
.post-card:not(.no-thumb) {
  background: #f5f6f8;
  border: 1px solid #e8eaee;
  border-radius: 10px;
  padding: 16px;
  gap: 12px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.post-card:not(.no-thumb):hover {
  background: #eef0f3;
  border-color: #dde1e7;
  transform: translateY(-2px);
}
.post-card.no-thumb {
  padding: 18px 0 4px;
  gap: 8px;
  border-top: 1px solid var(--rule);
}
.post-card.no-thumb h4 { font-size: 15.5px; }
.post-card.no-thumb p {
  font-size: 12.5px;
  line-height: 1.55;
}

.divider { height: 1px; background: var(--rule); margin: 22px 0; }

/* Sidebar */
.sidebar .section-head h2 { font-size: 18px; }
.trending-list { list-style: none; padding: 0; margin: 0; }
.trending-list li {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.trending-list li:last-child { border-bottom: 0; }
.trending-list .cat {
  font-size: 10.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 700;
  margin-bottom: 6px;
}
.trending-list h4 {
  font-size: 14px;
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.trending-list .byline { font-size: 11.5px; color: var(--muted); }
.trending-list .byline strong { color: var(--ink); font-weight: 600; }

.subscribe-card {
  background: var(--magenta);
  color: #fff;
  border-radius: 10px;
  padding: 24px;
  margin: 22px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px -10px rgba(230,23,90,.35);
}
.subscribe-card::before {
  content: "";
  position: absolute;
  inset: auto -22% -55% auto;
  width: 90%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}
.subscribe-card h3 {
  font-family: var(--font);
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -.01em;
  position: relative;
  color: #fff;
}
.subscribe-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.92);
  margin: 0 0 18px;
  position: relative;
  line-height: 1.55;
}
.subscribe-card .btn {
  position: relative;
  background: #fff;
  color: var(--magenta);
}
.subscribe-card .btn:hover {
  background: #f7f7fa;
  color: var(--magenta-2);
}

/* ----------------------------------
   Sidebar ad slots, gray placeholder boxes
   ---------------------------------- */
.ad-slot {
  display: grid;
  place-items: center;
  background: #eef0f3;
  border: 1px dashed #cdd2da;
  border-radius: 8px;
  margin: 22px 0;
  aspect-ratio: 6 / 5;        /* 300×250 ish */
  color: var(--muted);
  text-decoration: none;
}
.ad-slot--tall {
  aspect-ratio: 1 / 2;        /* 300×600 ish */
}
.ad-slot__size {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9aa0aa;
}

.needs-list { counter-reset: needs; list-style: none; padding: 0; margin: 0; }
.needs-list li {
  counter-increment: needs;
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  font-size: 13.5px;
  font-weight: 500;
}
.needs-list li:last-child { border-bottom: 0; }
.needs-list li::before {
  content: counter(needs);
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px; height: 22px;
  background: var(--magenta);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

/* ----------------------------------
   Upcoming events (dark)
   ---------------------------------- */
.events {
  background: var(--navy);
  color: #fff;
  padding: 44px 0 48px;
}
.events .section-head h2 { color: #fff; }
.events .section-head h2::before {
  background: url("../assets/logos/chevron-mark.svg") center/contain no-repeat;
}
.events .section-head .view-all { color: #31BBC7; }
.events .tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 22px;
  padding-bottom: 4px;
}
.events .tab {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.55);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  text-align: left;
  transition: color .15s ease;
}
.events .tab:hover { color: rgba(255,255,255,.85); }
.events .tab.active {
  color: #fff;
  border-bottom-color: var(--magenta);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.event-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.event-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-2px);
}
.event-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 8px 0;
  background: var(--magenta);
  color: #fff;
  border-radius: 8px;
  line-height: 1;
}
.event-date__day {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.event-date__mo {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  opacity: .92;
}
.event-format {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #31BBC7;
}
.event-name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  letter-spacing: -.005em;
}
.event-meta {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
  margin: 0;
}
.event-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.event-host {
  font-size: 11px;
  color: rgba(255,255,255,.55);
}
.event-cta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--magenta);
  white-space: nowrap;
}
.event-cta:hover { color: var(--magenta-2); }

/* ----------------------------------
   Second post row + membership
   ---------------------------------- */
.posts-row {
  padding: 50px 0;
}
.posts-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.posts-row .carousel-dots { margin-top: 26px; }
.posts-row .view-all-row { text-align: right; margin-top: 14px; }
.posts-row .view-all-row a { color: #2c56e0; font-size: 13px; font-weight: 600; }

/* ----------------------------------
   Pager (page-number navigation)
   ---------------------------------- */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
}
.pager__num,
.pager__nav {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.pager__num:hover,
.pager__nav:hover {
  border-color: #bfc6cf;
  background: #f5f6f8;
}
.pager__num--active {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}
.pager__num--active:hover {
  background: var(--magenta-2);
  border-color: var(--magenta-2);
  color: #fff;
}
.pager__nav {
  font-size: 18px;
  line-height: 1;
}
.pager__ellipsis {
  padding: 0 4px;
  color: var(--muted);
  font-weight: 600;
}

.join {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.join::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -40%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(230,23,90,.18), transparent 60%);
  border-radius: 50%;
}
.join .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.join .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--magenta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.join h2 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -.022em;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0 0 28px;
  color: #fff;
}
.join h2 em { font-style: normal; color: var(--magenta); }
.join .ctas { display: flex; gap: 12px; }

.join-points { list-style: none; padding: 0; margin: 0 0 0 auto; max-width: 460px; }
.join-points li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  padding: 12px 0;
  font-size: 14px;
  align-items: start;
}
.join-points li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--magenta);
  margin-top: 4px;
}
.join-points strong { color: #fff; }
.join-points span { color: rgba(255,255,255,.75); }

/* ----------------------------------
   Newsletter bar
   ---------------------------------- */
.newsletter {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 30px 0;
}
.newsletter .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.newsletter h3 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -.015em;
  font-size: 22px;
  margin: 0 0 4px;
}
.newsletter p { margin: 0; font-size: 13px; color: var(--muted); }
.newsletter form {
  display: flex;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  border: 0;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.newsletter form button {
  width: 56px;
  background: var(--magenta);
  border: 0;
  color: #fff;
  display: grid;
  place-items: center;
}
.newsletter .disclaimer {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--muted);
  margin-top: -6px;
}
.newsletter .disclaimer a { text-decoration: underline; }

/* ----------------------------------
   Solution Provider of the Week + Footer
   ---------------------------------- */
.spow {
  border-top: 1px solid var(--rule-soft);
  padding: 36px 0;
  background: var(--bg);
}
.spow .container {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
}
.spow .card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 20px;
}
.spow .badge {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.spow .biz {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  height: 40px;
}
.spow .biz .mark {
  width: 30px; height: 30px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}
.spow .biz strong { font-size: 15px; }
.spow .spow-logo {
  max-height: 32px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.spow .biz-sub { font-size: 11.5px; color: var(--muted); margin-bottom: 14px; }
.spow .card .btn {
  background: var(--ink);
  width: 100%;
  justify-content: center;
}

.spow .col h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--ink);
}
.spow .col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.spow .col ul a { color: var(--ink-soft); font-size: 13px; }
.spow .col ul a:hover { color: var(--magenta); }
.spow .col .browse-all {
  margin-top: 16px;
  font-size: 12px;
  color: var(--magenta);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
  font-size: 12px;
  color: var(--muted);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .legal-links {
  display: flex;
  gap: 22px;
}
.site-footer .legal-links a:hover { color: var(--magenta); }
.site-footer .socials { display: flex; gap: 10px; }
.site-footer .socials a {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--rule);
}

/* ----------------------------------
   Responsive
   ---------------------------------- */
@media (max-width: 1100px) {
  .signup-band .container { grid-template-columns: 1fr; gap: 22px; }
  .signup-band__cta { align-items: flex-start; }
  .content-grid { grid-template-columns: 1fr; }
  .spow .container { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 880px) {
  .primary-nav { display: none; }
  .hero {
    --wheel-size: clamp(780px, 120vw, 1040px);
    --wheel-top: 70px;
    --search-wash-height: 280px;
    min-height: 760px;
  }
  .hero.is-focused,
  .hero.has-selection {
    --active-top-space: 150px;
    --wheel-size: clamp(760px, min(128vw, 108vh), 980px);
    --wheel-top: calc(var(--active-top-space) + ((100vh - var(--active-top-space) - var(--wheel-size)) / 2));
    min-height: 100vh;
  }
  .wheel-stage { max-width: none; }
  .wheel-center h1 { font-size: clamp(34px, 7vw, 56px); }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-row-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .join .container { grid-template-columns: 1fr; }
  .newsletter .container { grid-template-columns: 1fr; }
  .announce .container { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 560px) {
  .hero {
    --wheel-size: 700px;
    --wheel-top: 116px;
    --search-wash-height: 255px;
    min-height: 760px;
    padding-top: 34px;
  }
  .hero.is-focused,
  .hero.has-selection {
    --active-top-space: 142px;
    --wheel-size: min(760px, 112vh);
    --wheel-top: calc(var(--active-top-space) + ((100vh - var(--active-top-space) - var(--wheel-size)) / 2));
    min-height: 100vh;
  }
  .hero .container { padding: 0 12px; }
  .site-header .container {
    gap: 12px;
    padding: 0 16px;
  }
  .brand-logo { height: 28px; }
  .header-cta { gap: 8px; }
  .signin {
    font-size: 13px;
    white-space: nowrap;
  }
  .header-cta .btn {
    padding: 9px 14px;
    font-size: 13px;
  }
  .post-grid { grid-template-columns: 1fr; }
  .signup-band__copy h3 { font-size: 26px; }
  .business-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .pager__num:nth-of-type(n+4) { display: none; }
  .spow .container { grid-template-columns: 1fr; }
  .site-footer .container { flex-direction: column; gap: 12px; }
  .hero-search-row { margin-bottom: 22px; }
  .search-label,
  .search-sublabel {
    font-size: 12px;
    margin: 11px 0;
  }
  .search-pill {
    max-width: 100%;
    min-height: 54px;
    padding: 5px 5px 5px 18px;
  }
  .search-pill input { font-size: 14px; }
  .search-pill__rotor {
    left: 18px;
    right: 54px;
    font-size: 14px;
  }
  .search-pill button {
    width: 40px;
    height: 40px;
  }
  .search-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .search-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
    padding: 0 0 12px;
  }
  .search-cards {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-top: 14px;
  }
  .wheel-stage { max-width: none; }
  .wheel-filters {
    gap: 8px;
  }
  .chip {
    padding: 8px 12px;
    font-size: 12.5px;
  }
  .wheel-stage .seg-label { font-size: 13px; }
  .wheel-center {
    width: min(360px, calc(100vw - 28px));
    padding: 0 14px;
  }
  .wheel-center h1 { font-size: clamp(28px, 8vw, 36px); }
  .wheel-center .btn { padding: 12px 18px; font-size: 13.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .wheel-stage::before,
  .wheel-stage .wheel,
  .wheel-stage .seg,
  .wheel-stage .bar,
  .wheel-center {
    transition: none;
  }
}
