body.report-screen {
  background-color: #fafafc;
  color: var(--gray-900);
  line-height: 1.5;
  min-height: 100vh;
}

body.report-screen * {
  box-sizing: border-box;
}

body.report-screen a {
  color: inherit;
  text-decoration: none;
}

body.report-screen button,
body.report-screen input,
body.report-screen textarea {
  font-family: inherit;
}

body.report-screen button {
  cursor: pointer;
}

body.report-screen input,
body.report-screen textarea {
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 1100px;
}

.text-red {
  color: var(--red-500);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-state {
  display: block;
  width: min(1100px, calc(100vw - 32px));
  margin: 88px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(239, 68, 68, 0.16);
  border-radius: 12px;
  background: white;
  color: var(--gray-700);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  box-shadow: 0 18px 32px -28px rgba(15, 23, 42, 0.3);
}

.page-state[hidden] {
  display: none !important;
}

.page-state--error {
  border-color: rgba(239, 68, 68, 0.2);
  color: var(--red-600);
}

.page-state--success {
  border-color: rgba(14, 165, 233, 0.22);
  color: var(--brand-600);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 24px 82px;
  background-color: var(--gray-900);
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 800px;
  height: 400px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  filter: blur(120px);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 14px;
  color: white;
  font-size: 38px;
  font-weight: var(--font-semibold);
  letter-spacing: -0.7px;
  line-height: 1.18;
}

.hero p {
  color: var(--gray-400);
  font-size: 17px;
  font-weight: var(--font-normal);
  line-height: 1.55;
}

.main-content {
  position: relative;
  z-index: 20;
  margin-top: -64px;
  padding-bottom: 96px;
}

.form-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 28px 70px -38px rgba(15, 23, 42, 0.48);
}

.report-form {
  display: grid;
  gap: 16px;
}

.form-card__head {
  padding: 0 2px 8px;
}

.form-card__head h2 {
  color: var(--gray-900);
  font-size: 24px;
  font-weight: var(--font-semibold);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.form-card__head p {
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.5;
}

.form-stage {
  display: grid;
  gap: 16px;
}

.form-stage--target {
  grid-template-columns: 1fr;
}

.form-stage--experience {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.form-stage--evidence {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.form-panel {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px -34px rgba(15, 23, 42, 0.45);
}

.form-panel--intent {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.03), rgba(14, 165, 233, 0.05)),
    rgba(255, 255, 255, 0.9);
}

.form-panel--target {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.92) 46%),
    rgba(255, 255, 255, 0.92);
}

.form-panel--score {
  z-index: 5;
}

.form-panel--details {
  padding-bottom: 18px;
}

.target-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.input-group--club {
  grid-column: 1 / -1;
}

.club-select {
  width: 100%;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 96% 12%, rgba(16, 185, 129, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.9));
  color: var(--gray-900);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.club-select:hover,
.club-select:focus-visible {
  border-color: rgba(5, 150, 105, 0.42);
  background:
    radial-gradient(circle at 96% 12%, rgba(16, 185, 129, 0.2), transparent 34%),
    white;
  box-shadow: 0 18px 34px -28px rgba(5, 150, 105, 0.65);
  transform: translateY(-1px);
}

