:root {
  --ink: #141414;
  --paper: #f7f3ea;
  --white: #fffaf0;
  --line: #ded3c3;
  --muted: #6b6258;
  --red: #be2a25;
  --green: #2f6f58;
  --gold: #a7792c;
  --shadow: 0 22px 60px rgba(20, 20, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  margin: 12px clamp(10px, 2vw, 24px);
  padding: 14px clamp(18px, 4vw, 54px);
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 8px;
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(20, 20, 20, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.18);
}

.brand-mark-texture {
  display: none;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 8px;
  color: #3a352f;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  border-radius: 6px;
  padding: 9px 11px;
}

.nav-links a:hover {
  background: rgba(20, 20, 20, 0.08);
}

.theme-toggle {
  min-height: 38px;
  border: 1px solid rgba(20, 20, 20, 0.28);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.7);
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.theme-toggle:hover {
  background: rgba(20, 20, 20, 0.08);
}

html[data-theme="texture"] {
  --ink: #eee8df;
  --paper: #151817;
  --white: #202321;
  --line: rgba(226, 218, 206, 0.14);
  --muted: #afa79d;
  --red: #b93b3c;
  --green: #6f8177;
  --gold: #c2a06c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html[data-theme="texture"] body {
  background:
    radial-gradient(circle at 10% 0%, rgba(185, 59, 60, 0.16), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(194, 160, 108, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 44%),
    #111413;
  color: var(--ink);
}

html[data-theme="texture"] .site-header {
  border-color: rgba(226, 218, 206, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    rgba(18, 20, 19, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

html[data-theme="texture"] .brand-mark-classic {
  display: none;
}

html[data-theme="texture"] .brand-mark-texture {
  display: block;
  background: #111413;
  object-position: center 38%;
}

html[data-theme="texture"] .brand span,
html[data-theme="texture"] .nav-links,
html[data-theme="texture"] .nav-links a,
html[data-theme="texture"] .theme-toggle {
  color: var(--ink);
}

html[data-theme="texture"] .nav-links a:hover,
html[data-theme="texture"] .theme-toggle:hover,
html[data-theme="texture"] .button.secondary:hover,
html[data-theme="texture"] .directory-heading-actions a:hover,
html[data-theme="texture"] .card-links a:hover,
html[data-theme="texture"] .profile-link:hover,
html[data-theme="texture"] .text-link:hover,
html[data-theme="texture"] .link-row a:hover,
html[data-theme="texture"] .mini-link:hover,
html[data-theme="texture"] .claim-result-card a:hover,
html[data-theme="texture"] .mini-action:hover {
  background: rgba(238, 232, 223, 0.08);
}

html[data-theme="texture"] .theme-toggle {
  border-color: rgba(226, 218, 206, 0.24);
  background: rgba(32, 35, 33, 0.86);
}

html[data-theme="texture"] .hero,
html[data-theme="texture"] .directory-hero,
html[data-theme="texture"] .studio-hero,
html[data-theme="texture"] .form-hero {
  background:
    linear-gradient(90deg, rgba(185, 59, 60, 0.18), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 10px),
    #151817;
}

html[data-theme="texture"] .path-section,
html[data-theme="texture"] .directory-section,
html[data-theme="texture"] .directory-page-section,
html[data-theme="texture"] .signal-band article,
html[data-theme="texture"] .studio-body,
html[data-theme="texture"] .profile-band article,
html[data-theme="texture"] .visibility-section,
html[data-theme="texture"] .artists-section,
html[data-theme="texture"] .pending-requests-section,
html[data-theme="texture"] .form-section,
html[data-theme="texture"] .claim-search-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 9px),
    #171a19;
}

html[data-theme="texture"] .path-card,
html[data-theme="texture"] .launch-panel,
html[data-theme="texture"] .metric-grid div,
html[data-theme="texture"] .directory-card,
html[data-theme="texture"] .directory-empty,
html[data-theme="texture"] .studio-contact-panel,
html[data-theme="texture"] .artist-card,
html[data-theme="texture"] .visibility-rank-card,
html[data-theme="texture"] .visibility-grid article,
html[data-theme="texture"] .claim-form,
html[data-theme="texture"] .studio-picker-note,
html[data-theme="texture"] .claim-result-card {
  border-color: rgba(226, 218, 206, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    #202321;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

html[data-theme="texture"] .launch-panel::before {
  content: "";
  display: block;
  height: clamp(180px, 24vw, 260px);
  margin-bottom: 20px;
  border: 1px solid rgba(226, 218, 206, 0.14);
  border-radius: 8px;
  background: #101211 url("./assets/fukt-logo-texture.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

html[data-theme="texture"] .claim-section,
html[data-theme="texture"] .voucher-panel,
html[data-theme="texture"] .form-note,
html[data-theme="texture"] .data-note {
  background:
    linear-gradient(135deg, rgba(185, 59, 60, 0.12), transparent 42%),
    #111413;
}

html[data-theme="texture"] .lead,
html[data-theme="texture"] .path-card p,
html[data-theme="texture"] .directory-card p,
html[data-theme="texture"] .signal-band p,
html[data-theme="texture"] .claim-section p,
html[data-theme="texture"] .studio-loading p,
html[data-theme="texture"] .profile-alert p,
html[data-theme="texture"] .profile-facts,
html[data-theme="texture"] .profile-band p,
html[data-theme="texture"] .visibility-summary p,
html[data-theme="texture"] .visibility-rank-card p,
html[data-theme="texture"] .competitor-list span,
html[data-theme="texture"] .artists-section p,
html[data-theme="texture"] .artist-card p,
html[data-theme="texture"] .form-note p {
  color: #cfc7bb;
}

html[data-theme="texture"] .button,
html[data-theme="texture"] .directory-heading-actions a,
html[data-theme="texture"] .card-links a,
html[data-theme="texture"] .profile-link,
html[data-theme="texture"] .text-link,
html[data-theme="texture"] .link-row a,
html[data-theme="texture"] .mini-link,
html[data-theme="texture"] .claim-result-card a,
html[data-theme="texture"] .mini-action {
  border-color: rgba(226, 218, 206, 0.28);
  color: var(--ink);
}

html[data-theme="texture"] .button.primary,
html[data-theme="texture"] .primary-profile-link {
  border-color: var(--red);
  background: var(--red);
  color: #fff6ec;
}

html[data-theme="texture"] .progress-track,
html[data-theme="texture"] .directory-input,
html[data-theme="texture"] .directory-select,
html[data-theme="texture"] .claim-form input,
html[data-theme="texture"] .claim-form select,
html[data-theme="texture"] .claim-form textarea {
  border-color: rgba(226, 218, 206, 0.18);
  background: #141716;
  color: var(--ink);
}

html[data-theme="texture"] .claim-form input[readonly] {
  background: #262925;
  color: #bdb5aa;
}

html[data-theme="texture"] .claim-form label,
html[data-theme="texture"] .claim-form .check-field span,
html[data-theme="texture"] .card-facts span,
html[data-theme="texture"] .secondary-card-link {
  color: #d8d0c4;
}

html[data-theme="texture"] .studio-tags span,
html[data-theme="texture"] .claim-form .check-field,
html[data-theme="texture"] .pending-artist-card,
html[data-theme="texture"] .profile-alert,
html[data-theme="texture"] .form-status {
  border-color: rgba(185, 59, 60, 0.34);
  background: rgba(185, 59, 60, 0.1);
  color: #efe6dc;
}

html[data-theme="texture"] .form-status[data-type="error"] {
  background: rgba(185, 59, 60, 0.16);
  color: #ffd8d1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 6vw, 76px);
  min-height: calc(100vh - 108px);
  padding: clamp(34px, 6vw, 82px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(190, 42, 37, 0.09), transparent 36%),
    radial-gradient(circle at 88% 14%, rgba(47, 111, 88, 0.17), transparent 32%),
    var(--paper);
}

.path-section {
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

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

.path-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ea;
  padding: clamp(18px, 3vw, 28px);
}

.path-card:hover {
  border-color: rgba(20, 20, 20, 0.32);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.1);
}

.path-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.path-card h3 {
  margin: auto 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.path-card p {
  margin: 0;
  color: #463f37;
  font-size: 16px;
  line-height: 1.5;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 106px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: #3f3932;
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  background: #2a2724;
}

.button.secondary {
  background: transparent;
}

.button.secondary:hover {
  background: rgba(20, 20, 20, 0.08);
}

.launch-panel {
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 34px);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(47, 111, 88, 0.15);
}

.progress-track {
  height: 16px;
  margin: 22px 0 28px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #eee5d8;
}

.progress-fill {
  width: 88%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 12px,
    #e0ad42 12px 24px,
    var(--green) 24px 36px
  );
  animation: load-slide 9s linear infinite;
}

@keyframes load-slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 160px 0;
  }
}

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

.metric-grid div {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fffdf7;
}

.metric-grid strong {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.directory-section {
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.directory-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.directory-heading-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.directory-heading-actions a {
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 850;
}

.directory-heading-actions a:hover {
  background: rgba(20, 20, 20, 0.08);
}

.directory-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.directory-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.directory-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.directory-input,
.directory-select,
.claim-form input,
.claim-form select,
.claim-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
}

.directory-input,
.directory-select,
.claim-form input,
.claim-form select {
  min-height: 46px;
  padding: 0 12px;
}

.claim-form input[readonly] {
  background: #ebe3d8;
  color: #4a433c;
  cursor: default;
}

.claim-form textarea {
  padding: 12px;
  resize: vertical;
}

.directory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.directory-card,
.directory-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ea;
  padding: 16px;
}

.directory-card {
  display: flex;
  min-width: 0;
  min-height: 248px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.directory-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.directory-card p {
  margin: 0;
  color: #463f37;
  overflow-wrap: anywhere;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--red) !important;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.card-facts,
.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-facts span {
  border: 1px solid rgba(20, 20, 20, 0.16);
  border-radius: 999px;
  padding: 6px 9px;
  color: #453e37;
  font-size: 12px;
  font-weight: 800;
}

.card-links a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 36px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.card-links a:hover {
  background: rgba(20, 20, 20, 0.08);
}

.card-socials {
  color: var(--muted) !important;
  font-size: 13px;
  font-weight: 760;
}

.directory-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 800;
}

.directory-empty a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directory-more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.directory-more button[hidden] {
  display: none;
}

.secondary-card-link {
  color: #4a433c;
}

.directory-hero {
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(190, 42, 37, 0.1), transparent 38%),
    var(--paper);
}

.directory-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 106px);
}

