@font-face {
  font-family: Archivo;
  src: url("/fonts/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
/* Phone audit, 8 September 2026: the small core file covers every letter
   this page uses, so a phone downloads 27 KB instead of the 90 KB full file. */
@font-face {
  font-family: Archivo;
  src: url("/fonts/archivo-core.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2010-2015, U+2018-201F, U+2022,
    U+2026, U+20AC, U+2122, U+2190-2193;
}
* {
  box-sizing: border-box;
}
:root {
  color-scheme: dark;
  --blue: #1745ff;
  --gold: #edcd79;
  --muted: #aeb2bd;
}
/* Phone audit, 8 September 2026: the 277 KB JPEG behind the cards was the
   largest download on the site. Every use below names the JPEG first and a
   54 KB WebP second, so a browser without image-set() keeps the JPEG. The
   page is at most 480 wide, so 900 pixels covers a sharp phone screen. */
body {
  margin: 0;
  background: #050608;
  color: #fff;
  font-family: Archivo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}
.phone {
  max-width: 480px;
  margin: auto;
  min-height: 100dvh;
  background: #050608;
}
header {
  padding: 22px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
header img {
  max-width: 132px;
  display: block;
}
button,
input,
select {
  font: inherit;
}
button,
a,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
a {
  color: #7198ff;
}
main {
  padding: 8px 20px 105px;
}
main:focus {
  outline: none;
}
h1 {
  font-size: 43px;
  line-height: 1.02;
  letter-spacing: -1.6px;
  font-weight: 650;
  margin: 20px 0 15px;
}
h1 em {
  color: var(--gold);
  font-style: normal;
}
h2 {
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.7px;
  font-weight: 650;
  margin: 20px 0 14px;
}
h3 {
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 600;
}
p {
  margin: 12px 0;
}
.allowance {
  background: transparent;
  border: 1px solid #35446b;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  white-space: nowrap;
}
.card-fan {
  position: relative;
  height: 274px;
  margin: 26px 0 0;
}
.mini-card {
  position: absolute;
  top: 23px;
  width: 51%;
  height: 230px;
  background-image: url("/img/prospects/categories.jpg");
  background-image: image-set(url("/img/prospects/categories-900.webp") type("image/webp"), url("/img/prospects/categories.jpg") type("image/jpeg"));
  background-size: 300% 100%;
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow:
    0 0 0 4px #142b6c,
    0 12px 26px #0009;
  overflow: hidden;
}
.cleaning {
  background-position: 0% center;
}
.beauty {
  background-position: 50% center;
}
.business {
  background-position: 100% center;
}
.mini-card.beauty {
  left: 5px;
  transform: rotate(-10deg);
}
.mini-card.business {
  right: 5px;
  transform: rotate(10deg);
}
.mini-card.front {
  height: 270px;
  top: 0;
  left: 23%;
  width: 54%;
  z-index: 2;
}
.mini-card span {
  display: block;
  padding: 16px 8px 35px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 1px 8px #000;
  background: linear-gradient(#000b, transparent);
}
.mini-card.front span {
  font-size: 22px;
  line-height: 1.05;
}
.mini-card img {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 14px);
  width: 28px;
  height: 28px;
}
.art-note {
  font-size: 10px;
  color: #969aa5;
  text-align: center;
  margin: 10px 0;
}
.intro {
  text-align: center;
  font-size: 15px;
  color: #e0e2e9;
  margin: 14px 0 17px;
}
.selectors {
  border: 1px solid #3c414d;
  border-radius: 10px;
  padding: 0 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.selectors label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  border-bottom: 1px solid #2b303d;
}
.selectors label:last-child {
  border: 0;
}
.selectors span {
  font-size: 13px;
  color: #b9bdc9;
  flex: 0 0 90px;
}
.selectors select {
  min-width: 0;
  width: 100%;
  font-size: 14px;
  text-align: right;
  background: #050608;
  border: 0;
  color: #fff;
  padding: 12px 0;
}
.primary,
.secondary {
  border: 1px solid var(--blue);
  border-radius: 7px;
  min-height: 50px;
  padding: 12px 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.primary {
  background: var(--blue);
  color: white;
}
.secondary {
  background: transparent;
  color: #fff;
  border-color: #a58b49;
}
.wide {
  width: 100%;
}
.primary span {
  font-size: 27px;
  line-height: 1;
}
.fine {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.invite-teaser {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 18px 8px 10px;
}
.invite-teaser small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.gold {
  color: var(--gold);
}
nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  display: flex;
  padding: 10px 15px max(10px, env(safe-area-inset-bottom));
  background: #050608f5;
  border-top: 1px solid #252832;
  z-index: 5;
}
nav button {
  width: 33.333%;
  background: transparent;
  border: 0;
  color: #b8bdc8;
  font-size: 12px;
  display: grid;
  justify-items: center;
  gap: 4px;
}
nav button[aria-current] {
  color: #5680ff;
}
nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.query-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: #b9bdc8;
  margin-bottom: 24px;
}
.query-line p {
  margin: 0;
  flex: 1;
}
.text-button {
  border: 0;
  background: transparent;
  color: #86a4ff;
  padding: 12px 0;
  font-size: 14px;
}
.query-line button {
  padding: 0;
}
.prospect-card {
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px #15214b;
  border-radius: 17px;
  overflow: hidden;
  background: #090e1a;
  margin: 8px 4px 20px;
  animation: reveal 180ms ease-out;
}
.prospect-art {
  height: 220px;
  background-image: url("/img/prospects/categories.jpg");
  background-image: image-set(url("/img/prospects/categories-900.webp") type("image/webp"), url("/img/prospects/categories.jpg") type("image/jpeg"));
  background-size: 300% auto;
  position: relative;
}
.prospect-art span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  background: #000b;
  padding: 4px 7px;
}
.card-body {
  padding: 20px;
}
.card-body h2 {
  margin: 0 0 8px;
  font-size: 29px;
  overflow-wrap: anywhere;
}
.location {
  color: #bfc4d0;
  font-size: 14px;
}
.reason {
  border-top: 1px solid #746440;
  margin: 18px 0;
  padding-top: 16px;
  font-size: 15px;
}
.reason strong {
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}
.source-link {
  font-size: 13px;
  display: inline-block;
  margin: 5px 0 18px;
}
.actions {
  display: flex;
  gap: 10px;
}
.actions > * {
  flex: 1;
  padding: 11px 8px;
  font-size: 14px;
}
.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0 20px;
  font-size: 13px;
}
.pager button {
  border: 1px solid #6f7685;
  background: transparent;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 23px;
}
.quiet {
  color: #aab1c1;
  text-align: center;
}
.empty {
  padding: 25px 0;
}
.empty p {
  color: #bfc4d0;
}
.list-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid #293041;
  background: transparent;
  text-align: left;
  width: 100%;
  padding: 16px 0;
}
.list-row .thumb {
  flex: 0 0 64px;
  height: 72px;
  border-radius: 6px;
  background-image: url("/img/prospects/categories.jpg");
  background-image: image-set(url("/img/prospects/categories-900.webp") type("image/webp"), url("/img/prospects/categories.jpg") type("image/jpeg"));
  background-size: 300% 100%;
}
.list-row strong {
  display: block;
  font-size: 16px;
}
.list-row small {
  color: #abb2c2;
  display: block;
  margin-top: 4px;
}
.team-art {
  height: 240px;
  border-radius: 14px;
  background-image: url("/img/prospects/categories.jpg");
  background-image: image-set(url("/img/prospects/categories-900.webp") type("image/webp"), url("/img/prospects/categories.jpg") type("image/jpeg"));
  background-size: 300% auto;
  background-position: 100% 60%;
  margin: 22px 0;
}
.invite-link {
  display: block;
  width: 100%;
  margin: 15px 0;
  background: #101624;
  border: 1px solid #43506c;
  border-radius: 6px;
  color: white;
  padding: 12px;
  font-size: 13px;
}
.member {
  padding: 14px 0;
  border-bottom: 1px solid #2b3240;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.member small {
  color: var(--gold);
}
#notice:not(:empty) {
  background: #17223b;
  border: 1px solid #526486;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  margin: 18px 0;
}
dialog {
  width: calc(100% - 28px);
  max-width: 440px;
  max-height: 90dvh;
  overflow: auto;
  border: 1px solid #53607a;
  border-radius: 18px;
  background: #0b101b;
  color: #fff;
  padding: 25px;
}
dialog::backdrop {
  background: #000b;
}
dialog h2 {
  padding-right: 15px;
}
dialog p {
  color: #bfc5d1;
  font-size: 14px;
}
dialog label {
  display: block;
  margin: 18px 0 0;
  font-size: 13px;
}
dialog input,
dialog textarea {
  display: block;
  background: #05080f;
  border: 1px solid #596074;
  color: white;
  border-radius: 6px;
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  font: inherit;
}
dialog textarea {
  min-height: 130px;
  resize: vertical;
  font-size: 14px;
}
.close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  width: 36px;
  height: 36px;
}
#auth-error {
  color: #ffbfbf;
}
.contact-links {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
#auth-toggle {
  width: 100%;
}
#auth-submit {
  margin-top: 14px;
}
[hidden] {
  display: none !important;
}
@keyframes reveal {
  from {
    opacity: 0.2;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 350px) {
  header {
    padding: 18px 15px 10px;
  }
  header img {
    width: 115px;
  }
  main {
    padding: 6px 15px 100px;
  }
  h1 {
    font-size: 38px;
  }
  .card-fan {
    height: 244px;
  }
  .mini-card {
    height: 202px;
  }
  .mini-card.front {
    height: 239px;
  }
  .mini-card.front span {
    font-size: 19px;
  }
  .selectors span {
    flex-basis: 77px;
    font-size: 12px;
  }
  .selectors select {
    font-size: 12px;
  }
  .card-body {
    padding: 16px;
  }
  .card-body h2 {
    font-size: 25px;
  }
  .prospect-art {
    height: 195px;
  }
}

html {
  scroll-padding-bottom: 100px;
}
button,
select,
a {
  scroll-margin-bottom: 100px;
}
.mini-card.front {
  transform: none;
  right: auto;
}

/* Keep the first search action in view on a 390 by 844 phone. */
header {
  padding-top: 18px;
  padding-bottom: 8px;
}
h1 {
  font-size: 40px;
  margin: 12px 0 10px;
}
.card-fan {
  height: 222px;
  margin-top: 17px;
}
.mini-card {
  height: 184px;
  top: 22px;
}
.mini-card.front {
  height: 218px;
}
.mini-card.front span {
  font-size: 20px;
}
.art-note {
  margin: 7px 0;
}
.intro {
  margin: 8px 0 12px;
  font-size: 14px;
}
.selectors label {
  min-height: 52px;
}
.selectors {
  margin-bottom: 8px;
}
#coverage {
  margin: 8px 0;
  font-size: 11px;
}
@media (max-width: 350px) {
  h1 {
    font-size: 35px;
  }
  .card-fan {
    height: 203px;
    margin-top: 16px;
  }
  .mini-card {
    height: 170px;
  }
  .mini-card.front {
    height: 199px;
  }
  .mini-card.front span {
    font-size: 18px;
  }
  .selectors label {
    min-height: 50px;
  }
  .intro {
    font-size: 13px;
  }
}

