:root {
  color-scheme: light;
  --background: #f4f6f1;
  --surface: #ffffff;
  --surface-strong: #ffe47a;
  --text: #161616;
  --muted: #424540;
  --muted-soft: #5d5b50;
  --primary: #fdda24;
  --primary-dark: #d1aa00;
  --accent: #8b7100;
  --success: #245f3d;
  --warning: #a05f00;
  --border: #d8d0ad;
  --shadow: 0 20px 48px rgba(32, 31, 24, 0.12);
  --radius: 18px;
  --section-gap: 44px;
  --section-half-gap: calc(var(--section-gap) / 2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfcf8 0%, var(--background) 42rem);
  color: var(--text);
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header,
.section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 0 8px;
}

.brand,
.nav-link,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(250px, 58vw);
  object-fit: contain;
}

.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  background: var(--text);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--primary);
  color: #111111;
  font-weight: 850;
  line-height: 1;
  padding: 10px 16px;
  box-shadow: 0 10px 20px rgba(139, 110, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .nav-link {
    flex: 0 0 auto;
    max-width: none;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 0.86rem;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .brand {
    flex: 0 0 auto;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-link {
    padding-inline: 10px;
    font-size: 0.82rem;
  }
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--primary-dark);
  box-shadow: 0 16px 30px rgba(139, 110, 0, 0.24);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  justify-items: center;
  padding: var(--section-gap) 0 var(--section-half-gap);
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 4.75vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-actions,
.value-strip,
.two-column {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: center;
  width: min(360px, 100%);
}

.hero-actions .button-primary {
  width: 100%;
  min-height: 58px;
}

.offer-eyebrow {
  margin-bottom: 16px;
}

.value-strip {
  justify-content: center;
  width: min(620px, 100%);
  margin: 22px 0 22px;
  border-top: 1px solid rgba(139, 113, 0, 0.16);
  border-bottom: 1px solid rgba(139, 113, 0, 0.16);
  padding: 12px 0;
}

.value-strip span {
  display: grid;
  gap: 1px;
  min-width: 108px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted-soft);
  padding: 0;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.18;
}

.value-strip strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.05;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: #111111;
  box-shadow: 0 18px 30px rgba(139, 110, 0, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-secondary {
  background: rgba(255, 255, 251, 0.86);
  border: 1px solid rgba(200, 155, 0, 0.32);
  color: #3b3200;
}

.audit-form,
.result-card,
.upsell-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  background: #e9fff7;
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  padding: var(--section-half-gap) 0;
}

.grid-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(440px, 1.18fr);
  gap: 42px;
  align-items: start;
}

.conversion-copy {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
  padding: 22px;
}

.conversion-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.conversion-header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.included-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(139, 113, 0, 0.2);
}

.included-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px 0;
}

.included-item + .included-item {
  border-top: 1px solid rgba(139, 113, 0, 0.12);
}

.included-item span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--text);
  font-weight: 900;
  line-height: 1;
}

.included-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1rem;
  line-height: 1.25;
}

.included-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.audit-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.form-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(200, 155, 0, 0.24);
  padding-bottom: 18px;
}

.form-header .eyebrow {
  margin-bottom: 6px;
}

.form-header h3 {
  margin-bottom: 0;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.mobile-form-progress,
.mobile-form-actions {
  display: none;
}

.mobile-form-progress-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.mobile-form-progress-copy span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-form-progress-copy strong {
  font-size: 1rem;
  line-height: 1.2;
}

.mobile-form-progress-bar {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(139, 113, 0, 0.12);
}

.mobile-form-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 180ms ease;
}

.audit-form.is-stepped {
  gap: 16px;
}

.audit-form.is-stepped .form-header {
  padding-bottom: 14px;
}

.audit-form.is-stepped .mobile-form-progress {
  display: grid;
  gap: 9px;
}

.audit-form.is-stepped [data-mobile-step] {
  display: none;
}

.audit-form.is-stepped [data-mobile-step].is-active-step {
  display: grid;
}

.audit-form.is-stepped fieldset:not(.has-active-step) {
  display: none;
}

.audit-form.is-stepped .form-submit {
  display: none;
}

.audit-form.is-stepped.is-final-step .form-submit {
  display: inline-flex;
}

.audit-form.is-stepped.is-final-step .mobile-step-next {
  display: none;
}

.audit-form.is-stepped .mobile-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 10px;
}

.audit-form.is-stepped .mobile-step-back[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 8px;
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 750;
}

.form-step-group {
  display: grid;
  gap: 12px;
}