.directory-page-section {
  border-bottom: 0;
}

@media (min-width: 900px) {
  .directory-controls {
    grid-template-columns: minmax(240px, 1fr) minmax(190px, 0.35fr) minmax(190px, 0.35fr);
  }

  .directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.signal-band article {
  min-height: 320px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--paper);
}

.signal-band h2,
.claim-section h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.signal-band p,
.claim-section p {
  max-width: 620px;
  color: #463f37;
  font-size: 17px;
  line-height: 1.55;
}

.claim-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
  background: #181512;
  color: var(--white);
}

.claim-section .eyebrow {
  color: #e0ad42;
}

.claim-section p {
  color: #d8d0c4;
}

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

.claim-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 250, 240, 0.06);
  font-weight: 800;
}

.claim-list span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
}

.studio-body {
  background: #fffaf0;
}

.studio-page {
  min-height: calc(100vh - 72px);
}

.studio-loading {
  display: grid;
  min-height: calc(100vh - 72px);
  place-items: center;
  padding: 40px 18px;
  text-align: center;
}

.studio-loading h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
}

.studio-loading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.loading-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 5px solid rgba(20, 20, 20, 0.16);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}

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

.studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.06), transparent 46%),
    linear-gradient(90deg, rgba(190, 42, 37, 0.11), transparent 42%),
    var(--paper);
}