.club-select.is-selected {
  border-color: rgba(5, 150, 105, 0.5);
  background:
    radial-gradient(circle at 96% 12%, rgba(16, 185, 129, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, rgba(236, 253, 245, 0.96));
}

.club-select__kicker {
  color: #047857;
  font-size: 11px;
  font-weight: var(--font-bold);
  letter-spacing: 0.04em;
}

.club-select strong {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.club-select span:last-child {
  color: var(--gray-500);
  font-size: var(--text-xs);
  line-height: 1.5;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  margin-bottom: 10px;
}

.upload-header__title {
  margin: 0;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--gray-900);
  color: white;
  font-size: 11px;
  font-weight: var(--font-semibold);
}

.step-title {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

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

.type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 14px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
  transition: all 0.2s ease;
}

.type-card:hover {
  border-color: rgba(14, 165, 233, 0.22);
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px -26px rgba(15, 23, 42, 0.42);
}

.type-card .emoji {
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1;
}

.type-card .title {
  color: var(--gray-900);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.type-card .desc {
  margin-top: 5px;
  color: var(--gray-500);
  font-size: 10px;
  line-height: 1.5;
}

.type-card.selected-bad {
  border-color: var(--red-500);
  background: var(--red-50);
  box-shadow: 0 16px 30px -28px rgba(239, 68, 68, 0.7);
}

.type-card.selected-good {
  border-color: var(--emerald-500);
  background: var(--emerald-50);
  box-shadow: 0 16px 30px -28px rgba(16, 185, 129, 0.72);
}

.type-card.selected-neutral {
  border-color: var(--gray-500);
  background: var(--gray-100);
}

.dispute-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(239, 68, 68, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(254, 242, 242, 0.9)),
    white;
}

.tag-panel {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    white;
}

.tag-panel[hidden] {
  display: none !important;
}

.tag-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.tag-panel__head strong {
  color: var(--gray-900);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
}

.tag-panel__head span {
  color: var(--gray-500);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.tag-panel--bad {
  border-color: rgba(239, 68, 68, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(254, 242, 242, 0.86)),
    white;
}

.tag-panel--good {
  border-color: rgba(16, 185, 129, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.9)),
    white;
}

.tag-panel--neutral {
  border-color: rgba(100, 116, 139, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.88)),
    white;
}

.dispute-panel[hidden],
.dispute-types-wrap[hidden] {
  display: none !important;
}

.dispute-panel__head strong {
  display: block;
  color: var(--gray-900);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.dispute-panel__head p {
  margin-top: 6px;
  color: var(--gray-600);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.dispute-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.dispute-toggle__option {
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--gray-700);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-align: left;
  transition: all 0.2s ease;
}

.dispute-toggle__option:hover {
  border-color: rgba(239, 68, 68, 0.28);
  background: white;
}

.dispute-toggle__option.is-active {
  border-color: rgba(220, 38, 38, 0.42);
  background: rgba(254, 242, 242, 0.96);
  color: var(--red-700);
  box-shadow: 0 14px 24px -22px rgba(220, 38, 38, 0.72);
}

.dispute-types-wrap {
  margin-top: 16px;
}

.dispute-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dispute-type-chip {
  padding: 8px 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-700);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  transition: all 0.2s ease;
}

.dispute-type-chip:hover {
  border-color: rgba(220, 38, 38, 0.24);
  background: white;
}

.dispute-type-chip.is-active {
  border-color: rgba(220, 38, 38, 0.48);
  background: rgba(220, 38, 38, 0.08);
  color: var(--red-700);
}

.dispute-hint {
  margin-top: 10px;
  color: var(--gray-600);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.score-guide {
  position: relative;
}

.score-guide__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--brand-700);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.score-guide__trigger:hover,
.score-guide__trigger[aria-expanded="true"] {
  border-color: rgba(14, 165, 233, 0.32);
  background: rgba(14, 165, 233, 0.14);
  color: var(--brand-700);
}

.score-guide__popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  width: 430px;
  max-width: calc(100vw - 48px);
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 52px -30px rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(14px);
}

.score-guide__popover[hidden] {
  display: none !important;
}

.score-guide__popover::before {
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  content: "";
  transform: rotate(45deg);
}

.score-guide__item + .score-guide__item {
  margin-top: 10px;
}

.score-guide__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #020617;
}

.score-guide__head strong {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
}

.score-guide__head span {
  color: #0f172a;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  white-space: nowrap;
}

.score-guide__item p {
  margin-top: 3px;
  color: #64748b;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.score-sheet {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.score-row {
  --score-color: var(--gray-400);
  --score-tint: var(--gray-100);
  display: grid;
  grid-template-columns: minmax(84px, 96px) minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.score-row:hover,
.score-row:focus-within {
  border-color: rgba(14, 165, 233, 0.22);
  background: white;
  box-shadow: 0 12px 24px -22px rgba(15, 23, 42, 0.4);
}

.score-row__label {
  color: var(--gray-900);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
}

.score-row__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--score-tint);
  color: var(--score-color);
  font-size: 11px;
  font-weight: var(--font-bold);
  text-align: center;
  line-height: 1.2;
}