.source-details {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}
.source-details summary {
  cursor: pointer;
  padding: 6px 0;
  color: #c4cbd9;
}
.source-details p {
  overflow-wrap: anywhere;
}
/* Contact lists keep the published details ahead of decorative imagery. */
#results-screen > h2 {
  margin: 12px 0 10px;
  font-size: 30px;
}
#results-screen .query-line {
  margin-bottom: 14px;
}
.result-counts {
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 3px solid var(--gold);
  padding: 7px 12px;
  background: #0d162c;
}
.result-counts strong {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
}
.result-counts span {
  font-size: 12px;
  color: #d0d5df;
  font-weight: 400;
}
.results-note {
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  margin: 10px 0 14px;
}
.contact-row {
  background: #0a101e;
  border: 1px solid #27334c;
  border-radius: 10px;
  padding: 13px 12px;
  margin-bottom: 10px;
}
.contact-row-heading {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.contact-number {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  padding-top: 3px;
  min-width: 15px;
}
.contact-row h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 3px;
  overflow-wrap: anywhere;
}
.contact-area {
  margin: 0;
  font-size: 11px;
  color: #bcc4d4;
}
.contact-reason {
  font-size: 12px;
  line-height: 1.35;
  color: #d0d5df;
  margin: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.published-phone {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 7px 0 10px;
  line-height: 1.25;
}
.published-phone a {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.published-phone span {
  font-size: 10px;
  color: var(--muted);
}
.contact-row-actions {
  display: flex;
  align-items: stretch;
  gap: 5px;
}
.contact-row-actions > * {
  min-height: 36px;
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: 1px solid #37445f;
  border-radius: 5px;
  font-size: 11px;
  color: #e3e8f2;
  text-decoration: none;
  padding: 6px 4px;
  line-height: 1.2;
}
.contact-row-actions .contact-action {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.contact-row-actions svg {
  width: 12px;
  height: 12px;
  margin-left: 4px;
  flex: 0 0 12px;
}
.add-known {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #9bb7ff;
  font-size: 13px;
}
#find-screen > .add-known { width: 100%; }
.saved-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.saved-heading .add-known { flex-shrink: 0; }
.contact-type-tabs { display: flex; gap: 15px; margin: 14px 0; border-bottom: 1px solid #2b354a; }
.contact-type-tabs button { min-height: 42px; padding: 7px 0; border: 0; border-bottom: 2px solid transparent; color: #aeb8ca; background: transparent; font-size: 13px; }
.contact-type-tabs button[aria-pressed="true"] { color: #fff; border-bottom-color: var(--gold); }
.contact-type-tabs button span { margin-left: 4px; color: #a8b5cf; font-size: 10px; }
.phone-filter { display: flex; align-items: center; gap: 8px; min-height: 32px; margin: 5px 0 13px; font-size: 12px; color: #bbc7db; }
.phone-filter input { width: 16px; height: 16px; margin: 0; accent-color: var(--blue); }
.enquiry-row { border-color: #655637; }
.enquiry-evidence { margin: 12px 0; }
.enquiry-evidence blockquote { margin: 0; padding: 0 0 0 10px; border-left: 2px solid var(--gold); font-size: 15px; line-height: 1.45; color: #fff; overflow-wrap: anywhere; }
.enquiry-evidence .enquiry-context { color: #bac4d6; font-size: 11px; line-height: 1.4; margin: 10px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.enquiry-context span { color: #e2d2a6; }
.enquiry-evidence .enquiry-date { color: #98a5bc; font-size: 10px; margin: 7px 0 0; }
#contact .enquiry-evidence { margin: 20px 0; }
#contact .enquiry-context { display: block; overflow: visible; font-size: 12px; }
#contact .enquiry-date { font-size: 11px; }
@media(max-width:350px) {
  .contact-type-tabs { gap: 12px; }
  .contact-type-tabs button { font-size: 12px; }
  .saved-heading h2 { font-size: 25px; }
}
#contact {
  padding: 24px 20px;
  border-color: #36435a;
  background: #0b101b;
}
#contact .close {
  top: 16px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: #182133;
  border: 1px solid #334057;
  border-radius: 8px;
  line-height: 1;
}
#contact .contact-sheet-heading h2 {
  margin: 0;
  padding-right: 38px;
  font-size: 24px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
#contact .contact-sheet-heading p {
  margin: 8px 0 0;
  font-size: 12px;
  color: #aeb8ca;
}
.contact-sheet-number {
  margin: 25px 0 16px;
}
.contact-sheet-number span {
  display: block;
  color: #aeb8ca;
  font-size: 11px;
  margin-bottom: 5px;
}
.contact-sheet-number strong {
  font-size: 30px;
  letter-spacing: .2px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.contact-primary-actions {
  display: flex;
  gap: 10px;
}
.contact-primary-actions:empty { display: none; }
.contact-primary-actions a {
  flex: 1;
  font-size: 14px;
  min-height: 48px;
}
#contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.contact-destinations {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.contact-destinations a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid #36435a;
  background: #111b2d;
  border-radius: 7px;
  color: #edf1f8;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.contact-destinations svg { color: #aabbdc; }
.contact-destinations .source-link { margin: 0; }
#contact .detail-reason {
  margin: 22px 0 0;
  padding: 0 0 18px;
  border-top: 0;
  border-bottom: 1px solid #2d384c;
}
#contact .detail-reason h3 { margin: 0 0 6px; font-size: 14px; }
#contact .detail-reason p { margin: 0; line-height: 1.5; font-size: 13px; }
.contact-source-details { border-bottom: 1px solid #2d384c; }
.contact-source-details summary {
  padding: 15px 0;
  font-size: 13px;
  color: #c5cfe0;
  cursor: pointer;
}
.contact-source-details h4 { font-size: 12px; margin: 0 0 5px; font-weight: 600; }
#contact .contact-source-details p { margin: 0 0 14px; font-size: 12px; line-height: 1.5; overflow-wrap: anywhere; }
.contact-message { margin: 20px 0; }
#contact .contact-message label { margin: 0 0 9px; font-size: 14px; font-weight: 500; }
#contact .contact-message textarea { min-height: 108px; padding: 12px; line-height: 1.5; margin: 0; border-color: #3c4962; }
.contact-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  background: transparent;
  border: 0;
  padding: 10px 0 0;
  color: #a8bfff;
  font-size: 13px;
}
#contact .contact-message p { font-size: 11px; margin: 8px 0 0; color: #9eaac0; }
.contact-followup { margin-top: 15px; display: flex; flex-direction: column; align-items: center; }
.contact-followup span { color: #9eaac0; font-size: 11px; }
#contact-notice:empty { display: none; }
@media (max-width: 350px) {
  #contact { padding: 22px 16px; }
  #contact .contact-sheet-heading h2 { font-size: 22px; }
  .contact-sheet-number strong { font-size: 27px; }
}
.list-filters {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}
.list-filters button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 12px;
  min-height: 36px;
  padding: 6px 0;
}
.list-filters button[aria-pressed="true"] {
  color: white;
  border-color: var(--blue);
}
.detail-reason {
  border-top: 1px solid #3e4960;
  border-bottom: 1px solid #3e4960;
  padding: 12px 0;
  margin: 14px 0;
}
.detail-reason h3 {
  color: var(--gold);
  font-size: 15px;
}
@media (max-width: 350px) {
  #results-screen > h2 {
    font-size: 27px;
  }
  .contact-row {
    padding: 11px 10px;
  }
  .contact-row h3 {
    font-size: 17px;
  }
  .contact-row-actions > * {
    font-size: 10px;
  }
  .result-counts {
    gap: 15px;
  }
  .result-counts strong {
    font-size: 21px;
  }
}
.result-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.result-counts strong {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}
.result-counts span {
  font-size: 11px;
  white-space: nowrap;
}

/* Referral rewards use actual completed searches and the current account cap. */
#team-screen > h2 {
  font-size: 34px;
  margin: 18px 0 24px;
}
.reward-card {
  position: relative;
  min-height: 204px;
  padding: 24px;
  border-radius: 18px;
  overflow: hidden;
  background: #edcd79;
  color: #10141b;
  animation: reveal 180ms ease-out;
}
.reward-photo {
  position: absolute;
  inset: 0 0 0 59%;
  background: url('/img/prospects/categories.jpg') 52% 50% / auto 120%;
  background-image: image-set(url("/img/prospects/categories-900.webp") type("image/webp"), url("/img/prospects/categories.jpg") type("image/jpeg"));
  opacity: .22;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(to right, transparent, #000 55%);
}
.reward-value { position: relative; max-width: 250px; }
.reward-value > span {
  display: block;
  font-size: 78px;
  font-weight: 650;
  line-height: .95;
  letter-spacing: -5px;
  font-variant-numeric: tabular-nums;
}
.reward-value > strong { display: block; font-size: 25px; margin-top: 8px; font-weight: 600; }
.reward-value p { max-width: 240px; font-size: 14px; line-height: 1.4; margin: 9px 0 0; }
.reward-progress { margin: 24px 0; }
.reward-progress-label { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; }
.reward-progress-label > span { color: var(--gold); white-space: nowrap; font-variant-numeric: tabular-nums; }
.reward-track { display: flex; gap: 8px; margin-top: 12px; }
.reward-track > span {
  flex: 1; height: 40px; display: grid; place-items: center;
  border: 1px solid #454536; border-radius: 8px; background: #151815;
  color: #acae9d; font-size: 14px; font-weight: 600;
}
.reward-track > .earned { background: var(--gold); color: #10141b; border-color: var(--gold); }
.reward-progress > p { font-size: 12px; color: var(--muted); margin: 10px 0 0; }
.reward-exchange { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
.reward-exchange > div { flex: 1; min-width: 0; }
.reward-exchange strong { display: block; font-size: 15px; margin-bottom: 4px; }
.reward-exchange span { display: block; color: #bdc2ce; font-size: 13px; line-height: 1.4; }
.reward-exchange svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 1.5; flex-shrink: 0; }
.reward-share { display: flex; gap: 10px; align-items: center; justify-content: center; font-size: 15px; }
.reward-share svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; flex-shrink: 0; }
.reward-copy { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 12px; background: none; border: 0; font-size: 14px; color: #ced7ee; margin-top: 4px; }
.reward-rules { margin: 24px 0; color: #bac0cd; font-size: 13px; }
.reward-rules summary { cursor: pointer; min-height: 44px; display: flex; align-items: center; gap: 12px; }
.reward-rules summary::after { content: '+'; margin-left: auto; font-size: 20px; }
.reward-rules[open] summary::after { content: '−'; }
.reward-rules > p { line-height: 1.6; }
.reward-rules .invite-link { margin: 8px 0; }
.reward-local { margin-top: 0; text-align: center; }
.reward-members-heading { display: flex; align-items: center; justify-content: space-between; font-size: 18px; }
.reward-members-heading span { color: var(--gold); font-variant-numeric: tabular-nums; }
.reward-no-members { font-size: 14px; color: var(--muted); }
@media (max-width: 350px) {
  #team-screen > h2 { font-size: 29px; margin-bottom: 20px; }
  .reward-card { padding: 22px; min-height: 190px; }
  .reward-value > span { font-size: 68px; }
  .reward-value > strong { font-size: 23px; }
  .reward-exchange { gap: 12px; }
  .reward-share { font-size: 14px; padding-inline: 12px; }
}

.service-followup { margin: 24px 0; padding: 20px 0; border-top: 1px solid #263348; }
.service-followup h3 { margin-bottom: 14px; font-size: 20px; }

/* 9 September: only the three example-image cards, within their existing box. */
.card-fan > .mini-card {
  top: 18px;
  width: 32%;
  height: calc(100% - 30px);
  background-image: var(--find-card-image, url("/img/prospects/find-cards/general.webp"));
  background-size: 300% auto;
  border: 1px solid #53647a;
  border-radius: 12px;
  box-shadow: 0 10px 24px #0008;
}
.card-fan > .mini-card:first-child {
  left: 4px;
  background-position: 0% 50%;
  transform: rotate(-5deg);
}
.card-fan > .mini-card:nth-child(2) {
  right: 4px;
  background-position: 100% 50%;
  transform: rotate(5deg);
}
.card-fan > .mini-card.front {
  top: 0;
  left: 29%;
  right: auto;
  width: 42%;
  height: calc(100% - 4px);
  background-position: 50% var(--find-customer-y, 50%);
  border: 1px solid #edcd79;
  border-radius: 14px;
  box-shadow: 0 14px 28px #0009;
  transform: none;
}
.card-fan > .mini-card > span {
  position: absolute;
  inset: auto 0 0;
  padding: 9px 10px 10px;
  text-align: left;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 600;
  text-shadow: none;
  background: #101827;
}
.card-fan > .mini-card:first-child > span { padding-right: 26px; }
.card-fan > .mini-card:nth-child(2) > span { text-align: right; padding-left: 26px; }
.card-fan [data-card-label] { display: block; font: inherit; }
.card-fan[data-product="detergents"] { --find-customer-y: 30%; }
.card-fan > .mini-card.front > span {
  padding: 10px 10px 12px;
  font-size: 16px;
  line-height: 1.08;
  background: #142440;
}
.card-fan > .mini-card small {
  display: block;
  color: #bfc8d9;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 5px;
}
.card-fan > .mini-card.front small {
  color: #edcd79;
}
@media (max-width: 350px) {
  .card-fan > .mini-card > span { font-size: 13px; padding-inline: 7px; }
  .card-fan > .mini-card:first-child > span { padding-right: 20px; }
  .card-fan > .mini-card:nth-child(2) > span { padding-left: 20px; }
  .card-fan > .mini-card.front > span { font-size: 14px; }
  .card-fan > .mini-card small { font-size: 9px; }
}

/* Live counts, proof links, contact routes and locked rows.
   11 September 2026: added to the existing page, same palette and shapes. */
.live-stats {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
}
.live-stats > div {
  flex: 1;
  min-width: 0;
  padding: 10px 8px;
  background: #0a101e;
  border: 1px solid #27334c;
  border-radius: 7px;
  text-align: center;
}
.live-stats strong {
  display: block;
  font-size: 19px;
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.live-stats span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.25;
  color: #bcc4d4;
}
.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.proof-link {
  flex: 1 1 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: #17130a;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}
.proof-link svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}
.proof-link.proof-comment {
  flex: 1 1 100%;
  background: transparent;
  border-color: #5d5533;
  color: #e2d2a6;
  font-weight: 500;
}
.contact-routes {
  display: flex;
  gap: 6px;
  margin: 0 0 10px;
}
.contact-routes > a {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  font-size: 13px;
  gap: 8px;
  padding: 10px 8px;
}
.contact-routes svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}
.locked-block {
  margin: 22px 0 18px;
  padding-top: 18px;
  border-top: 1px solid #263348;
}
.locked-block h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
}
.locked-block > .fine {
  text-align: left;
  margin: 0 0 12px;
}
.locked-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.locked-row {
  background: #0a101e;
  border: 1px solid #1f2a40;
  border-radius: 10px;
  padding: 11px 12px;
}
.locked-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.locked-name {
  font-size: 16px;
  font-weight: 600;
  color: #8f9bb3;
  letter-spacing: 1px;
  filter: blur(1.4px);
  overflow-wrap: anywhere;
}
.locked-meta {
  font-size: 10px;
  color: #7b869c;
  text-align: right;
  flex-shrink: 0;
}
.locked-quote {
  height: 9px;
  margin: 10px 0 8px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1b2540 0%, #131b2e 72%, transparent 100%);
}
.locked-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 11px;
  color: #7b869c;
}
.locked-proof svg {
  flex: 0 0 13px;
  color: #8a7a4d;
}
.locked-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media (max-width: 350px) {
  .live-stats strong {
    font-size: 17px;
  }
  .contact-routes > a {
    font-size: 12px;
  }
}