.studio-title-block h1 {
  max-width: 960px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 94px);
}

.studio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.studio-tags span {
  border: 1px solid rgba(20, 20, 20, 0.22);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 250, 240, 0.68);
  color: #3c352f;
  font-size: 13px;
  font-weight: 800;
}

.studio-contact-panel {
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
}

.profile-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(190, 42, 37, 0.28);
  background: #fff0df;
  padding: 18px clamp(18px, 4vw, 54px);
}

.profile-alert h2 {
  margin: 2px 0 6px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.profile-alert p {
  margin: 0;
  color: #4a3a2f;
  font-weight: 760;
}

.profile-score {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.profile-score strong {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.9;
}

.profile-score span {
  margin-bottom: 7px;
  color: var(--muted);
  font-weight: 800;
}

.profile-facts {
  display: grid;
  gap: 9px;
  padding: 18px 0;
  color: #433c35;
  font-weight: 760;
}

.profile-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-link,
.text-link,
.link-row a,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 0 12px;
  background: transparent;
  font-size: 14px;
  font-weight: 850;
}

.profile-link:hover,
.text-link:hover,
.link-row a:hover,
.mini-link:hover {
  background: rgba(20, 20, 20, 0.08);
}

.primary-profile-link {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.primary-profile-link:hover {
  background: #9f211d;
}

.profile-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-band article {
  min-height: 280px;
  padding: clamp(24px, 4vw, 44px);
  background: #fffaf0;
}

.profile-band h2,
.artists-section h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.profile-band p,
.artists-section p {
  color: #463f37;
  font-size: 17px;
  line-height: 1.55;
}

.visibility-section {
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.visibility-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
  margin-bottom: 16px;
}

.visibility-summary h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.visibility-summary p {
  max-width: 760px;
  color: #463f37;
  font-size: 17px;
  line-height: 1.55;
}

.visibility-rank-card {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ea;
  padding: clamp(18px, 3vw, 28px);
}

.visibility-rank-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.visibility-rank-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
}

.visibility-rank-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

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

.visibility-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ea;
  padding: clamp(18px, 3vw, 28px);
}