.score-row__input {
  width: 100%;
  height: 22px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.score-row__input:focus {
  outline: none;
}

.score-row__input::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--score-color) var(--score-progress, 0%),
    var(--gray-200) var(--score-progress, 0%)
  );
}

.score-row__input::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border: 2px solid white;
  border-radius: 999px;
  appearance: none;
  background: var(--score-color);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.22);
}

.score-row__input::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--gray-200);
}

.score-row__input::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--score-color);
}

.score-row__input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid white;
  border-radius: 999px;
  background: var(--score-color);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.22);
}

.input-group {
  margin-bottom: 16px;
}

.form-panel > .input-group:last-child,
.input-row .input-group,
.target-fields .input-group,
.detail-layout .input-group {
  margin-bottom: 0;
}

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

.input-label {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-700);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
}

.form-input {
  width: 100%;
  height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-50);
  font-size: var(--text-base);
  line-height: 20px;
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: var(--gray-900);
  background: white;
  box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.1);
}

.form-textarea {
  height: auto;
  resize: vertical;
  min-height: 112px;
}

.detail-layout {
  display: block;
}

.upload-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.upload-count {
  color: var(--gray-500);
  font-size: var(--text-xs);
}

.upload-count span {
  color: var(--gray-800);
  font-weight: var(--font-semibold);
}

.upload-tip {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--gray-500);
  font-size: var(--text-xs);
}

.upload-tip i {
  color: var(--brand-500);
}

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

.image-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-50);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delete-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  transition: all 0.2s ease;
}

.image-item:hover .delete-btn {
  opacity: 1;
}

.delete-btn:hover {
  background: var(--red-500);
}

.upload-btn {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-200);
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--gray-400);
  transition: all 0.2s ease;
}

.upload-btn:hover {
  border-color: var(--brand-500);
  background: var(--brand-50);
  color: var(--brand-500);
}

.upload-btn i {
  margin-bottom: 4px;
  font-size: var(--text-2xl);
}

.upload-btn span {
  font-size: 10px;
  font-weight: var(--font-semibold);
}

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

.tag-list[hidden] {
  display: none !important;
}

.tag {
  padding: 7px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: white;
  color: var(--gray-600);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  transition: all 0.2s ease;
  user-select: none;
}

.tag:hover {
  border-color: var(--gray-300);
}

.tag.active-bad {
  border-color: var(--red-500);
  background: var(--red-50);
  color: var(--red-600);
}

.tag.active-good {
  border-color: var(--emerald-500);
  background: var(--emerald-50);
  color: var(--emerald-700);
}

.tag.active-neutral {
  border-color: var(--gray-400);
  background: var(--gray-100);
  color: var(--gray-700);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.03);
}

.promise-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.promise-box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
}

.promise-box label {
  color: var(--gray-600);
  font-size: var(--text-xs);
  line-height: 1.6;
  cursor: pointer;
  user-select: none;
}

.submit-btn {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 16px;
  border-radius: 14px;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  transition: all 0.2s ease;
}