.label-note {
  color: var(--muted-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfdff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 82px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(36, 87, 255, 0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"],
.audit-form[data-validation-active="true"] input:invalid:not(:placeholder-shown),
.audit-form[data-validation-active="true"] textarea:invalid:not(:placeholder-shown) {
  border-color: #dc5068;
}

input[aria-invalid="true"]:focus,
select[aria-invalid="true"]:focus,
textarea[aria-invalid="true"]:focus {
  border-color: #dc5068;
  box-shadow: 0 0 0 4px rgba(220, 80, 104, 0.14);
}

.two-column > * {
  flex: 1 1 220px;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-submit {
  width: 100%;
}

.form-footnote {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.field-error {
  min-height: 0;
  margin: -2px 0 0;
  color: #9f1239;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.field-help {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.face-search-fieldset {
  border-color: rgba(15, 95, 61, 0.3);
  background: rgba(245, 255, 249, 0.46);
}

.face-choice-list {
  display: grid;
  gap: 10px;
}

.face-choice-card {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  border: 1px solid rgba(200, 155, 0, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 251, 0.78);
  padding: 12px;
  color: var(--muted);
  font-weight: 650;
}

.face-choice-card input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.face-choice-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  line-height: 1.2;
}

.face-choice-card small {
  display: block;
  font-size: 0.9rem;
  line-height: 1.4;
}

.face-standard-price,
.face-addon-price {
  color: var(--text);
  font-weight: 850;
}

.face-choice-card-featured {
  border-color: rgba(139, 113, 0, 0.5);
  background: rgba(255, 228, 122, 0.18);
}

.face-consent-row {
  margin-top: 6px;
}

.form-alert {
  border-radius: 14px;
  background: #fff0f3;
  color: #9f1239;
  padding: 12px 14px;
  font-weight: 700;
}

.results-section {
  padding-top: var(--section-half-gap);
  padding-bottom: var(--section-half-gap);
}

.results-header,
.upsell-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.results-title {
  max-width: 560px;
}

.results-title .eyebrow {
  margin-bottom: 8px;
}

.results-title h2 {
  margin-bottom: 10px;
}

.results-header p {
  color: var(--muted);
}

.results-title p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  font-weight: 650;
}

.progress-wrap {
  min-width: 180px;
  text-align: right;
  font-weight: 900;
}

.progress-bar {
  height: 10px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--border);
}

.progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 450ms ease;
}

.results-grid {
  display: grid;
  grid-auto-flow: row dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.result-card {
  grid-column: span 2;
  min-height: 230px;
  padding: 22px;
  box-shadow: none;
}

.result-card h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.result-card > p {
  margin-bottom: 0;
  color: #242424;
  font-size: 1rem;
  line-height: 1.55;
}

.username-result-card {
  grid-column: span 2;
}

.companies-house-result-card,
.public-web-result-card,
.browser-exposure-result-card {
  grid-column: span 2;
}

.companies-house-result-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.companies-house-result-card .result-badge {
  margin-bottom: 12px;
}

.companies-house-result-card h3 {
  margin-bottom: 8px;
}

.companies-house-result-card > p {
  font-size: 0.94rem;
  line-height: 1.38;
}

.result-card.loading {
  background: linear-gradient(100deg, #fff 30%, #f4f8ff 50%, #fff 70%);
  background-size: 220% 100%;
  animation: shimmer 1.8s infinite linear;
}

.result-card.muted {
  color: var(--muted);
  background: #fbfdff;
}

.result-card.complete {
  border-color: rgba(15, 143, 98, 0.28);
}

.result-card.attention {
  border-color: rgba(183, 121, 31, 0.4);
}

.result-card.sherlock-alert {
  border-color: rgba(190, 18, 60, 0.42);
  background: #fff8f8;
}

.result-card.sherlock-alert .warning-badge {
  background: #ffe4e6;
  color: #be123c;
}

.result-card.instagram-alert {
  border-color: rgba(183, 121, 31, 0.5);
  background: #fffaf0;
}

.result-card.following-alert {
  border-color: rgba(183, 121, 31, 0.5);
  background: #fffaf0;
}

.result-card.following-alert .warning-badge {
  background: #fef3c7;
  color: #92400e;
}

.result-badge {
  margin-bottom: 18px;
}

.result-badge.loading-badge {
  background: #fff0a8;
  color: #4b3a00;
  box-shadow: inset 0 0 0 1px rgba(139, 113, 0, 0.12);
}

.result-badge.warning-badge {
  background: #fff7e6;
  color: var(--warning);
}

.ai-overview-content {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.ai-overview-loading-copy {
  color: var(--text);
  font-weight: 850;
}

.ai-overview-loading-elapsed {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 12px;
  border: 1px solid rgba(62, 104, 160, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.ai-overview-checking-source,
.ai-overview-elapsed-label {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}

.ai-overview-checking-source strong {
  max-width: min(44vw, 420px);
  overflow: hidden;
  color: var(--text);
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-overview-elapsed-label::before {
  color: rgba(66, 69, 64, 0.48);
  content: "|";
}

.ai-overview-elapsed-time {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.footprint-score {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(216, 208, 173, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  padding: 14px;
}

.footprint-score-meter {
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 56%, transparent 57%),
    conic-gradient(var(--score-color, #0f8f62) calc(var(--score) * 10%), #f2ead0 0);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(75, 58, 0, 0.08);
}

.footprint-score-meter strong {
  color: var(--score-color, #0f8f62);
  font-size: 2.55rem;
  line-height: 0.9;
}

.footprint-score-meter span {
  margin-top: -16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.footprint-score-copy {
  display: grid;
  gap: 4px;
}

.footprint-score-copy strong {
  font-size: 1.06rem;
}

.footprint-score-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.result-evidence {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.instagram-result-card .result-evidence {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evidence-item {
  display: grid;
  gap: 2px;
  min-width: 0;
  border: 1px solid rgba(216, 208, 173, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 10px 12px;
}

.evidence-item span {
  color: var(--muted-soft);
  font-size: 0.73rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.evidence-item strong {
  min-width: 0;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.evidence-item.exposed-data-item {
  border-color: rgba(190, 18, 60, 0.38);
  background: #fff1f2;
}

.evidence-item.exposed-data-item span,
.evidence-item.exposed-data-item strong {
  color: #9f1239;
}

.evidence-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 730;
  line-height: 1.4;
}

.browser-exposure-content {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.browser-exposure-notice {
  margin: 0;
  border: 1px solid rgba(183, 121, 31, 0.22);
  border-radius: 8px;
  background: #fffaf0;
  color: #5f3b00;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.4;
}

.browser-exposure-section {
  display: grid;
  gap: 8px;
}

.browser-exposure-section h4 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
}

.browser-exposure-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.browser-exposure-notes {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.inference-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  margin-top: 18px;
  overflow: auto;
  padding-right: 4px;
}

.inference-item {
  border: 1px solid rgba(184, 134, 11, 0.32);
  border-radius: 8px;
  background: rgba(255, 252, 235, 0.82);
  padding: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.inference-item:hover,
.inference-item:focus-within {
  border-color: rgba(184, 134, 11, 0.58);
  box-shadow: 0 10px 24px rgba(75, 58, 0, 0.08);
  transform: translateY(-1px);
}

.inference-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
  line-height: 1.35;
}

.inference-item summary::after {
  content: "↗";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #fdda24;
  color: #4b3a00;
  font-size: 0.86rem;
  font-weight: 950;
}

.inference-item summary strong {
  align-self: start;
  color: var(--muted-soft);
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.inference-item p {
  margin: 10px 0 0;
  color: #242424;
  font-size: 0.93rem;
  line-height: 1.45;
}

.inference-item .inference-identity-check {
  border-left: 3px solid rgba(36, 87, 255, 0.36);
  background: rgba(238, 244, 255, 0.72);
  padding: 8px 10px;
}

.inference-evidence {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.inference-evidence a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(184, 134, 11, 0.28);
  border-radius: 8px;
  background: #fffef7;
  padding: 8px 10px;
  color: var(--accent);
  font-weight: 780;
  text-decoration: none;
}

.inference-evidence a span {
  border-radius: 999px;
  background: #fdda24;
  color: #4b3a00;
  padding: 4px 7px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.face-search-results {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.face-search-notice {
  margin-bottom: 0;
  border: 1px solid rgba(160, 95, 0, 0.24);
  border-radius: 8px;
  background: #fffaf0;
  color: #5f3900;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.4;
}

.face-match-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.face-match-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(216, 208, 173, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  padding: 10px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.face-match-item:hover,
.face-match-item:focus-visible {
  border-color: rgba(15, 95, 61, 0.42);
  box-shadow: 0 12px 24px rgba(15, 95, 61, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.face-match-item img,
.face-match-item .thumbnail-fallback {
  width: 104px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.face-match-item img {
  background: #eef2f7;
}

.face-match-item span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.face-match-item strong {
  color: var(--success);
  font-size: 0.95rem;
  line-height: 1.2;
}

.face-match-item small {
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.face-live-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.face-liveness-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(15, 95, 61, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 12px;
}

.face-liveness-panel h4 {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.face-liveness-challenge {
  margin: 0;
  border: 1px solid rgba(15, 95, 61, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--success);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.35;
}

.face-liveness-panel video,
.face-selfie-preview {
  width: min(260px, 100%);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(15, 95, 61, 0.2);
  border-radius: 8px;
  background: #111111;
  object-fit: cover;
}

.face-liveness-complete video,
.face-liveness-complete .face-selfie-preview {
  display: none;
}

.face-liveness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.face-secondary-button {
  min-height: 42px;
  border: 1px solid rgba(15, 95, 61, 0.22);
  background: #ffffff;
  color: var(--success);
  box-shadow: none;
}

.face-upload-status {
  margin-bottom: 0;
  border: 1px solid rgba(15, 95, 61, 0.18);
  border-radius: 8px;
  background: rgba(245, 255, 249, 0.72);
  color: #17452d;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.4;
}

.face-upload-status.is-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.face-upload-spinner {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin: 0;
  border-width: 3px;
}

.face-search-result-mount {
  display: grid;
  gap: 12px;
}

.post-face-search-section {
  margin-top: 18px;
}

.results-section.face-check-pending .results-header,
.results-section.face-check-pending .results-grid,
.results-section.face-check-pending .post-face-search-section,
.results-section.face-check-pending .upsell-card {
  display: none;
}

.results-section.face-check-first .results-header,
.results-section.face-check-first .results-grid,
.results-section.face-check-first .upsell-card {
  display: none;
}

.results-section.face-check-first .post-face-search-section {
  max-width: 780px;
  margin: 0 auto;
}

.results-section.face-check-first .face-search-result-card {
  padding: clamp(22px, 5vw, 36px);
}

.post-face-search-section .face-search-result-card {
  grid-column: 1 / -1;
}

.inference-high {
  border-color: rgba(190, 18, 60, 0.38);
  background: #fff8f8;
}

.inference-medium {
  border-color: rgba(183, 121, 31, 0.36);
  background: #fffaf0;
}

.inference-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 730;
  line-height: 1.4;
}

.overview-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.overview-point {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(216, 208, 173, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  padding: 11px 12px;
}

.overview-point strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.25;
}

.overview-point span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 730;
  line-height: 1.4;
}

.overview-findings {
  display: grid;
  gap: 10px;
}

.overview-findings > strong {
  color: var(--text);
  font-size: 0.92rem;
}

.overview-finding-list {
  display: grid;
  gap: 10px;
}

.overview-finding {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(216, 208, 173, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
  overflow-wrap: anywhere;
}

.overview-finding-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.overview-finding-header strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.25;
}

.overview-finding-badges,
.overview-finding-signals,
.overview-finding-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.overview-finding-badge,
.overview-finding-signals span,
.overview-finding-links a {
  max-width: 100%;
  border: 1px solid rgba(216, 208, 173, 0.78);
  border-radius: 999px;
  background: #fff;
  padding: 5px 8px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
}

.overview-finding-high {
  border-color: rgba(190, 18, 60, 0.34);
  background: #fff1f4;
  color: #9f1239;
}

.overview-finding-medium {
  border-color: rgba(183, 121, 31, 0.34);
  background: #fff7e6;
  color: var(--warning);
}

.overview-finding-low {
  border-color: rgba(15, 143, 98, 0.24);
  background: #eefbf6;
  color: var(--success);
}

.overview-confidence-high {
  border-color: rgba(15, 143, 98, 0.24);
}

.overview-confidence-medium {
  border-color: rgba(183, 121, 31, 0.28);
}

.overview-confidence-low {
  color: var(--muted);
}

.overview-finding-value,
.overview-finding-explanation {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 730;
  line-height: 1.4;
}

.overview-finding-value {
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
}

.overview-sources {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(216, 208, 173, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  padding: 12px;
}

.overview-sources > strong {
  color: var(--text);
  font-size: 0.92rem;
}

.overview-source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.overview-source-list a {
  max-width: 100%;
  border: 1px solid rgba(216, 208, 173, 0.78);
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.2;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overview-high {
  border-color: rgba(190, 18, 60, 0.34);
}

.overview-medium {
  border-color: rgba(183, 121, 31, 0.34);
}

.breach-list {
  display: grid;
  gap: 10px;
  max-height: 190px;
  margin-top: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  scrollbar-gutter: stable;
}

.breach-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(216, 208, 173, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px;
}

.breach-favicon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.fallback-icon {
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 900;
}

.breach-item strong,
.breach-item span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.breach-item strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.2;
}

.breach-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 730;
  line-height: 1.3;
}

.sherlock-loading-card {
  position: relative;
  overflow: hidden;
}

.sherlock-loading-copy {
  color: var(--text);
  font-weight: 850;
}

.sherlock-loading-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.loading-wheel {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  border: 5px solid rgba(75, 58, 0, 0.12);
  border-top-color: #f0c400;
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.sherlock-results {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.username-exposure {
  border: 1px solid rgba(216, 208, 173, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.username-exposure.has-matches {
  border-color: rgba(190, 18, 60, 0.24);
  background: #fff1f2;
}

.username-exposure h4,
.username-exposure p {
  margin: 0;
}

.username-exposure h4 {
  color: var(--text);
  overflow-wrap: anywhere;
}

.username-exposure p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.sherlock-site-list {
  display: grid;
  gap: 8px;
  max-height: 260px;
  margin-top: 12px;
  overflow-y: auto;
  padding-right: 4px;
}

.sherlock-site {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(190, 18, 60, 0.16);
  border-radius: 8px;
  background: #ffffff;
  padding: 9px;
  color: var(--text);
  text-decoration: none;
}

.sherlock-site.is-not-found {
  border-color: rgba(16, 24, 40, 0.08);
  background: rgba(248, 250, 252, 0.76);
  color: var(--muted);
}

.sherlock-site:hover,
.sherlock-site:focus-visible {
  border-color: rgba(190, 18, 60, 0.42);
  outline: none;
}

.sherlock-site.is-not-found:hover {
  border-color: rgba(16, 24, 40, 0.08);
}

.sherlock-site img {
  grid-column: 1;
  grid-row: 1;
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.sherlock-site-fallback {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 6px;
  background: #f8fafc;
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
}

.sherlock-site > span:not(.sherlock-site-fallback) {
  grid-column: 2;
  min-width: 0;
}

.sherlock-site strong,
.sherlock-site small {
  min-width: 0;
}

.sherlock-site strong,
.sherlock-site small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sherlock-site small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.instagram-results {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.instagram-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.instagram-summary div,
.instagram-panel,
.instagram-map {
  border: 1px solid rgba(216, 208, 173, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.instagram-summary div {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.instagram-summary span {
  color: var(--muted-soft);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.instagram-summary strong {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.15;
}

.instagram-map {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.8fr);
  gap: 14px;
  align-items: stretch;
  padding: 14px;
}

.location-map-stack {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.instagram-map-canvas {
  border-radius: 8px;
  min-height: 280px;
  overflow: hidden;
  z-index: 0;
}

.instagram-map-canvas.leaflet-container {
  background: #eef7fb;
  color: var(--text);
  font-family: inherit;
}

.map-number-marker,
.map-source-marker {
  align-items: center;
  background: #111111;
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.22);
  color: #ffffff;
  display: grid;
  font-size: 0.78rem;
  font-weight: 850;
  height: 26px;
  justify-items: center;
  line-height: 1;
  width: 26px;
}

.map-source-marker-icon {
  background: transparent;
  border: 0;
  position: relative;
}

.map-ip-marker-icon {
  background: transparent;
  border: 0;
}

.map-ip-marker {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #fdda24;
  box-shadow: 0 8px 18px rgba(32, 31, 24, 0.22);
  color: #161616;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0;
}

.map-number-marker span {
  transform: translateY(-0.5px);
}

.map-source-marker {
  left: 6px;
  pointer-events: auto;
  position: absolute;
  top: 6px;
  height: 32px;
  width: 32px;
}

.map-source-marker.instagram-source-icon {
  background: radial-gradient(circle at 30% 108%, #fdf497 0 18%, #fd5949 42%, #d6249f 64%, #285aeb 100%);
}

.map-source-marker.tiktok-source-icon {
  background: #0f172a;
}

.map-source-marker .source-glyph {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.map-source-marker svg,
.source-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-source-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.tiktok-source-icon svg {
  overflow: visible;
}

.tiktok-shadow-cyan {
  fill: #25f4ee;
  transform: translate(-1px, 1px);
}

.tiktok-shadow-pink {
  fill: #fe2c55;
  transform: translate(1px, -1px);
}

.tiktok-note {
  fill: #ffffff;
}

.map-source-marker .source-number {
  position: absolute;
  right: -7px;
  bottom: -7px;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.62rem;
  line-height: 1;
}

.instagram-location-list {
  display: grid;
  gap: 8px;
  margin: 0;
  max-height: 148px;
  overflow-y: auto;
  padding-left: 20px;
  padding-right: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.instagram-location-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 8px;
  padding-left: 2px;
}

.instagram-location-list .source-icon {
  grid-row: span 2;
  align-self: start;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.instagram-location-list .instagram-source-icon {
  background: radial-gradient(circle at 30% 108%, #fdf497 0 18%, #fd5949 42%, #d6249f 64%, #285aeb 100%);
}

.instagram-location-list .tiktok-source-icon {
  background: #0f172a;
}

.instagram-location-list .ip-source-icon {
  background: #fdda24;
  color: #161616;
  font-size: 0.66rem;
}

.instagram-location-list strong,
.instagram-location-list span {
  display: block;
}

.instagram-location-list strong {
  color: var(--text);
  line-height: 1.25;
}

.instagram-location-list span {
  margin-top: 2px;
  font-size: 0.82rem;
}

.location-map-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.location-map-key-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.location-map-key-item i {
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 10px;
  border-radius: 999px;
}

.location-map-key-item.social i {
  width: 14px;
  height: 14px;
  background: #111111;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.18);
}

.location-map-key-item.social-muted i,
.location-map-key-item.ip-muted i {
  background: #e5e7eb;
}

.location-map-key-item.ip-radius i {
  background: rgba(253, 218, 36, 0.36);
  border: 1px solid #d1aa00;
}

.instagram-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.instagram-panel {
  padding: 14px;
}

.tiktok-thumbnail-panel {
  grid-column: 1 / -1;
}

.instagram-panel h4,
.instagram-panel p,
.instagram-panel ol {
  margin: 0;
}

.instagram-panel h4 {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.2;
}

.instagram-panel p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 730;
  line-height: 1.4;
}

.instagram-panel ol {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding-left: 20px;
}

.instagram-panel li {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 730;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.instagram-panel li a,
.instagram-panel li strong,
.instagram-panel li span {
  display: block;
}

.instagram-panel li a {
  color: var(--text);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.instagram-panel li strong {
  color: #be123c;
}

.instagram-panel li span {
  margin-top: 3px;
}

.social-activity-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.social-profile-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.social-profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(216, 208, 173, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 10px;
}

.social-profile-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.social-profile-platform .source-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #ffffff;
}

.social-profile-platform .instagram-source-icon {
  background: #be123c;
}

.social-profile-platform .tiktok-source-icon {
  background: #0f172a;
}

.social-profile-platform div {
  min-width: 0;
}

.social-profile-platform strong,
.social-profile-platform span {
  display: block;
  line-height: 1.15;
}

.social-profile-platform strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-profile-platform span {
  margin-top: 2px;
  color: var(--muted-soft);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.social-profile-followers {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.social-activity-details {
  border: 1px solid rgba(216, 208, 173, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  padding: 0;
}

.social-activity-details summary {
  cursor: pointer;
  list-style-position: inside;
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.social-activity-details[open] {
  padding-bottom: 12px;
}

.social-activity-section {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(216, 208, 173, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  padding: 14px;
}

.social-activity-details .social-activity-section {
  margin: 0 12px 12px;
}

.social-activity-details .social-activity-section:last-child {
  margin-bottom: 0;
}

.social-activity-header {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.social-activity-header .source-icon,
.following-account-header .source-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.social-activity-header .instagram-source-icon,
.following-account-header .instagram-source-icon {
  background: #be123c;
}

.social-activity-header .tiktok-source-icon,
.following-account-header .tiktok-source-icon {
  background: #0f172a;
}

.social-activity-header h4,
.social-activity-header span,
.social-activity-section p,
.social-activity-section ul {
  margin: 0;
}

.social-activity-header h4 {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.social-activity-header span,
.social-activity-section p,
.social-activity-section li {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 730;
  line-height: 1.4;
}

.social-activity-section ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
}

.tiktok-thumbnail-grid {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.tiktok-thumbnail-grid a {
  flex: 1 1 clamp(76px, 10vw, 112px);
  min-width: 76px;
  max-width: 132px;
  display: grid;
  place-items: center;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 173, 0.72);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  text-decoration: none;
  scroll-snap-align: start;
}

.tiktok-thumbnail-grid a[hidden] {
  display: none;
}

.tiktok-thumbnail-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiktok-vision-panel {
  grid-column: 1 / -1;
  border: 1px dashed rgba(15, 23, 42, 0.32);
  background: rgba(255, 255, 255, 0.78);
}

.tiktok-vision-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.tiktok-vision-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
}

.tiktok-vision-item a {
  display: grid;
  place-items: center;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 173, 0.72);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  text-decoration: none;
}

.tiktok-vision-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiktok-vision-item div {
  min-width: 0;
}

.tiktok-vision-item strong,
.tiktok-vision-item span {
  display: block;
}

.tiktok-vision-item strong {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.2;
}

.tiktok-vision-item p,
.tiktok-vision-item span {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 730;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.tiktok-vision-item span {
  color: var(--muted-soft);
}

.thumbnail-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(255, 255, 255, 0.64)),
    #f8fafc;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.thumbnail-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 12px;
  border: 1px solid rgba(216, 208, 173, 0.86);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  padding: 0 14px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.thumbnail-toggle:hover,
.thumbnail-toggle:focus-visible {
  border-color: rgba(200, 155, 0, 0.5);
  background: #fffdf0;
  transform: translateY(-1px);
}

.following-results {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.following-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.following-summary div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(216, 208, 173, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.following-summary span {
  color: var(--muted-soft);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.following-summary strong {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.15;
}

.following-note {
  margin: 0;
  border-left: 4px solid var(--warning);
  background: #fff7e6;
  color: #5a3900;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.following-note a {
  color: inherit;
  font-size: 0.86rem;
  text-underline-offset: 3px;
}

.following-list-wrap {
  max-height: 560px;
  overflow-y: auto;
  border: 1px solid rgba(216, 208, 173, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.following-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.following-account {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(216, 208, 173, 0.72);
}

.following-account:last-child {
  border-bottom: 0;
}

.following-account.flagged-following {
  background: #fffaf0;
  border-color: rgba(183, 121, 31, 0.2);
}

.following-account.red-following {
  background: #fff1f2;
  border-color: rgba(185, 28, 28, 0.22);
}

.following-account-header {
  display: grid;
  grid-template-columns: 42px 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.following-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 50%;
  background: #f8fafc;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.following-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.following-identity {
  min-width: 0;
}

.following-identity a {
  display: block;
  color: var(--text);
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.following-identity span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 730;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.following-risk-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.following-risk-flags span {
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
}

.following-risk-flags .amber-flag {
  border-color: rgba(183, 121, 31, 0.28);
  background: #fef3c7;
  color: #92400e;
}

.following-risk-flags .red-flag {
  border-color: rgba(185, 28, 28, 0.28);
  background: #fee2e2;
  color: #991b1b;
}

.following-bio,
.following-stats {
  margin: 0;
  overflow-wrap: anywhere;
}

.following-bio {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.42;
}

.following-stats {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.35;
}

.result-details {
  margin-top: 18px;
  border-top: 1px solid rgba(216, 208, 173, 0.82);
  padding-top: 14px;
}

.result-details summary {
  width: 100%;
  max-width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(139, 113, 0, 0.22);
  border-radius: 8px;
  background: #fdda24;
  cursor: pointer;
  color: #4b3a00;
  padding: 10px 13px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.result-details summary::marker {
  color: #4b3a00;
}

.result-details summary:focus-visible {
  outline: 3px solid rgba(253, 218, 36, 0.72);
  outline-offset: 4px;
  border-radius: 8px;
}

.details-notice {
  margin: 14px 0 0;
  border-left: 4px solid var(--warning);
  background: #fff7e6;
  color: #5a3900;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.details-record {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.details-record h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.details-record h4 a {
  color: var(--text);
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.confidence-badge {
  width: fit-content;
  border: 1px solid var(--confidence-border);
  border-radius: 999px;
  background: var(--confidence-bg);
  color: var(--confidence-color);
  padding: 5px 9px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.details-meta {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.companies-house-officer-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  min-height: 0;
  margin-top: 12px;
  overflow: hidden;
  flex: 1;
}

.companies-house-officer-profile,
.companies-house-companies {
  min-width: 0;
}

.companies-house-officer-profile {
  display: grid;
  align-content: start;
  gap: 5px;
  border: 1px solid rgba(216, 208, 173, 0.86);
  border-radius: 8px;
  background: rgba(255, 254, 245, 0.72);
  padding: 10px;
}

.companies-house-officer-profile span,
.companies-house-companies > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.companies-house-officer-profile strong {
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.companies-house-officer-profile p,
.companies-house-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.companies-house-companies {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 0;
}

.companies-house-company-list {
  display: grid;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  max-height: 210px;
  padding-right: 4px;
}

.companies-house-company {
  border: 1px solid rgba(216, 208, 173, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 9px;
}

.companies-house-company strong,
.companies-house-company p {
  overflow-wrap: anywhere;
}

.companies-house-company strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.22;
}

.companies-house-company p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.32;
}

.appointment-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

.appointment-item {
  border: 1px solid rgba(216, 208, 173, 0.86);
  border-radius: 8px;
  background: rgba(255, 254, 245, 0.72);
  padding: 12px;
}

.appointment-item strong,
.appointment-item p {
  overflow-wrap: anywhere;
}

.appointment-item strong {
  display: block;
  line-height: 1.25;
}

.appointment-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.appointment-item .appointment-address {
  color: #5a3900;
  font-weight: 750;
}

.upsell-card {
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-color: rgba(209, 170, 0, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 254, 245, 0.92), rgba(255, 247, 196, 0.84)),
    linear-gradient(135deg, #f7d531, #e0b800);
  color: #111111;
}

.upsell-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  content: "";
}

.upsell-card p,
.upsell-card .eyebrow {
  color: rgba(17, 17, 17, 0.82);
}

.upsell-card .button-primary {
  width: 100%;
  border-radius: var(--radius);
  background: #111111;
  color: #fffdf7;
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.22);
  white-space: nowrap;
}

.upsell-card .button-primary:hover,
.upsell-card .button-primary:focus-visible {
  background: #2b2b2b;
}

.upsell-copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.upsell-action {
  display: grid;
  flex: 0 0 324px;
  gap: 10px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.58);
  box-shadow: 0 16px 34px rgba(92, 77, 0, 0.12);
}

.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.checkout-trust svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.manual-audit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 8px 18px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(17, 17, 17, 0.86);
  font-size: 0.95rem;
  line-height: 1.35;
}

.manual-audit-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 680;
}

.manual-audit-list li::before {
  position: absolute;
  top: 0.34em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  background: rgba(36, 95, 61, 0.12);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  content: "✓";
}

.site-footer {
  padding: var(--section-half-gap) 0 var(--section-gap);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
  border-top: 1px solid rgba(139, 113, 0, 0.18);
  padding-top: 26px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(139, 113, 0, 0.18);
  border-radius: 999px;
  color: var(--muted);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  font-size: 0.92rem;
}

.footer-links a {
  color: inherit;
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  font-size: 0.92rem;
}

.legal-page {
  padding: 58px 0 var(--section-gap);
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.legal-content h1 {
  margin-bottom: 4px;
}

.legal-content h2 {
  margin: 20px 0 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

@keyframes shimmer {
  to {
    background-position: -220% 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  :root {
    --section-gap: 34px;
  }

  .hero,
  .grid-section,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card,
  .username-result-card,
  .companies-house-result-card,
  .public-web-result-card,
  .ai-overview-result-card,
  .face-search-result-card,
  .instagram-result-card,
  .instagram-following-result-card {
    grid-column: auto;
  }

  .hero {
    gap: 24px;
  }

  .footprint-score {
    grid-template-columns: 1fr;
  }

  .footprint-score-meter {
    width: 104px;
  }

  .overview-finding-header {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-copy {
    position: static;
  }

  .results-header,
  .upsell-card {
    align-items: stretch;
    flex-direction: column;
  }

  .upsell-action {
    flex: none;
    width: min(360px, 100%);
  }

  .progress-wrap {
    flex: none;
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .social-profile-summary {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 560px) {
  :root {
    --section-gap: 30px;
  }

  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    gap: 10px;
    padding-top: 14px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo {
    height: 52px;
    max-width: min(190px, 54vw);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .nav-link {
    justify-content: center;
    min-height: 40px;
    padding: 7px 11px;
    border-radius: 13px;
    font-size: 0.82rem;
  }

  .button,
  .form-submit {
    width: 100%;
  }

  .audit-form,
  .upsell-card {
    padding: 16px;
  }

  .upsell-card h2 {
    font-size: 1.85rem;
    line-height: 1.05;
  }

  .manual-audit-list {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 22px;
  }

  .hero-actions {
    gap: 10px;
    width: 100%;
  }

  .hero-copy {
    max-width: none;
  }

  .offer-eyebrow {
    margin-bottom: 12px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 2.1rem;
    line-height: 0.96;
  }

  h1 span {
    display: inline;
  }

  .hero-text {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .value-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
    padding: 11px 0;
  }

  .value-strip span {
    min-width: 0;
    font-size: 0.7rem;
  }

  .value-strip strong {
    font-size: 0.92rem;
  }

  .hero-actions .button-primary {
    min-height: 52px;
  }

  .form-header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .form-price {
    width: fit-content;
  }

  .social-profile-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-profile-followers {
    padding-left: 32px;
    text-align: left;
  }
}

.results-page-header {
  padding-bottom: 12px;
}

.results-hero {
  padding: 48px 0 28px;
}

.results-hero h1 {
  margin-bottom: 18px;
}

.skeleton-card {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: hidden;
}

.skeleton-card .loading-wheel {
  margin-bottom: 4px;
}

.skeleton-card h3 {
  margin-bottom: 8px;
}

.skeleton-line {
  display: block;
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(100deg, #eaf0fb 30%, #f8fbff 50%, #eaf0fb 70%);
  background-size: 220% 100%;
  animation: shimmer 1.35s infinite linear;
}

.skeleton-badge {
  width: 86px;
  height: 34px;
  margin-bottom: 4px;
}

.skeleton-title {
  width: 68%;
  height: 28px;
  margin-bottom: 8px;
}

.skeleton-short {
  width: 54%;
}

.progress-wrap {
  position: relative;
  flex: 0 1 420px;
  min-width: 280px;
  border: 1px solid rgba(36, 87, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 166, 166, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.84));
  padding: 18px;
  text-align: left;
  box-shadow: 0 18px 42px rgba(36, 87, 255, 0.12);
}

.progress-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.progress-copy span {
  color: #3b3200;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-copy strong {
  color: var(--text);
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.progress-wrap p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.progress-bar {
  height: 16px;
  border: 1px solid rgba(36, 87, 255, 0.1);
  background: rgba(220, 228, 242, 0.7);
  box-shadow: inset 0 2px 5px rgba(20, 33, 61, 0.08);
}

.progress-bar span {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #2457ff, #00a6a6, #43d17a);
  box-shadow: 0 0 22px rgba(0, 166, 166, 0.35);
}

.progress-wrap.complete .progress-bar span {
  box-shadow: none;
}

.progress-bar span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  animation: progress-sheen 1.45s infinite;
}

.progress-wrap.complete .progress-bar span::after {
  animation: none;
  opacity: 0;
}

@keyframes progress-sheen {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@media (max-width: 860px) {
  .instagram-summary,
  .instagram-panels,
  .following-summary {
    grid-template-columns: 1fr;
  }

  .instagram-map {
    grid-template-columns: 1fr;
  }

  .instagram-result-card .result-evidence {
    grid-template-columns: 1fr;
  }

  .tiktok-thumbnail-grid a {
    flex-basis: clamp(72px, 22vw, 96px);
  }

  .companies-house-officer-content {
    grid-template-columns: 1fr;
  }

  .companies-house-company-list {
    max-height: 160px;
  }

  .instagram-map-canvas {
    min-height: 260px;
  }

  .results-header .progress-wrap {
    flex: none;
    min-width: 0;
    width: 100%;
  }
}