.visibility-grid h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.08;
}

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

.competitor-list div {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.competitor-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.competitor-list strong {
  line-height: 1.25;
}

.competitor-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.visibility-tips {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: inherit;
  line-height: 1.45;
}

.artists-section {
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
  background: #f7f3ea;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

.artist-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fffaf0;
}

.artist-directory-card {
  min-height: 230px;
}

.artist-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.15;
}

.artist-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pending-requests-section {
  border-top: 1px solid var(--line);
  background: #fffaf0;
}

.pending-artist-card {
  border-color: rgba(190, 42, 37, 0.35);
  background: #fff7ee;
}

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

.request-actions button {
  cursor: pointer;
}

.muted-button {
  border-color: var(--line);
  color: var(--muted);
}

.muted-link {
  border-color: var(--line);
  color: var(--muted);
  pointer-events: none;
}

.studio-claim {
  border-top: 1px solid rgba(255, 250, 240, 0.1);
}

.data-note {
  padding: 18px clamp(18px, 4vw, 54px);
  background: #0f0e0d;
  color: #d8d0c4;
}

.data-note p {
  margin: 0 0 6px;
  color: #e0ad42;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.data-note code {
  display: block;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(190, 42, 37, 0.1), transparent 38%),
    var(--paper);
}

.form-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 88px);
}

.voucher-panel {
  border: 2px solid var(--red);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 32px);
}

.voucher-panel p {
  margin: 0 0 12px;
  color: #e0ad42;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.voucher-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.voucher-panel span {
  display: block;
  color: #f1e7d8;
  font-size: 17px;
  line-height: 1.45;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: start;
  padding: clamp(30px, 5vw, 64px) clamp(18px, 4vw, 54px);
  background: #fffaf0;
}

.claim-search-section {
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.claim-directory-controls {
  grid-template-columns: 1fr;
}

.artist-directory-controls {
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .artist-directory-controls {
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.28fr);
  }
}

.claim-search-results {
  display: grid;
  gap: 10px;
}

.studio-picker {
  position: relative;
  display: grid;
  gap: 10px;
}

.studio-picker-results {
  display: grid;
  gap: 8px;
}

.studio-picker-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ea;
  color: var(--muted);
  padding: 12px;
  font-weight: 800;
}

.claim-result-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ea;
  padding: 14px;
}

.claim-result-card strong,
.claim-result-card span {
  display: block;
}

.claim-result-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.claim-result-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.claim-result-card a {
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 850;
}

.claim-result-card a:hover,
.mini-action:hover {
  background: rgba(20, 20, 20, 0.08);
}

.mini-action {
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.claim-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ea;
  padding: clamp(18px, 3vw, 28px);
}

.claim-form label {
  display: grid;
  gap: 7px;
  color: #3d352f;
  font-size: 13px;
  font-weight: 850;
}

.claim-form .check-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border: 1px solid rgba(190, 42, 37, 0.35);
  border-radius: 8px;
  background: #fffaf0;
  padding: 12px;
}

.claim-form .check-field input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.claim-form .check-field span {
  color: #2d2824;
  line-height: 1.35;
}

.claim-form button {
  margin-top: 4px;
  cursor: pointer;
}

.form-status {
  border: 1px solid rgba(37, 117, 76, 0.35);
  border-radius: 8px;
  background: #eef7ef;
  color: #204c32;
  padding: 12px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.form-status[data-type="error"] {
  border-color: rgba(190, 42, 37, 0.35);
  background: #fff0ed;
  color: #7b1f1a;
}

.form-status a {
  color: inherit;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status strong,
.form-status span {
  display: block;
}

.verification-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 10px 0;
}

.hidden-field {
  display: none;
}

.form-note {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(18px, 3vw, 28px);
}

.form-note h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.form-note p {
  color: #d8d0c4;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand span {
    white-space: normal;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .directory-heading,
  .form-hero,
  .claim-section,
  .signal-band,
  .studio-hero,
  .profile-band,
  .visibility-summary,
  .visibility-grid,
  .form-section,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .profile-alert {
    align-items: stretch;
    flex-direction: column;
  }

  .signal-band article,
  .profile-band article {
    min-height: 0;
  }

  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-heading {
    align-items: start;
    display: grid;
  }

  .directory-heading-actions {
    justify-items: start;
  }

  .directory-controls {
    grid-template-columns: 1fr;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .form-note {
    position: static;
  }

  .claim-result-card {
    align-items: stretch;
    flex-direction: column;
  }

  .claim-result-card a {
    text-align: center;
  }
}

@media (max-width: 540px) {
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav-links a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  h1 {
    font-size: 46px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-directory-grid {
    grid-template-columns: 1fr;
  }

}