.submit-btn.valid {
  background: var(--gray-900);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.submit-btn.valid:hover {
  background: black;
}

.submit-btn.invalid {
  background: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
}

body.report-screen.club-picker-open {
  overflow: hidden;
}

.club-picker {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.club-picker[hidden] {
  display: none !important;
}

.club-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(8px);
}

.club-picker__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 0%, rgba(16, 185, 129, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 34px 80px -34px rgba(15, 23, 42, 0.64);
  animation: club-picker-enter 0.18s ease-out;
}

@keyframes club-picker-enter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.club-picker__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.club-picker__head p {
  margin-bottom: 5px;
  color: #047857;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
}

.club-picker__head h2 {
  color: var(--gray-900);
  font-size: 24px;
  font-weight: var(--font-bold);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.club-picker__close {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: white;
  color: var(--gray-500);
  font-size: 22px;
  line-height: 1;
  transition: all 0.2s ease;
}

.club-picker__close:hover {
  border-color: rgba(15, 23, 42, 0.18);
  color: var(--gray-900);
  transform: rotate(90deg);
}

.club-search {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.club-search span {
  color: var(--gray-700);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
}

.club-search input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: white;
  color: var(--gray-900);
  font-size: var(--text-base);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.club-search input:focus {
  border-color: rgba(5, 150, 105, 0.48);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.club-picker__status {
  min-height: 20px;
  margin-bottom: 8px;
  color: var(--gray-500);
  font-size: var(--text-xs);
  line-height: 1.5;
}

.club-picker__results {
  display: grid;
  gap: 9px;
  max-height: 310px;
  overflow: auto;
  padding-right: 2px;
}

.club-result {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  text-align: left;
  transition: all 0.2s ease;
}

.club-result:hover,
.club-result:focus-visible {
  border-color: rgba(5, 150, 105, 0.34);
  background: white;
  box-shadow: 0 16px 28px -26px rgba(5, 150, 105, 0.58);
  transform: translateY(-1px);
}

.club-result__logo {
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #064e3b, #10b981);
    color: white;
  font-size: var(--text-lg);
    font-weight: var(--font-bold);
  }

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

.club-result__main {
  min-width: 0;
}

.club-result__main strong {
  display: block;
  overflow: hidden;
  color: var(--gray-900);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.club-result__main span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--gray-500);
  font-size: var(--text-xs);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.club-result__badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 11px;
  font-weight: var(--font-bold);
  white-space: nowrap;
}

.club-picker__results-note {
  padding: 6px 0 2px;
  color: var(--gray-500);
  font-size: var(--text-xs);
  line-height: 1.5;
  text-align: center;
}

.club-picker__empty {
  padding: 18px;
  border: 1px dashed rgba(15, 23, 42, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.club-picker__manual {
  display: grid;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.92), rgba(255, 255, 255, 0.92)),
    white;
}

.club-picker__manual strong {
  color: var(--gray-900);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
}

.club-picker__manual p {
  margin-top: 3px;
  color: var(--gray-600);
  font-size: var(--text-xs);
  line-height: 1.5;
}

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

.club-picker__manual-btn {
  padding: 0 16px;
  border-radius: 12px;
  background: #047857;
  color: white;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.club-picker__manual-btn:hover {
  background: #065f46;
  box-shadow: 0 14px 26px -22px rgba(4, 120, 87, 0.8);
}

@media (max-width: 1024px) {
  .form-stage--experience,
  .form-stage--evidence,
  .target-fields {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 72px 20px 60px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .form-card {
    padding: 18px;
    border-radius: 22px;
  }

  .form-card__head {
    padding-bottom: 6px;
  }

  .form-card__head h2 {
    font-size: 20px;
  }

  .form-card__head p {
    font-size: 12px;
  }

  .step-header {
    margin-bottom: 8px;
  }

  .step-title {
    font-size: 16px;
  }

  .form-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .dispute-toggle {
    grid-template-columns: 1fr;
  }

  .club-picker {
    align-items: end;
    padding: 14px;
  }

  .club-picker__dialog {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 18px;
    border-radius: 22px;
  }

  .club-picker__head h2 {
    font-size: 20px;
  }

  .club-result {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .club-result__badge {
    grid-column: 2;
    justify-self: start;
  }

  .club-picker__manual-row {
    grid-template-columns: 1fr;
  }

  .club-picker__manual-btn {
    min-height: 42px;
  }
}

@media (max-width: 560px) {
  .type-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .page-state {
    width: calc(100vw - 32px);
    margin-top: 80px;
  }

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

  .score-guide__popover {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }

  .score-guide__popover::before {
    display: none;
  }

  .score-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 10px;
  }

  .score-row__input {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .score-row__value {
    grid-column: 2;
    grid-row: 1;
  }
}
