:root {
  color-scheme: light;
  --bg: #eef4f3;
  --panel: rgba(255, 255, 255, 0.94);
  --text: #101828;
  --muted: #667085;
  --border: rgba(16, 24, 40, 0.08);
  --primary: #155fc2;
  --primary-soft: rgba(21, 95, 194, 0.1);
  --teal: #087760;
  --orange: #b85f0f;
  --shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
  --hairline: rgba(16, 24, 40, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(197, 220, 220, 0.55) 0, rgba(245, 248, 247, 0.92) 170px, #eef4f3 100%);
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
}

.app {
  width: min(100vw, 430px);
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 10px 92px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 4px 0;
  isolation: isolate;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--hairline);
  background: rgba(245, 249, 247, 0.92);
  backdrop-filter: blur(14px);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #155fc2, #087760);
  box-shadow: 0 8px 16px rgba(21, 95, 194, 0.18);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(-34deg);
  transform-origin: left center;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

h2 {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 12px;
}

h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.35;
}

.muted {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.nav-back,
.nav-spacer {
  width: 38px;
  height: 34px;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
}

.nav-back.visible {
  opacity: 1;
  pointer-events: auto;
}

.panel {
  min-width: 0;
  max-width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.section-title h2 {
  margin-bottom: 0;
}

.section-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.search-shell {
  position: sticky;
  top: 48px;
  z-index: 11;
  display: grid;
  gap: 8px;
  margin: 0 -2px 10px;
  overflow: visible;
  padding: 10px;
  border-color: rgba(16, 24, 40, 0.07);
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
  transition: max-height 180ms ease, opacity 180ms ease, margin 180ms ease, padding 180ms ease;
}

.feed-card,
.quick-actions button {
  border: 0;
  font: inherit;
  text-align: left;
}

.quick-actions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 2px;
}

.quick-actions::-webkit-scrollbar {
  display: none;
}

.quick-actions button {
  flex: 0 0 auto;
  height: 32px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  padding: 0 12px;
}

.feed-panel {
  margin-bottom: 10px;
  padding: 11px 10px 9px;
}

.feed-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  overflow: visible;
}

.feed-list::-webkit-scrollbar {
  display: none;
}

.feed-card {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f9fbfb);
  color: var(--text);
  padding: 10px;
  min-height: 122px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
}

.feed-card span {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  padding: 3px 7px;
}

.feed-card strong {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feed-card em,
.feed-card small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feed-card small:first-of-type {
  color: var(--primary);
  font-weight: 900;
}

.feed-club span {
  background: #eaf8f4;
  color: var(--teal);
}

.feed-athlete span {
  background: #fff4e6;
  color: var(--orange);
}

.list-title {
  margin: 4px 0 8px;
}

.search-shell.collapsed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  box-shadow: none;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  width: 100%;
  height: 36px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0 12px;
  font: inherit;
  color: var(--text);
}

input:focus,
select:focus {
  border-color: rgba(21, 95, 194, 0.42);
  box-shadow: 0 0 0 3px rgba(21, 95, 194, 0.08);
  outline: none;
}

.filter-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.filter-trigger {
  min-width: 0;
  height: 34px;
  border: 1px solid rgba(16, 24, 40, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  box-shadow: none;
}

.filter-trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  color: var(--muted);
  flex: 0 0 auto;
}

.filter-trigger.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.toggle-filter-trigger {
  min-width: 0;
  height: 34px;
  border: 1px solid rgba(13, 125, 103, 0.16);
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: none;
}

.toggle-filter-trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toggle-filter-trigger::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.74;
}

.toggle-filter-trigger.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.search-athletes-panel {
  margin-bottom: 12px;
  padding-bottom: 10px;
}

.role-workspace,
.role-home-shell {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.role-home-shell {
  padding-top: 12px;
}

.role-home-panel {
  align-content: start;
  padding: 14px;
}

.role-hero {
  display: grid;
  gap: 7px;
  padding: 2px 2px 6px;
}

.role-hero strong {
  font-size: 25px;
  line-height: 1.22;
}

.role-hero p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.role-panel {
  display: grid;
  gap: 10px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.role-grid button,
.child-picker button {
  min-width: 0;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 12px;
}

.role-grid strong,
.child-picker strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.role-grid span,
.child-picker span,
.role-panel-head span,
.role-panel-head em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-style: normal;
  margin-top: 4px;
}

.role-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.role-panel-head strong {
  display: block;
  font-size: 18px;
  line-height: 1.28;
  margin-top: 2px;
}

.role-panel-head button {
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 8px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 9px;
  white-space: nowrap;
}

.child-picker {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(136px, 44%);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.child-picker::-webkit-scrollbar {
  display: none;
}

.child-picker button.active {
  border-color: rgba(21, 95, 194, 0.42);
  background: rgba(21, 95, 194, 0.1);
  color: var(--primary);
}

.parent-decision {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(8, 119, 96, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(234, 248, 244, 0.95), rgba(255, 255, 255, 0.95));
  padding: 11px;
}

.parent-decision span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.parent-decision strong {
  font-size: 20px;
  line-height: 1.25;
}

.parent-decision p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.parent-insight-grid {
  display: grid;
  gap: 8px;
}

.parent-next-focus {
  display: grid;
  gap: 8px;
}

.parent-focus-row {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(21, 95, 194, 0.1);
  border-radius: 8px;
  background: rgba(21, 95, 194, 0.045);
  padding: 9px 10px;
}

.parent-focus-row strong,
.parent-focus-row span {
  display: block;
  min-width: 0;
}

.parent-focus-row strong {
  font-size: 13px;
}

.parent-focus-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.compact-action {
  min-height: 38px;
}

.athlete-result-list {
  display: grid;
  gap: 8px;
}

.result-group-label {
  margin: 10px 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.athlete-result-card {
  width: 100%;
  border: 1px solid rgba(13, 125, 103, 0.18);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(239, 250, 247, 0.98), rgba(255, 255, 255, 0.98));
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  text-align: left;
  font: inherit;
  color: var(--text);
}

.athlete-result-main {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.athlete-result-main strong {
  font-size: 15px;
  line-height: 1.3;
}

.athlete-result-main span,
.athlete-result-main em,
.athlete-result-side span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
}

.athlete-result-main em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.athlete-result-side {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 3px;
  white-space: nowrap;
}

.athlete-result-side b {
  color: var(--teal);
  font-size: 15px;
}

.club-result-card {
  border-color: rgba(15, 92, 192, 0.18);
  background: linear-gradient(180deg, rgba(238, 245, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.club-result-card .athlete-result-side b {
  color: var(--primary);
}

.club-summary-card {
  border: 1px solid rgba(15, 92, 192, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, #f7fbff, #fff);
  padding: 10px;
  box-shadow: 0 10px 22px rgba(15, 37, 64, 0.05);
}

.club-summary-head {
  width: 100%;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, #0d4b8f, #0f5cc0);
  color: #fff;
  padding: 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  text-align: left;
  font: inherit;
}

.club-summary-head span,
.club-summary-head em {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

.club-summary-head strong {
  display: block;
  margin: 2px 0;
  font-size: 17px;
  line-height: 1.3;
}

.club-summary-head b {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  padding: 6px 9px;
  white-space: nowrap;
}

.club-summary-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.club-summary-metrics div {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 8px 6px;
}

.club-summary-metrics strong,
.club-summary-metrics span {
  display: block;
}

.club-summary-metrics strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}

.club-summary-metrics span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.compact-result-block {
  margin-top: 10px;
}

.compact-athlete-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.compact-athlete-row button,
.compact-competition-list button {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
}

.compact-athlete-row button {
  padding: 8px;
}

.compact-athlete-row strong,
.compact-athlete-row span,
.compact-competition-list strong,
.compact-competition-list span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-athlete-row strong,
.compact-competition-list strong {
  font-size: 13px;
  line-height: 1.35;
}

.compact-athlete-row span,
.compact-competition-list span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.compact-competition-list {
  display: grid;
  gap: 7px;
}

.compact-competition-list button {
  padding: 8px 9px;
}

.search-hint-card {
  border: 1px solid rgba(15, 92, 192, 0.12);
  border-radius: 9px;
  background: #f3f8ff;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.search-hint-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.search-hint-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.load-more-competitions {
  width: 100%;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.07);
  color: var(--primary);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  padding: 12px;
  display: grid;
  gap: 3px;
  text-align: center;
}

.load-more-competitions span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.filter-trigger.active::after {
  color: rgba(255, 255, 255, 0.86);
}

.filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.filter-sheet[hidden] {
  display: none;
}

.sheet-mask {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 22, 36, 0.36);
}

.sheet-panel {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  width: min(100%, 390px);
  max-height: min(74vh, 620px);
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -18px 42px rgba(15, 37, 64, 0.18);
  padding: 12px 12px max(14px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 2px 8px;
  border-bottom: 1px solid var(--border);
}

.sheet-header h2 {
  margin: 0;
  font-size: 18px;
}

.sheet-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}

.sheet-options {
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding-top: 4px;
}

.sheet-option {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 0 12px;
}

.sheet-option.active {
  background: #eaf3ff;
  border-color: rgba(27, 99, 206, 0.35);
  color: var(--primary);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 20;
  width: min(100%, 430px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 7px 10px max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 -10px 26px rgba(16, 24, 40, 0.08);
}

.bottom-nav[hidden] {
  display: none;
}

.bottom-nav button {
  display: grid;
  justify-items: center;
  gap: 3px;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #667085;
  font: inherit;
  padding: 4px 2px;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}

.bottom-nav button:not([aria-current="page"]),
.bottom-nav button:not([data-active="true"]) {
  background: transparent !important;
  color: #667085 !important;
  box-shadow: none !important;
}

.bottom-nav button.active:not([data-active="true"]),
.bottom-nav button[aria-selected="false"],
.bottom-nav button:not(.is-current) {
  background: transparent !important;
  color: #667085 !important;
  box-shadow: none !important;
}

.bottom-nav span {
  font-size: 21px;
  line-height: 1;
}

.bottom-nav strong {
  font-size: 11px;
  line-height: 1;
}

.bottom-nav button[data-active="true"],
.bottom-nav button[aria-current="page"] {
  background: rgba(8, 119, 96, 0.08);
  color: var(--teal);
}

.bottom-nav button:not([aria-current="page"]):hover,
.bottom-nav button:not([aria-current="page"]):focus,
.bottom-nav button:not([aria-current="page"]):focus-visible,
.bottom-nav button:not([aria-current="page"]):active,
.bottom-nav button:not([data-active="true"]):hover,
.bottom-nav button:not([data-active="true"]):focus,
.bottom-nav button:not([data-active="true"]):focus-visible,
.bottom-nav button:not([data-active="true"]):active {
  background: transparent !important;
  color: #667085 !important;
  box-shadow: none !important;
}

.bottom-nav button:focus,
.bottom-nav button:focus-visible,
.bottom-nav button:focus:not(:focus-visible) {
  outline: 0;
}

.view {
  display: none;
  min-width: 0;
  max-width: 100%;
}

.view.active {
  display: block;
}

.stack {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.portrait-section {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.competition-card,
.event-card,
.leader-card,
.club-card {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.045);
}

.competition-card,
.event-card {
  width: 100%;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.clickable {
  width: 100%;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.competition-card strong,
.event-card strong,
.leader-card strong,
.club-card strong {
  display: block;
  line-height: 1.35;
  font-size: 16px;
}

.competition-card strong {
  font-size: 15px;
  font-weight: 900;
}

.subline {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.card-insight {
  margin-top: 8px;
  padding: 8px 9px;
  border-radius: 8px;
  background: rgba(21, 95, 194, 0.055);
  color: #526070;
  font-size: 12px;
  line-height: 1.45;
}

.ai-filter-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.12);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.055);
  color: #344054;
  padding: 9px 10px;
  font-size: 12px;
  line-height: 1.45;
}

.ai-filter-notice span {
  min-width: 0;
}

.ai-filter-notice button {
  flex: 0 0 auto;
  height: 28px;
  border: 1px solid rgba(21, 95, 194, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 10px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.status-badge,
.roster-badge,
.coverage-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.status-badge {
  background: rgba(21, 95, 194, 0.1);
  color: var(--primary);
}

.status-registration {
  background: rgba(20, 142, 75, 0.12);
  color: #14753f;
}

.status-upcoming {
  background: rgba(21, 95, 194, 0.1);
  color: var(--primary);
}

.status-live {
  background: rgba(180, 105, 0, 0.14);
  color: #9a5a00;
}

.status-completed {
  background: rgba(82, 96, 112, 0.12);
  color: #526070;
}

.roster-badge {
  background: rgba(82, 96, 112, 0.08);
  color: #526070;
}

.coverage-badge {
  background: rgba(16, 24, 40, 0.06);
  color: #263241;
}

.coverage-list {
  background: rgba(82, 96, 112, 0.1);
  color: #526070;
}

.coverage-project {
  background: rgba(21, 95, 194, 0.1);
  color: var(--primary);
}

.coverage-roster {
  background: rgba(13, 125, 103, 0.12);
  color: var(--teal);
}

.coverage-score {
  background: rgba(20, 142, 75, 0.12);
  color: #14753f;
}

.coverage-copy {
  color: #526070;
}

.competition-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 3px;
}

.competition-scope-grid div {
  min-width: 0;
  border: 1px solid rgba(15, 92, 192, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.68);
  padding: 7px 8px;
}

.competition-scope-grid strong,
.competition-scope-grid span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.competition-scope-grid strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.competition-scope-grid span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.meta-row,
.badge-row,
.event-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-overview {
  margin: 6px 0 12px;
}

.follow-panel[hidden],
.member-panel[hidden] {
  display: none;
}

.follow-panel,
.member-panel {
  margin-bottom: 10px;
}

.follow-panel {
  padding: 10px;
}

.follow-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.follow-strip::-webkit-scrollbar {
  display: none;
}

.follow-card {
  flex: 0 0 150px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(15, 92, 192, 0.1);
  border-radius: 10px;
  background: rgba(15, 92, 192, 0.04);
  padding: 10px;
  text-align: left;
  font: inherit;
  color: var(--text);
}

.follow-card strong,
.follow-card span,
.follow-card em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.follow-card span,
.follow-card em,
.follow-card small,
.empty-follow span,
.action-note {
  color: var(--muted);
  font-size: 12px;
}

.follow-card em,
.follow-card small {
  font-style: normal;
}

.follow-card em {
  color: var(--primary);
  font-weight: 800;
}

.follow-card small {
  line-height: 1.35;
  white-space: normal;
}

.empty-follow {
  display: grid;
  gap: 4px;
}

.empty-follow strong {
  font-size: 14px;
}

.my-page-shell {
  display: grid;
  gap: 10px;
}

.home-dashboard {
  display: grid;
  gap: 10px;
}

.ai-workspace {
  display: grid;
  gap: 12px;
}

.ai-home-primary {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(14, 68, 132, 0.97), rgba(8, 119, 96, 0.96)),
    var(--primary);
  color: #fff;
  padding: 14px;
  box-shadow: 0 18px 42px rgba(15, 37, 64, 0.16);
}

.ai-home-primary::after {
  content: "";
  position: absolute;
  inset: auto -36px -58px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.ai-home-primary .section-title {
  position: relative;
  z-index: 1;
}

.ai-home-primary .section-title h2,
.ai-home-primary .section-title span {
  color: #fff;
}

.ai-home-primary .section-title span {
  opacity: 0.78;
}

.ai-home-lead {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.ai-home-lead strong {
  max-width: 11em;
  font-size: 27px;
  line-height: 1.08;
  text-wrap: balance;
}

.ai-home-lead span,
.ai-home-actions span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.ai-query-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.ai-query-form textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.ai-query-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
  outline: 0;
}

.ai-query-form button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  padding: 0 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ai-action-row button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 0 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ai-query-form button:active,
.ai-action-row button:active,
.home-question-list button:active,
.data-value-grid button:active,
.home-action-grid button:active {
  transform: translateY(1px) scale(0.99);
}

.ai-preset-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.ai-preset-row::-webkit-scrollbar {
  display: none;
}

.ai-preset-row button {
  min-width: 0;
  min-height: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  padding: 8px 10px;
  text-align: left;
  text-overflow: ellipsis;
}

.ai-home-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.ai-home-actions button {
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 0 11px;
}

.ai-answer {
  position: relative;
  z-index: 1;
  display: none;
  gap: 10px;
}

.ai-answer.has-answer {
  display: grid;
}

.ai-empty {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 11px;
}

.ai-home-primary .ai-empty strong,
.ai-home-primary .ai-empty span {
  color: #fff;
}

.ai-home-primary .ai-empty span {
  opacity: 0.76;
}

.ai-empty strong,
.ai-answer-head strong,
.ai-section strong,
.ai-evidence button strong {
  display: block;
}

.ai-empty span,
.ai-answer-head span,
.ai-answer-head p,
.ai-section span,
.ai-evidence button span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ai-answer-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(8, 119, 96, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(248, 252, 251, 0.98), #fff);
  padding: 11px;
}

.ai-answer-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.ai-answer-meta div {
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.08);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.045);
  padding: 8px;
}

.ai-answer-meta span,
.ai-answer-meta strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-answer-meta span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.ai-answer-meta strong {
  margin-top: 3px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.ai-query-form.is-submitting button,
.ai-query-form button:disabled {
  cursor: progress;
  opacity: 0.82;
}

.ai-loading-card {
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(8, 119, 96, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(248, 252, 251, 0.98), #fff);
  padding: 12px;
  box-shadow: 0 12px 28px rgba(15, 37, 64, 0.06);
}

.ai-loading-head {
  display: grid;
  gap: 4px;
}

.ai-loading-head strong {
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.ai-loading-head span {
  overflow: hidden;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-loading-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.ai-loading-steps span {
  position: relative;
  min-width: 0;
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  padding: 7px 8px 7px 20px;
}

.ai-loading-steps span::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.ai-skeleton-block,
.ai-skeleton-grid {
  display: grid;
  gap: 8px;
}

.ai-skeleton-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-skeleton-block i,
.ai-skeleton-grid i {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(226, 237, 244, 0.9), rgba(248, 252, 251, 0.96), rgba(226, 237, 244, 0.9));
  background-size: 220% 100%;
  animation: aiSkeletonSweep 1.15s ease-in-out infinite;
}

.ai-skeleton-block i {
  height: 13px;
}

.ai-skeleton-block i:nth-child(1) {
  width: 78%;
}

.ai-skeleton-block i:nth-child(2) {
  width: 92%;
}

.ai-skeleton-block i:nth-child(3) {
  width: 58%;
}

.ai-skeleton-grid i {
  height: 58px;
}

@keyframes aiSkeletonSweep {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-skeleton-block i,
  .ai-skeleton-grid i {
    animation: none;
  }
}

.ai-answer-head {
  display: grid;
  gap: 4px;
}

.ai-answer-head span {
  color: var(--teal);
  font-weight: 900;
}

.ai-answer-head strong {
  font-size: 18px;
  line-height: 1.25;
}

.ai-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ai-metric {
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  padding: 9px;
}

.ai-metric strong,
.ai-metric span {
  display: block;
}

.ai-metric strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.ai-metric span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.ai-trust-panel {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(13, 125, 103, 0.055), rgba(255, 255, 255, 0.82));
  padding: 10px;
}

.ai-trust-panel > strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.ai-trust-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 92px) minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  min-width: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px;
}

.ai-trust-row span,
.ai-trust-row b,
.ai-trust-row em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-trust-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.ai-trust-row b {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.ai-trust-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.ai-section {
  display: grid;
  gap: 6px;
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.05);
  padding: 10px;
}

.ai-section strong {
  font-size: 14px;
}

.ai-evidence {
  display: grid;
  gap: 7px;
}

.ai-evidence button {
  display: grid;
  gap: 3px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 9px;
}

.ai-evidence button em,
.ai-evidence button strong,
.ai-evidence button span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-evidence button em {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  padding: 2px 7px;
}

.ai-action-block {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.045);
  padding: 10px;
}

.ai-action-block > strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.ai-next-steps {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 10px;
  background: rgba(13, 125, 103, 0.055);
  padding: 10px;
}

.ai-next-steps strong,
.ai-next-steps span {
  display: block;
}

.ai-next-steps strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.ai-next-steps span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ai-conversion-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(13, 125, 103, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.08), rgba(21, 95, 194, 0.05));
  padding: 10px;
}

.ai-conversion-card strong,
.ai-conversion-card span {
  display: block;
}

.ai-conversion-card strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.ai-conversion-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 3px;
}

.ai-conversion-service {
  display: grid;
  gap: 6px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px;
}

.ai-conversion-service b {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.ai-conversion-service span {
  position: relative;
  color: var(--text);
  font-size: 12px;
  line-height: 1.35;
  margin-top: 0;
  padding-left: 13px;
}

.ai-conversion-service span::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
}

.ai-conversion-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
}

.ai-conversion-actions button {
  border: 1px solid rgba(13, 125, 103, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  min-width: 0;
  padding: 8px 10px;
  box-shadow: none;
}

.ai-conversion-actions button:first-child {
  border-color: transparent;
  background: var(--teal);
  color: #fff;
}

.ai-conversion-actions button[data-report-export] {
  grid-column: 1 / -1;
  background: rgba(13, 125, 103, 0.08);
}

.ai-share-row {
  display: flex;
  justify-content: flex-end;
}

.ai-share-row button {
  border: 1px solid rgba(13, 125, 103, 0.18);
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 11px;
  box-shadow: none;
}
.ai-follow-up-row {
  display: grid;
  gap: 7px;
  border-top: 1px solid rgba(16, 24, 40, 0.06);
  padding-top: 2px;
}

.ai-follow-up-row strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.ai-follow-up-row div {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ai-follow-up-row div::-webkit-scrollbar {
  display: none;
}

.ai-follow-up-row button {
  flex: 0 0 auto;
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.07);
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.ai-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.my-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-left: 3px solid var(--teal);
  background: linear-gradient(135deg, rgba(8, 119, 96, 0.1), rgba(255, 255, 255, 0.96));
}

.my-hero span,
.my-hero em,
.my-list-row span,
.my-list-row em,
.my-status-note span {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.my-hero strong {
  display: block;
  margin: 2px 0;
  font-size: 22px;
}

.my-hero button {
  height: 32px;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
}

.my-stat-grid,
.home-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.my-stat {
  min-width: 0;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 9px;
  box-shadow: 0 8px 20px rgba(15, 37, 64, 0.045);
}

.my-stat strong,
.my-stat span {
  display: block;
}

.my-stat strong {
  font-size: 22px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.my-stat span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.my-secondary-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: -2px;
}

.my-secondary-status div {
  min-width: 0;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
  padding: 8px 9px;
}

.my-secondary-status strong,
.my-secondary-status span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-secondary-status strong {
  color: var(--primary);
  font-size: 14px;
  line-height: 1.05;
}

.my-secondary-status span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.my-section {
  margin-bottom: 0;
}

.account-panel {
  border-color: rgba(13, 125, 103, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 250, 0.94));
}

.account-login-form {
  display: grid;
  gap: 9px;
}

.account-login-form label {
  display: grid;
  gap: 5px;
}

.account-login-form label span,
.account-login-form em,
.account-summary span {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.account-login-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0 12px;
}

.account-login-form input:focus {
  border-color: rgba(13, 125, 103, 0.42);
  box-shadow: 0 0 0 3px rgba(13, 125, 103, 0.1);
  outline: 0;
}

.account-login-form button,
.account-summary button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 0 14px;
}

.account-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.account-summary strong,
.account-summary span {
  display: block;
  min-width: 0;
}

.account-summary strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-summary button {
  background: rgba(13, 125, 103, 0.1);
  color: var(--teal);
}

.account-center-panel {
  display: grid;
  gap: 12px;
}

.account-center-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.account-center-head strong,
.account-center-head span {
  display: block;
  min-width: 0;
}

.account-center-head strong {
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-center-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.account-center-head button {
  min-height: 34px;
  border: 1px solid rgba(13, 125, 103, 0.16);
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
}

.account-state-note {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(21, 95, 194, 0.1);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.055);
  padding: 10px;
}

.account-state-note strong,
.account-state-note span {
  display: block;
  min-width: 0;
}

.account-state-note strong {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.account-state-note span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.account-state-note.signed {
  border-color: rgba(13, 125, 103, 0.14);
  background: rgba(13, 125, 103, 0.075);
}

.account-state-note.signed strong {
  color: var(--teal);
}

.account-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.account-data-grid div {
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  padding: 9px 8px;
}

.account-data-grid strong,
.account-data-grid span {
  display: block;
}

.account-data-grid strong {
  font-size: 18px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.account-data-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.account-policy-box,
.account-value-list div {
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 12px;
  background: rgba(236, 253, 245, 0.58);
  padding: 11px 12px;
}

.account-policy-box strong,
.account-policy-box span,
.account-value-list strong,
.account-value-list span {
  display: block;
}

.account-policy-box strong,
.account-value-list strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.account-policy-box span,
.account-value-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.account-value-list {
  display: grid;
  gap: 8px;
}

.account-action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.account-action-row button {
  min-height: 36px;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 8px;
}

.account-action-row button:first-child {
  background: var(--teal);
  color: #fff;
}

.account-status-line {
  margin: 0;
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 12px;
  line-height: 1.45;
  padding: 9px 10px;
}

.my-next-section {
  border-color: rgba(8, 119, 96, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 251, 0.94));
}

.my-next-grid {
  display: grid;
  gap: 8px;
}

.my-next-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(8, 119, 96, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 11px 12px;
  box-shadow: 0 8px 20px rgba(15, 37, 64, 0.045);
}

.my-next-card strong,
.my-next-card span,
.my-next-card em {
  min-width: 0;
}

.my-next-card strong {
  grid-column: 1;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.my-next-card span {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.my-next-card em {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  padding: 6px 9px;
  white-space: nowrap;
}

.my-prematch-section {
  border-color: rgba(21, 95, 194, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94));
}

.my-prematch-list {
  display: grid;
  gap: 8px;
}

.my-prematch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: start;
  border: 1px solid rgba(21, 95, 194, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
}

.my-prematch-card div,
.my-prematch-card strong,
.my-prematch-card span,
.my-prematch-card em {
  display: block;
  min-width: 0;
}

.my-prematch-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.my-prematch-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.my-prematch-card em {
  margin-top: 5px;
  color: var(--primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.my-prematch-card small {
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.1);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  white-space: nowrap;
}

.my-prematch-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.my-prematch-actions button {
  flex: 1 1 112px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.my-prematch-actions button + button {
  border: 1px solid rgba(21, 95, 194, 0.16);
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
}

.home-dashboard-focused {
  display: grid;
  gap: 12px;
}

.home-dashboard-focused .ai-workspace {
  margin-bottom: 0;
}

.home-role-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(8, 119, 96, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding: 10px 12px;
}

.home-role-bar button {
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.home-focus-card,
.home-radar-card {
  display: grid;
  gap: 12px;
  border-color: rgba(8, 119, 96, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 248, 0.94));
}

.home-focus-card article,
.home-radar-card article {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(8, 119, 96, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.home-focus-card article strong,
.home-focus-card article span,
.home-focus-card article em,
.home-radar-card article strong,
.home-radar-card article span,
.home-radar-card article em {
  display: block;
  min-width: 0;
}

.home-focus-card article strong,
.home-radar-card article strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.home-focus-card article span,
.home-radar-card article span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.home-focus-card article em,
.home-radar-card article em {
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.42;
}

.home-focus-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.home-focus-actions button,
.home-shortcut-strip button {
  min-height: 38px;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 9px 12px;
}

.home-focus-actions button:first-child {
  border-color: transparent;
  background: var(--primary);
  color: #fff;
}

.home-status-compact {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.home-status-compact div {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.home-status-compact strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.home-status-compact span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.home-status-compact p {
  margin: 0;
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.07);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  padding: 10px;
}

.home-shortcut-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.home-saved-section {
  border-color: rgba(8, 119, 96, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 251, 0.94));
}

.home-saved-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 -2px;
  padding: 0 2px 2px;
  scrollbar-width: none;
}

.home-saved-list::-webkit-scrollbar {
  display: none;
}

.home-saved-list button {
  flex: 0 0 188px;
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(8, 119, 96, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(15, 37, 64, 0.045);
}

.home-saved-list span,
.home-saved-list strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-saved-list span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.home-saved-list strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.data-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.home-question-list {
  display: grid;
  gap: 8px;
}

.home-question-list button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px 10px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.12);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.94));
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 11px 12px;
  box-shadow: 0 8px 20px rgba(15, 37, 64, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-question-list button:hover {
  border-color: rgba(21, 95, 194, 0.22);
  box-shadow: 0 12px 26px rgba(15, 37, 64, 0.07);
}

.home-question-list span,
.home-question-list strong,
.home-question-list em {
  display: block;
  min-width: 0;
}

.home-question-list span {
  align-self: start;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 7px;
  white-space: nowrap;
}

.home-question-list strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.28;
}

.home-question-list em {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.38;
}

.data-value-grid button {
  position: relative;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 112px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 119, 96, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 251, 0.92));
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(15, 37, 64, 0.055);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.data-value-grid button::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(21, 95, 194, 0.82), rgba(8, 119, 96, 0.76));
}

.data-value-grid button:hover {
  border-color: rgba(8, 119, 96, 0.24);
  box-shadow: 0 14px 30px rgba(15, 37, 64, 0.08);
}

.data-value-grid span,
.data-value-grid strong,
.data-value-grid em {
  display: block;
  min-width: 0;
}

.data-value-grid span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.data-value-grid strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.22;
}

.data-value-grid em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.42;
}

.home-action-grid {
  display: grid;
  gap: 7px;
}

.home-action-grid button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 11px 12px;
  box-shadow: 0 8px 20px rgba(15, 37, 64, 0.045);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.home-action-grid button::after {
  content: ">";
  grid-row: 1 / span 2;
  grid-column: 2;
  color: rgba(21, 95, 194, 0.72);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.home-action-grid button:hover {
  border-color: rgba(21, 95, 194, 0.16);
  background: #fff;
}

.home-action-grid strong,
.home-action-grid span {
  display: block;
  min-width: 0;
}

.home-action-grid strong {
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
}

.home-action-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.pilot-interest-card {
  display: grid;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(21, 95, 194, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(239, 247, 255, 0.96), rgba(245, 252, 248, 0.96));
}

.pilot-interest-card div,
.pilot-interest-card strong,
.pilot-interest-card span {
  display: block;
  min-width: 0;
}

.pilot-interest-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.pilot-interest-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.pilot-interest-card button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.pilot-interest-card button:disabled {
  opacity: 0.72;
}

.service-progress-panel,
.athlete-data-progress-panel {
  display: grid;
  gap: 10px;
}

.service-progress-panel p,
.athlete-data-progress-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.service-progress-list,
.athlete-data-progress-list {
  display: grid;
  gap: 8px;
}

.service-progress-card,
.athlete-data-progress-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 10px;
  align-items: center;
  border: 1px solid rgba(13, 125, 103, 0.13);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.08), rgba(21, 95, 194, 0.05));
  padding: 10px;
}

.service-progress-card div,
.service-progress-card strong,
.service-progress-card span,
.service-progress-card em,
.service-progress-card small,
.athlete-data-progress-card div,
.athlete-data-progress-card strong,
.athlete-data-progress-card span,
.athlete-data-progress-card em,
.athlete-data-progress-card small {
  display: block;
  min-width: 0;
}

.service-progress-card strong,
.athlete-data-progress-card strong {
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-progress-card span,
.service-progress-card em,
.athlete-data-progress-card span,
.athlete-data-progress-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.service-progress-card p,
.athlete-data-progress-card p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.42;
}

.service-progress-deliverables {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.service-progress-deliverables li {
  min-width: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #164477;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 8px;
}

.service-progress-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.service-progress-steps li {
  min-width: 0;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.06);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  padding: 6px 7px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-progress-steps .service-step-done {
  background: rgba(13, 125, 103, 0.12);
  color: var(--teal);
}

.service-progress-steps .service-step-active {
  background: rgba(184, 95, 15, 0.12);
  color: var(--orange);
}

.service-progress-card button,
.athlete-data-progress-card button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.service-progress-card small,
.athlete-data-progress-card small {
  grid-column: 1 / -1;
  width: fit-content;
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.11);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 7px;
}

.service-progress-card .service-progress-reference {
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
}

.home-prematch-action {
  display: grid;
  gap: 10px;
}

.home-prematch-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(13, 125, 103, 0.15);
  border-radius: 13px;
  background:
    radial-gradient(circle at top right, rgba(13, 125, 103, 0.13), transparent 38%),
    linear-gradient(135deg, rgba(245, 252, 248, 0.98), rgba(239, 247, 255, 0.94));
  padding: 12px;
}

.home-prematch-card div,
.home-prematch-card strong,
.home-prematch-card span,
.home-prematch-card em {
  display: block;
  min-width: 0;
}

.home-prematch-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.home-prematch-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.home-prematch-card em {
  margin-top: 6px;
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}

.home-prematch-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.home-prematch-actions button {
  min-height: 38px;
  border: 1px solid rgba(21, 95, 194, 0.16);
  border-radius: 11px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.home-prematch-actions button:first-child {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.home-prematch-actions button:only-child {
  grid-column: 1 / -1;
}

.home-coach-action {
  display: grid;
  gap: 10px;
}

.home-coach-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 13px;
  background:
    radial-gradient(circle at top right, rgba(21, 95, 194, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(239, 247, 255, 0.96), rgba(255, 255, 255, 0.98));
  padding: 12px;
}

.home-coach-card div,
.home-coach-card strong,
.home-coach-card span,
.home-coach-card em {
  display: block;
  min-width: 0;
}

.home-coach-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.home-coach-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.home-coach-card em {
  margin-top: 6px;
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}

.home-coach-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.home-coach-actions button {
  min-height: 38px;
  border: 1px solid rgba(21, 95, 194, 0.16);
  border-radius: 11px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.home-coach-actions button:first-child {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.report-center-grid {
  display: grid;
  gap: 8px;
}

.report-center-grid button {
  display: grid;
  grid-template-columns: minmax(0, 74px) minmax(0, 1fr);
  gap: 3px 10px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.13);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.045);
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.report-center-grid button:disabled {
  opacity: 0.58;
}

.report-center-grid span,
.report-center-grid strong,
.report-center-grid em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-center-grid span {
  grid-row: span 2;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.1);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
}

.report-center-grid strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.report-center-grid em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.report-history-list {
  display: grid;
  gap: 8px;
}

.report-history-list button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 8px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.report-history-list span {
  grid-row: span 2;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 7px;
}

.report-history-list strong,
.report-history-list em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-history-list strong {
  font-size: 13px;
  font-weight: 900;
}

.report-history-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.report-next-action-section {
  gap: 10px;
}

.report-next-action-list {
  display: grid;
  gap: 8px;
}

.report-next-action-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.08), rgba(255, 255, 255, 0.94));
  padding: 10px;
}

.report-next-action-card div:first-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.report-next-action-card span {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 7px;
}

.report-next-action-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-next-action-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.report-next-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.report-next-action-buttons button {
  min-height: 30px;
  border: 1px solid rgba(13, 125, 103, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.report-next-action-buttons button:first-child {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.ai-history-list {
  display: grid;
  gap: 8px;
}

.ai-history-list button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 8px;
  align-items: center;
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.08), rgba(21, 95, 194, 0.05));
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.ai-history-list span {
  grid-row: span 2;
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 7px;
}

.ai-history-list strong,
.ai-history-list em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-history-list strong {
  font-size: 13px;
  font-weight: 900;
}

.ai-history-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.trial-deliverable-section {
  gap: 10px;
}

.trial-deliverable-grid {
  display: grid;
  gap: 8px;
}

.trial-deliverable-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 8px;
  align-items: start;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(21, 95, 194, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  padding: 10px;
}

.trial-deliverable-card div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.trial-deliverable-card span {
  grid-row: span 2;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 6px 8px;
}

.trial-deliverable-card strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.trial-deliverable-card small {
  justify-self: start;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 5px 8px;
}

.trial-deliverable-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

.trial-deliverable-card b {
  color: #164477;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.trial-deliverable-ready small {
  background: rgba(13, 125, 103, 0.1);
  color: #0d7d67;
}

.trial-deliverable-pending {
  background: rgba(255, 255, 255, 0.72);
}

.trial-deliverable-pending small {
  background: rgba(100, 116, 139, 0.1);
  color: #64748b;
}

.trial-deliverable-prematch {
  border-color: rgba(13, 125, 103, 0.16);
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.08), rgba(255, 255, 255, 0.92));
}

.trial-plan-section {
  gap: 10px;
}

.trial-plan-list {
  display: grid;
  gap: 8px;
}

.trial-plan-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(13, 125, 103, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.1), rgba(21, 95, 194, 0.05));
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.trial-plan-card div,
.trial-plan-card strong,
.trial-plan-card span {
  display: block;
  min-width: 0;
}

.trial-plan-card strong {
  font-size: 14px;
  font-weight: 900;
}

.trial-plan-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.trial-plan-card em {
  max-width: 92px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  overflow: hidden;
  padding: 6px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-readiness-section {
  gap: 10px;
}

.service-readiness-list {
  display: grid;
  gap: 8px;
}

.service-readiness-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(21, 95, 194, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.service-readiness-card div,
.service-readiness-card strong,
.service-readiness-card span,
.service-readiness-card em {
  display: block;
  min-width: 0;
}

.service-readiness-card strong {
  font-size: 13px;
  font-weight: 900;
}

.service-readiness-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.service-readiness-card em {
  margin-top: 4px;
  color: var(--primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.service-readiness-card b {
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 11px;
  line-height: 1;
  padding: 6px 8px;
  white-space: nowrap;
}

.service-readiness-ready {
  border-color: rgba(13, 125, 103, 0.16);
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.08), rgba(255, 255, 255, 0.95));
}

.service-readiness-ready b {
  background: rgba(13, 125, 103, 0.12);
  color: var(--teal);
}

.report-asset-section {
  gap: 10px;
}

.report-asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.report-asset-card {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.1);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(21, 95, 194, 0.07), rgba(13, 125, 103, 0.05));
  padding: 10px;
}

.report-asset-card strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.report-asset-card span {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.report-asset-card em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.35;
}

.report-asset-ai {
  border-color: rgba(13, 125, 103, 0.16);
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.1), rgba(21, 95, 194, 0.04));
}

.membership-benefit-panel {
  display: grid;
  gap: 10px;
}

.membership-benefit-panel p {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.membership-benefit-grid {
  display: grid;
  gap: 8px;
}

.membership-benefit-card {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.08), rgba(21, 95, 194, 0.04));
  padding: 10px;
}

.membership-benefit-card strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.membership-benefit-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.membership-benefit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.membership-benefit-actions button {
  border: 1px solid rgba(21, 95, 194, 0.16);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
}

.membership-benefit-actions button:first-child {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.focus-dashboard {
  display: grid;
  gap: 10px;
  border-color: rgba(13, 125, 103, 0.14);
  background:
    radial-gradient(circle at top right, rgba(13, 125, 103, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.94);
}

.focus-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.focus-dashboard-grid div {
  min-width: 0;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  padding: 9px;
}

.focus-dashboard-grid strong,
.focus-dashboard-grid span,
.focus-next-step strong,
.focus-next-step span {
  display: block;
  min-width: 0;
}

.focus-dashboard-grid strong {
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
}

.focus-dashboard-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.focus-next-step {
  border-radius: 10px;
  background: rgba(13, 125, 103, 0.075);
  padding: 10px;
}

.focus-next-step strong {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.focus-next-step span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.focus-trial-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-color: rgba(21, 95, 194, 0.14);
  background: linear-gradient(135deg, rgba(21, 95, 194, 0.08), rgba(255, 255, 255, 0.96));
}

.focus-trial-card strong,
.focus-trial-card span {
  display: block;
  min-width: 0;
}

.focus-trial-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.focus-trial-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.focus-trial-actions {
  display: grid;
  gap: 8px;
  min-width: 92px;
}

.focus-trial-card button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
  white-space: nowrap;
}

.focus-trial-card button + button {
  border: 1px solid rgba(21, 95, 194, 0.16);
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
}

.focus-alert-list {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.focus-alert-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.1);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.045);
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.focus-alert-card strong,
.focus-alert-card span,
.focus-alert-card em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.focus-alert-card strong {
  font-size: 14px;
  font-weight: 900;
}

.focus-alert-card span {
  color: var(--muted);
  font-size: 12px;
}

.focus-alert-card em {
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.focus-alert-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.focus-alert-actions button {
  min-width: 0;
  min-height: 34px;
  border: 1px solid rgba(21, 95, 194, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.focus-alert-actions button:last-child {
  border-color: rgba(13, 125, 103, 0.18);
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
}

.my-list {
  display: grid;
  gap: 8px;
}

.my-list-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 9px 10px;
}

.my-list-row span {
  grid-row: span 2;
  width: 38px;
  height: 24px;
  border-radius: 999px;
  background: rgba(8, 119, 96, 0.08);
  color: var(--teal);
  display: inline-grid;
  place-items: center;
  font-weight: 900;
}

.my-list-row strong,
.my-list-row em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-status-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.06);
  padding: 10px;
}

.my-status-note strong {
  color: var(--primary);
  font-size: 24px;
}

.member-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  background: linear-gradient(135deg, rgba(24, 33, 47, 0.96), rgba(15, 92, 192, 0.86));
  color: #fff;
}

.member-panel strong,
.member-panel span {
  display: block;
}

.member-panel strong {
  font-size: 15px;
}

.member-panel span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.member-panel button,
.primary-action {
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font: inherit;
  font-weight: 900;
}

.member-panel button {
  min-width: 58px;
  height: 34px;
}

.athlete-action-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.athlete-data-request {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(21, 95, 194, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  padding: 11px;
}

.athlete-data-request strong,
.athlete-data-request span {
  display: block;
  min-width: 0;
}

.athlete-data-request strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.athlete-data-request span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.athlete-data-request-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.athlete-data-request-actions button {
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.18);
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.07);
  color: var(--blue);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 9px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.report-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px;
  min-width: 0;
}

.report-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.report-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.opponent-stack {
  display: grid;
  gap: 8px;
}

.opponent-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px;
}

.opponent-card strong,
.opponent-card span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opponent-card span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.opponent-card em {
  font-style: normal;
  color: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

.athlete-timeline-card,
.pool-summary-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px;
}

.athlete-timeline-list,
.pool-summary-list {
  display: grid;
  gap: 9px;
}

.athlete-timeline-item,
.pool-summary-item {
  width: 100%;
  border: 1px solid rgba(16, 24, 40, 0.075);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
}

.athlete-timeline-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
}

.timeline-main,
.timeline-side {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.timeline-main strong,
.timeline-main span,
.timeline-main em,
.timeline-side b,
.timeline-side span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-main strong {
  font-size: 14px;
  font-weight: 900;
}

.timeline-main span,
.timeline-main em,
.timeline-side span {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.timeline-side {
  justify-items: end;
  text-align: right;
}

.timeline-side b {
  color: var(--primary);
  font-size: 17px;
  line-height: 1.15;
}

.pool-summary-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  padding: 11px;
}

.pool-summary-item > div:first-child {
  min-width: 0;
}

.pool-summary-item strong,
.pool-summary-item span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pool-summary-item strong {
  font-size: 14px;
  font-weight: 900;
}

.pool-summary-item span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.pool-summary-score {
  justify-self: end;
  text-align: right;
}

.pool-summary-score b {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.15;
}

.pool-summary-score span {
  color: var(--teal);
  font-weight: 800;
}

.pool-summary-track {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 92, 192, 0.08);
}

.pool-summary-track div {
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.primary-action {
  width: 100%;
  height: 40px;
  background: var(--primary);
  color: #fff;
}

.action-note {
  line-height: 1.45;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.stat-item {
  border: 1px solid rgba(16, 24, 40, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px 8px;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.035);
}

.stat-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.stat-item span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.data-coverage-summary {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13, 125, 103, 0.055), rgba(21, 95, 194, 0.045));
}

.data-coverage-summary:empty {
  display: none;
}

.coverage-summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.coverage-summary-head strong,
.coverage-summary-head span {
  display: block;
}

.coverage-summary-head strong {
  font-size: 14px;
}

.coverage-summary-head span,
.coverage-summary-head em,
.data-coverage-summary p,
.coverage-level-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.coverage-summary-head em {
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.1);
  color: var(--teal);
  font-style: normal;
  font-weight: 800;
}

.coverage-level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.coverage-level-grid div {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.coverage-level-grid strong,
.coverage-level-grid span,
.coverage-level-grid small {
  display: block;
}

.coverage-level-grid strong {
  font-size: 17px;
  line-height: 1.05;
}

.coverage-level-grid span {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 800;
}

.data-coverage-summary p {
  margin: 0;
}

.data-status-panel {
  gap: 10px;
}

.coverage-stage-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.coverage-stage-strip div {
  min-width: 0;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  padding: 9px;
}

.coverage-stage-strip strong,
.coverage-stage-strip span {
  display: block;
}

.coverage-stage-strip strong {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.1;
}

.coverage-stage-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.service-readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.service-readiness-grid div {
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  padding: 9px 8px;
}

.service-readiness-grid div.muted {
  opacity: 0.62;
}

.service-readiness-grid strong,
.service-readiness-grid span,
.service-readiness-grid small {
  display: block;
  min-width: 0;
}

.service-readiness-grid strong {
  color: var(--primary);
  font-size: 17px;
  font-weight: 900;
}

.service-readiness-grid span {
  margin-top: 2px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.service-readiness-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.coverage-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
}

.coverage-progress span {
  display: block;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}

.data-status-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.sync-status-note {
  border: 1px solid rgba(21, 95, 194, 0.08);
  border-radius: 9px;
  background: rgba(21, 95, 194, 0.045);
  padding: 8px 10px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
}

.coverage-priority-list {
  display: grid;
  gap: 7px;
}

.coverage-priority-list button {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.09);
  border-radius: 9px;
  background: rgba(21, 95, 194, 0.045);
  padding: 9px 10px;
  color: inherit;
  text-align: left;
}

.coverage-priority-list strong,
.coverage-priority-list span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coverage-priority-list strong {
  font-size: 13px;
}

.coverage-priority-list span {
  margin-top: 3px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(21, 95, 194, 0.09);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.event-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.event-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(8, 119, 96, 0.09);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.event-chip-row .muted-chip {
  background: rgba(105, 117, 134, 0.09);
  color: var(--muted);
}

.project-summary-row span {
  background: rgba(15, 92, 192, 0.08);
  color: var(--primary);
}

.project-summary-row span:first-child {
  background: rgba(8, 119, 96, 0.1);
  color: var(--teal);
}

.competition-project-guide {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(13, 125, 103, 0.055), rgba(255, 255, 255, 0.86));
  padding: 10px;
}

.competition-project-guide div {
  min-width: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 10px;
}

.competition-project-guide strong,
.competition-project-guide span {
  display: block;
  min-width: 0;
}

.competition-project-guide strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.competition-project-guide span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.event-list-more-grid {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.project-group-list {
  display: grid;
  gap: 8px;
}

.project-group-list > summary {
  list-style: none;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 11px;
}

.project-group-list > summary::-webkit-details-marker,
.project-group-card > summary::-webkit-details-marker {
  display: none;
}

.project-group-stack {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.project-group-card {
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.project-group-card > summary {
  display: grid;
  gap: 3px;
  cursor: pointer;
  list-style: none;
  padding: 10px 11px;
}

.project-group-card > summary strong,
.project-group-card > summary span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-group-card > summary strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.project-group-card > summary span {
  color: var(--muted);
  font-size: 12px;
}

.project-group-card .event-list-more-grid {
  border-top: 1px solid rgba(16, 24, 40, 0.06);
  margin-top: 0;
  padding: 8px;
}

.competition-digest-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(21, 95, 194, 0.055), rgba(255, 255, 255, 0.9));
  padding: 12px;
}

.competition-digest-list {
  display: grid;
  gap: 8px;
}

.competition-digest-list div {
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
  padding: 10px;
}

.competition-digest-list strong,
.competition-digest-list span {
  display: block;
}

.competition-digest-list strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.competition-digest-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.competition-prematch-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(13, 125, 103, 0.16);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(13, 125, 103, 0.055), rgba(255, 255, 255, 0.86));
  padding: 12px;
}

.competition-prematch-rows,
.competition-prematch-items {
  display: grid;
  gap: 8px;
}

.competition-prematch-rows div,
.competition-prematch-items div {
  min-width: 0;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
  padding: 9px 10px;
}

.competition-prematch-rows strong,
.competition-prematch-rows span,
.competition-prematch-items strong,
.competition-prematch-items span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.competition-prematch-rows strong,
.competition-prematch-items strong {
  font-size: 13px;
}

.competition-prematch-rows span,
.competition-prematch-items span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.competition-prematch-items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.competition-prematch-roster {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(15, 92, 192, 0.1);
  border-radius: 10px;
  background: rgba(15, 92, 192, 0.045);
  padding: 10px;
}

.competition-prematch-roster-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.competition-prematch-roster-head strong,
.competition-prematch-roster-head span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.competition-prematch-roster-head strong {
  font-size: 14px;
}

.competition-prematch-roster-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.competition-prematch-roster-grid {
  display: grid;
  gap: 10px;
}

.competition-prematch-watch {
  min-width: 0;
}

.competition-prematch-cta {
  width: 100%;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-700);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
  box-shadow: none;
}

.report-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.report-share-action {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(13, 125, 103, 0.18);
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 11px;
  box-shadow: none;
}

.report-share-action.secondary {
  border-color: rgba(21, 95, 194, 0.18);
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
}

.report-share-followup {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  padding: 6px 9px;
  vertical-align: middle;
}

.report-share-followup:empty {
  display: none;
}

.report-conversion-card {
  display: grid;
  gap: 12px;
  border-color: rgba(13, 125, 103, 0.15);
  background: linear-gradient(135deg, rgba(239, 247, 255, 0.96), rgba(241, 252, 248, 0.96));
}

.report-conversion-card strong,
.report-conversion-card span {
  display: block;
  min-width: 0;
}

.report-conversion-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.report-conversion-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.report-conversion-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
}

.report-conversion-actions button {
  min-height: 40px;
  border: 1px solid rgba(13, 125, 103, 0.16);
  border-radius: 12px;
  background: #fff;
  color: var(--teal);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

.report-conversion-actions button:first-child {
  border-color: transparent;
  background: var(--primary);
  color: #fff;
}

.report-conversion-actions button[data-report-export] {
  grid-column: 1 / -1;
  background: rgba(21, 95, 194, 0.08);
}

.report-conversion-actions button:disabled {
  opacity: 0.72;
}

.report-reminder-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-color: rgba(21, 95, 194, 0.13);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.94));
}

.report-reminder-card strong,
.report-reminder-card span {
  display: block;
  min-width: 0;
}

.report-reminder-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.report-reminder-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.report-reminder-card button {
  min-height: 38px;
  border: 1px solid rgba(13, 125, 103, 0.18);
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.09);
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  white-space: nowrap;
}

.report-reminder-card button:disabled {
  opacity: 0.72;
}

.hero {
  position: relative;
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
}

.hero.compact {
  padding-top: 11px;
  padding-right: 76px;
  padding-bottom: 11px;
  gap: 6px;
}

.hero-title {
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
}

.athlete-hero-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.follow-status-tag {
  min-width: 56px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(15, 92, 192, 0.16);
  border-radius: 999px;
  background: rgba(15, 92, 192, 0.07);
  color: #155fc2;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  display: inline-grid;
  place-items: center;
}

.follow-status-tag.active {
  border-color: rgba(8, 119, 96, 0.22);
  background: rgba(8, 119, 96, 0.1);
  color: #087760;
}

.competition-follow-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 52px;
}

.hero-sub {
  color: var(--muted);
  line-height: 1.45;
}

.detail-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.detail-ai-actions button {
  min-height: 30px;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 11px;
}

.detail-ai-actions button:first-child {
  border-color: rgba(13, 125, 103, 0.18);
  background: rgba(13, 125, 103, 0.1);
  color: var(--teal);
}

.event-focus-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.event-focus-strip span,
.focus-inline-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(15, 92, 192, 0.08);
  color: var(--primary);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.event-focus-strip span {
  padding: 6px 8px;
}

.event-focus-strip span.primary {
  background: rgba(13, 125, 103, 0.12);
  color: var(--teal);
}

.focus-inline-tag {
  margin-left: 6px;
  padding: 4px 6px;
  vertical-align: middle;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.insight-panel .metric-grid {
  grid-template-columns: repeat(2, 1fr);
}

.metric {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 10px;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 0 0 auto;
  min-width: 76px;
  height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
}

.tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.process-tabs {
  position: sticky;
  top: 49px;
  z-index: 8;
  max-width: calc(100% + 24px);
  overflow-x: auto;
  margin: 0 -12px 10px;
  padding: 8px 12px;
  background: rgba(246, 250, 249, 0.96);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(16px);
}

.process-tabs .tab {
  min-width: 86px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  position: relative;
}

.process-tabs .tab.active {
  background: transparent;
  color: var(--primary);
}

.process-tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 1px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.tab-panel {
  display: none;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.tab-panel.active {
  display: block;
  min-width: 0;
  max-width: 100%;
}

.leader-card,
.club-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.insight-note {
  border: 1px solid rgba(15, 92, 192, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(15, 92, 192, 0.04);
  color: var(--text);
  line-height: 1.5;
}

.insight-note.compact {
  padding: 9px 10px;
  font-size: 13px;
}

.focus-athlete-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(15, 92, 192, 0.14);
  border-radius: 10px;
  background: rgba(15, 92, 192, 0.04);
  padding: 10px;
  color: var(--text);
  font: inherit;
  text-align: left;
}

.focus-athlete-row.is-primary-focus {
  border-color: rgba(13, 125, 103, 0.26);
  background: rgba(13, 125, 103, 0.08);
}

.focus-athlete-row strong,
.focus-athlete-row span,
.focus-athlete-row b {
  display: block;
}

.focus-athlete-row strong,
.focus-athlete-row b {
  font-size: 14px;
}

.focus-athlete-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.focus-athlete-row > div:last-child {
  text-align: right;
}

.coach-section {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.coach-summary-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(8, 119, 96, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(235, 249, 245, 0.9), rgba(255, 255, 255, 0.9));
  padding: 12px;
}

.coach-summary-card strong {
  font-size: 14px;
  line-height: 1.55;
}

.coach-summary-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.coach-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.coach-action-card {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(15, 92, 192, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  padding: 10px;
}

.coach-action-card:first-child {
  grid-column: 1 / -1;
  border-color: rgba(13, 125, 103, 0.18);
  background: linear-gradient(180deg, rgba(13, 125, 103, 0.07), rgba(255, 255, 255, 0.88));
}

.coach-action-card span,
.coach-action-card strong,
.coach-action-card em {
  display: block;
  min-width: 0;
}

.coach-action-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.coach-action-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.coach-action-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.club-script-list {
  display: grid;
  gap: 8px;
}

.club-script-card {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 11px;
}

.club-script-card strong,
.club-script-card span {
  display: block;
  min-width: 0;
}

.club-script-card strong {
  color: var(--primary);
  font-size: 13px;
}

.club-script-card span {
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
}

.prematch-section {
  border: 1px solid rgba(21, 95, 194, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.78), rgba(255, 255, 255, 0.88));
  padding: 12px;
}

.prematch-ready {
  border-color: rgba(21, 95, 194, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.prematch-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.prematch-action-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px;
}

.prematch-action-card span,
.prematch-action-card strong,
.prematch-action-card em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prematch-action-card span {
  color: var(--muted);
  font-size: 11px;
}

.prematch-action-card strong {
  color: var(--primary);
  font-size: 14px;
}

.prematch-action-card em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.prematch-grid,
.prematch-block {
  display: grid;
  gap: 9px;
}

.prematch-roster-summary {
  display: grid;
  gap: 7px;
}

.prematch-roster-summary div {
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 9px;
  background: rgba(13, 125, 103, 0.055);
  padding: 9px 10px;
}

.prematch-roster-summary strong,
.prematch-roster-summary span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prematch-roster-summary strong {
  font-size: 13px;
}

.prematch-roster-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.prematch-roster-focus {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.prematch-roster-snapshot {
  border-color: rgba(13, 125, 103, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 250, 0.96));
}

.prematch-club-summary {
  display: grid;
  gap: 7px;
}

.prematch-club-summary div {
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.12);
  border-radius: 9px;
  background: rgba(21, 95, 194, 0.055);
  padding: 9px 10px;
}

.prematch-club-summary strong,
.prematch-club-summary span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prematch-club-summary strong {
  font-size: 13px;
}

.prematch-club-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.prematch-report-shell {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.prematch-report-card {
  display: grid;
  gap: 10px;
}

.prematch-report-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.prematch-report-metrics div {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  padding: 9px;
}

.prematch-report-metrics strong,
.prematch-report-metrics span {
  display: block;
}

.prematch-report-metrics strong {
  color: var(--primary);
  font-size: 20px;
  line-height: 1.1;
}

.prematch-report-metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.prematch-report-note {
  border-radius: 10px;
  background: rgba(13, 125, 103, 0.07);
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  padding: 10px;
}

.prematch-action-plan {
  border-color: rgba(13, 125, 103, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 250, 0.94));
}

.prematch-action-plan-list {
  display: grid;
  gap: 8px;
}

.prematch-action-plan-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px;
}

.prematch-action-plan-card div,
.prematch-action-plan-card strong,
.prematch-action-plan-card span,
.prematch-action-plan-card em {
  display: block;
  min-width: 0;
}

.prematch-action-plan-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.prematch-action-plan-card span {
  margin-top: 3px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.prematch-action-plan-card em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.prematch-action-plan-card button {
  min-height: 32px;
  border: 1px solid rgba(13, 125, 103, 0.18);
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  white-space: nowrap;
}


.prematch-primary-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(15, 111, 201, 0.22);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 111, 201, 0.10), rgba(13, 125, 103, 0.08));
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 12px;
}

.prematch-primary-card strong,
.prematch-primary-card span,
.prematch-primary-card em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prematch-primary-card strong {
  font-size: 16px;
  font-weight: 900;
}

.prematch-primary-card span,
.prematch-primary-card em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}

.prematch-relevance-section {
  border-color: rgba(13, 125, 103, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 250, 0.94));
}

.prematch-relevance-list {
  display: grid;
  gap: 8px;
}

.prematch-relevance-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: start;
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
}

.prematch-relevance-card div,
.prematch-relevance-card strong,
.prematch-relevance-card span,
.prematch-relevance-card em {
  display: block;
  min-width: 0;
}

.prematch-relevance-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.prematch-relevance-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.prematch-relevance-card em {
  margin-top: 5px;
  color: var(--text);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.prematch-relevance-card small {
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.1);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  white-space: nowrap;
}

.prematch-relevance-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prematch-relevance-actions button {
  flex: 1 1 112px;
  min-height: 32px;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.prematch-opponent-watchlist {
  border-color: rgba(15, 111, 201, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
}

.prematch-opponent-watch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.prematch-opponent-watch-grid button {
  display: grid;
  gap: 5px;
  min-width: 0;
  min-height: 132px;
  border: 1px solid rgba(21, 95, 194, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.prematch-opponent-watch-grid span {
  justify-self: start;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 5px 7px;
}

.prematch-opponent-watch-grid strong,
.prematch-opponent-watch-grid em,
.prematch-opponent-watch-grid small,
.prematch-opponent-watch-grid b {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prematch-opponent-watch-grid strong {
  font-size: 15px;
  font-weight: 900;
}

.prematch-opponent-watch-grid em,
.prematch-opponent-watch-grid small,
.prematch-opponent-watch-grid b {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

.prematch-opponent-watch-grid b {
  color: var(--text);
  font-weight: 700;
  white-space: normal;
}

.prematch-report-list,
.prematch-checklist {
  display: grid;
  gap: 8px;
}

.prematch-report-list button,
.prematch-checklist div {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.prematch-report-list strong,
.prematch-report-list span,
.prematch-report-list em,
.prematch-checklist strong,
.prematch-checklist span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prematch-report-list strong,
.prematch-checklist strong {
  font-size: 14px;
  font-weight: 900;
}

.prematch-report-list span,
.prematch-report-list em,
.prematch-checklist span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}

.parent-growth-report-shell {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.parent-growth-report-card {
  display: grid;
  gap: 10px;
}

.parent-growth-decision > strong {
  color: var(--teal);
  font-size: 24px;
  line-height: 1.1;
}

.parent-growth-decision > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.parent-growth-signal-grid,
.parent-growth-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.parent-growth-signal-grid div,
.parent-growth-metrics div {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  padding: 9px;
}

.parent-growth-signal-grid span,
.parent-growth-signal-grid strong,
.parent-growth-metrics span,
.parent-growth-metrics strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.parent-growth-signal-grid span,
.parent-growth-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.parent-growth-signal-grid strong,
.parent-growth-metrics strong {
  margin-top: 4px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 900;
}

.parent-growth-metrics strong {
  font-size: 20px;
  line-height: 1.1;
}

.parent-investment-signals {
  border-color: rgba(13, 125, 103, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 252, 250, 0.94));
}

.parent-investment-signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.parent-investment-signal {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px;
}

.parent-investment-signal span,
.parent-investment-signal strong,
.parent-investment-signal em {
  display: block;
  min-width: 0;
}

.parent-investment-signal span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.parent-investment-signal strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.parent-investment-signal em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.parent-close-bout {
  border-color: rgba(180, 99, 13, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.94));
}

.parent-close-bout-summary {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(180, 99, 13, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px;
}

.parent-close-bout-summary strong,
.parent-close-bout-summary span,
.parent-close-bout-summary em {
  display: block;
  min-width: 0;
}

.parent-close-bout-summary strong {
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.parent-close-bout-summary span,
.parent-close-bout-summary em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.parent-close-bout-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.parent-close-bout-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(180, 99, 13, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
  padding: 9px 10px;
}

.parent-close-bout-list strong,
.parent-close-bout-list span,
.parent-close-bout-list em {
  display: block;
  min-width: 0;
}

.parent-close-bout-list strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.parent-close-bout-list span {
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.parent-close-bout-list em {
  border-radius: 999px;
  background: rgba(180, 99, 13, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
  padding: 5px 8px;
}

.parent-peer-position {
  border-color: rgba(33, 105, 209, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
}

.parent-peer-position-list {
  display: grid;
  gap: 8px;
}

.parent-peer-position-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(33, 105, 209, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px;
}

.parent-peer-position-card strong,
.parent-peer-position-card span,
.parent-peer-position-card em {
  display: block;
  min-width: 0;
}

.parent-peer-position-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.parent-peer-position-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.parent-peer-position-card em {
  border-radius: 999px;
  background: rgba(33, 105, 209, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
  padding: 5px 8px;
}

@media (max-width: 360px) {
  .parent-investment-signal-list {
    grid-template-columns: 1fr;
  }

  .parent-peer-position-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .parent-close-bout-list div {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .parent-peer-position-card em,
  .parent-close-bout-list em {
    width: fit-content;
  }
}

.parent-growth-focus-list,
.parent-growth-action-list,
.parent-growth-communication-list,
.parent-opponent-list,
.parent-growth-timeline,
.parent-growth-evidence {
  display: grid;
  gap: 8px;
}

.parent-growth-focus-list div,
.parent-growth-action-list div,
.parent-growth-communication-card,
.parent-opponent-list button,
.parent-growth-timeline button,
.parent-growth-evidence button {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.parent-growth-timeline button {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.parent-opponent-tracking {
  border-color: rgba(180, 99, 13, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 241, 0.92));
}

.parent-growth-communication {
  border-color: rgba(13, 125, 103, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 250, 0.94));
}

.parent-growth-communication-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 10px;
}

.parent-growth-communication-card button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.1);
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
  white-space: nowrap;
}

.parent-opponent-list button {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.parent-opponent-list b {
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.parent-growth-focus-list strong,
.parent-growth-focus-list span,
.parent-growth-action-list strong,
.parent-growth-action-list span,
.parent-growth-communication-card strong,
.parent-growth-communication-card span,
.parent-growth-communication-card em,
.parent-opponent-list strong,
.parent-opponent-list span,
.parent-opponent-list em,
.parent-growth-timeline strong,
.parent-growth-timeline span,
.parent-growth-timeline em,
.parent-growth-timeline b,
.parent-growth-evidence strong,
.parent-growth-evidence span,
.parent-growth-evidence em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.parent-growth-focus-list strong,
.parent-growth-action-list strong,
.parent-growth-communication-card strong,
.parent-opponent-list strong,
.parent-growth-timeline strong,
.parent-growth-evidence strong {
  font-size: 14px;
  font-weight: 900;
}

.parent-growth-focus-list span,
.parent-growth-action-list span,
.parent-growth-communication-card span,
.parent-growth-communication-card em,
.parent-opponent-list span,
.parent-opponent-list em,
.parent-growth-timeline span,
.parent-growth-timeline em,
.parent-growth-evidence span,
.parent-growth-evidence em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}

.parent-growth-timeline b {
  color: var(--primary);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.coach-segmentation-report-shell {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.coach-segmentation-report-card {
  display: grid;
  gap: 10px;
}

.coach-segmentation-summary > strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.coach-segmentation-summary > p,
.coach-segmentation-bucket > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.coach-segmentation-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.coach-segmentation-metrics div {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  padding: 9px;
}

.coach-segmentation-metrics strong,
.coach-segmentation-metrics span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coach-segmentation-metrics strong {
  color: var(--primary);
  font-size: 20px;
  line-height: 1.1;
}

.coach-segmentation-metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.coach-segmentation-buckets,
.coach-segmentation-bucket,
.coach-segmentation-athletes,
.coach-segmentation-followups,
.coach-segmentation-evidence {
  display: grid;
  gap: 8px;
}

.coach-segmentation-bucket {
  border: 1px solid rgba(21, 95, 194, 0.12);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.045);
  padding: 10px;
}

.coach-segmentation-athletes button,
.coach-segmentation-followups button,
.coach-segmentation-evidence button {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.coach-segmentation-athletes strong,
.coach-segmentation-athletes span,
.coach-segmentation-athletes em,
.coach-segmentation-followups strong,
.coach-segmentation-followups span,
.coach-segmentation-followups em,
.coach-segmentation-evidence strong,
.coach-segmentation-evidence span,
.coach-segmentation-evidence em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coach-segmentation-athletes strong,
.coach-segmentation-followups strong,
.coach-segmentation-evidence strong {
  font-size: 14px;
  font-weight: 900;
}

.coach-segmentation-athletes span,
.coach-segmentation-athletes em,
.coach-segmentation-followups span,
.coach-segmentation-followups em,
.coach-segmentation-evidence span,
.coach-segmentation-evidence em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}

.coach-business-growth {
  border-color: rgba(13, 125, 103, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 252, 250, 0.94));
}

.coach-operating-checklist {
  border-color: rgba(14, 116, 144, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 250, 0.92));
}

.coach-operating-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.coach-operating-card {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px;
}

.coach-operating-card span,
.coach-operating-card strong,
.coach-operating-card em {
  display: block;
  min-width: 0;
}

.coach-operating-card span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.coach-operating-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.coach-operating-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.coach-business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.coach-business-card {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
}

.coach-business-card span,
.coach-business-card strong,
.coach-business-card em {
  display: block;
  min-width: 0;
}

.coach-business-card span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.coach-business-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.coach-business-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.coach-training-plan {
  border-color: rgba(180, 99, 13, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.94));
}

.coach-training-plan-list {
  display: grid;
  gap: 8px;
}

.coach-training-plan-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(180, 99, 13, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px;
}

.coach-training-plan-card strong,
.coach-training-plan-card span,
.coach-training-plan-card p,
.coach-training-plan-card em,
.coach-training-plan-card small {
  display: block;
  min-width: 0;
}

.coach-training-plan-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.coach-training-plan-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.coach-training-plan-card p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.coach-training-plan-card em,
.coach-training-plan-card small {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.coach-training-plan-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.coach-training-plan-actions button {
  flex: 1 1 112px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.coach-training-plan-actions button + button {
  border: 1px solid rgba(21, 95, 194, 0.16);
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
}

.coach-parent-message-list {
  display: grid;
  gap: 8px;
}

.coach-parent-message-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 10px;
}

.coach-parent-message-card strong,
.coach-parent-message-card span,
.coach-parent-message-card em {
  display: block;
  min-width: 0;
}

.coach-parent-message-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.coach-parent-message-card span,
.coach-parent-message-card em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.coach-parent-message-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.coach-parent-message-actions button {
  flex: 1 1 112px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.coach-parent-message-actions button + button {
  border: 1px solid rgba(21, 95, 194, 0.16);
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
}

@media (max-width: 360px) {
  .coach-business-grid {
    grid-template-columns: 1fr;
  }
}

.coach-bucket {
  display: grid;
  gap: 8px;
}

.coach-bucket-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.coach-bucket-head strong {
  font-size: 14px;
}

.coach-bucket-head span {
  color: var(--muted);
  font-size: 12px;
}

.coach-athlete-list,
.project-advice-list,
.growth-highlight-list,
.opponent-project-list,
.athlete-opponent-plan-list {
  display: grid;
  gap: 8px;
}

.opponent-project-list {
  margin-bottom: 9px;
}

.opponent-project-card {
  min-width: 0;
  border: 1px solid rgba(21, 95, 194, 0.12);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.055);
  padding: 10px;
}

.opponent-project-card strong,
.opponent-project-card span,
.opponent-project-card em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opponent-project-card strong {
  font-size: 13px;
  font-weight: 900;
}

.opponent-project-card span {
  margin-top: 4px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.opponent-project-card em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.athlete-opponent-plan-list button {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
  width: 100%;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 10px;
  background: rgba(13, 125, 103, 0.055);
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px;
}

.athlete-opponent-plan-list strong,
.athlete-opponent-plan-list span,
.athlete-opponent-plan-list em,
.athlete-opponent-plan-list small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.athlete-opponent-plan-list strong {
  font-size: 14px;
  font-weight: 900;
}

.athlete-opponent-plan-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.athlete-opponent-plan-list em {
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.opponent-match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.opponent-match-meta span {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 7px;
}

.athlete-opponent-plan-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.athlete-opponent-plan-list .ai-plan-action {
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.09);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 7px;
}

.coach-athlete-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coach-followup-list {
  display: grid;
  gap: 8px;
}

.coach-followup-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.13);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(13, 125, 103, 0.055), rgba(255, 255, 255, 0.88));
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 10px 11px;
}

.coach-followup-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.coach-followup-head strong,
.coach-followup-head span,
.coach-followup-card p,
.coach-followup-card em,
.coach-followup-card small {
  min-width: 0;
}

.coach-followup-head strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.coach-followup-head span,
.coach-followup-card em,
.coach-followup-card small {
  color: var(--muted);
  font-size: 12px;
}

.coach-followup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.coach-followup-tags span {
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 7px;
}

.coach-followup-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.coach-followup-card em,
.coach-followup-card small {
  display: block;
  font-style: normal;
  line-height: 1.45;
}

.coach-followup-card small {
  padding-top: 7px;
  border-top: 1px solid rgba(16, 24, 40, 0.06);
}

.coach-athlete-list button,
.project-advice-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  text-align: left;
}

.coach-athlete-list button {
  padding: 9px;
}

.coach-athlete-list strong,
.coach-athlete-list span,
.coach-athlete-list em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coach-athlete-list strong {
  font-size: 14px;
}

.coach-athlete-list span,
.coach-athlete-list em,
.project-advice-card span,
.project-advice-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.coach-athlete-list em {
  margin-top: 4px;
  color: var(--primary);
  font-weight: 800;
}

.project-advice-card {
  display: grid;
  gap: 8px;
  padding: 11px;
}

.project-advice-card strong,
.project-advice-card span,
.project-advice-card em {
  display: block;
}

.project-advice-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.project-advice-card span {
  margin-top: 3px;
  line-height: 1.45;
}

.project-advice-card em {
  padding-top: 8px;
  border-top: 1px solid rgba(16, 24, 40, 0.06);
  color: var(--primary);
  font-weight: 800;
}

.growth-highlight {
  border: 1px solid rgba(15, 92, 192, 0.1);
  border-radius: 10px;
  background: rgba(15, 92, 192, 0.04);
  padding: 10px 11px;
  font-size: 13px;
  line-height: 1.5;
}

.business-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.business-card {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(13, 125, 103, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(13, 125, 103, 0.06), rgba(255, 255, 255, 0.86));
  padding: 10px;
}

.business-card span,
.business-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

.business-card strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  font-size: 15px;
}

.business-card:first-child {
  grid-column: 1 / -1;
  border-color: rgba(15, 92, 192, 0.16);
  background: linear-gradient(180deg, rgba(15, 92, 192, 0.07), rgba(255, 255, 255, 0.9));
}

.club-share-section {
  margin-top: -2px;
}

.club-share-card {
  display: grid;
  gap: 11px;
  border: 1px solid rgba(13, 125, 103, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(21, 95, 194, 0.12), transparent 34%),
    linear-gradient(160deg, rgba(240, 251, 247, 0.98), rgba(255, 255, 255, 0.95));
  padding: 13px;
  box-shadow: 0 10px 24px rgba(21, 95, 194, 0.08);
}

.club-share-head {
  display: grid;
  gap: 3px;
}

.club-share-head span {
  width: max-content;
  border-radius: 999px;
  background: rgba(13, 125, 103, 0.1);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
}

.club-share-head strong {
  font-size: 20px;
  line-height: 1.25;
}

.club-share-head em,
.club-share-proof span,
.club-share-proof em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.club-share-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.club-share-kpis span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid rgba(21, 95, 194, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 9px;
}

.club-share-proof {
  display: grid;
  gap: 8px;
}

.club-share-proof div {
  display: grid;
  gap: 3px;
  min-width: 0;
  border-top: 1px solid rgba(16, 24, 40, 0.06);
  padding-top: 9px;
}

.club-share-proof strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.club-share-proof em {
  line-height: 1.45;
}

.club-share-action {
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 9px 18px rgba(21, 95, 194, 0.18);
}

.peer-card {
  border-color: rgba(13, 125, 103, 0.16);
}

.chart-grid {
  display: grid;
  gap: 10px;
}

.chart-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  padding: 12px;
}

.event-prematch-card {
  border-color: rgba(13, 125, 103, 0.18);
  background: linear-gradient(180deg, rgba(13, 125, 103, 0.06), rgba(255, 255, 255, 0.86));
}

.coach-review-card {
  border-color: rgba(21, 95, 194, 0.16);
  background: linear-gradient(180deg, rgba(21, 95, 194, 0.06), rgba(255, 255, 255, 0.88));
}

.coach-review-card .chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.coach-review-copy {
  flex: 0 0 auto;
  border: 1px solid rgba(21, 95, 194, 0.18);
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 9px;
}

.coach-review-list {
  display: grid;
  gap: 7px;
}

.coach-review-list div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(21, 95, 194, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
  padding: 8px 9px;
}

.coach-review-list strong,
.coach-review-list span {
  display: block;
  min-width: 0;
}

.coach-review-list strong {
  font-size: 13px;
  font-weight: 900;
}

.coach-review-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.event-prematch-summary {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.event-prematch-summary strong,
.event-prematch-summary span,
.event-prematch-list strong,
.event-prematch-list span {
  display: block;
  min-width: 0;
}

.event-prematch-summary strong {
  font-size: 15px;
}

.event-prematch-summary span,
.event-prematch-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.event-prematch-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.event-prematch-metrics div {
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px;
}

.event-prematch-metrics strong,
.event-prematch-metrics span {
  display: block;
}

.event-prematch-metrics strong {
  font-size: 17px;
}

.event-prematch-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.event-prematch-progress {
  margin-bottom: 10px;
}

.event-prematch-grid {
  display: grid;
  gap: 10px;
}

.mini-title {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
}

.event-prematch-list {
  display: grid;
  gap: 7px;
}

.event-prematch-list div {
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
  padding: 8px 9px;
}

.event-prematch-list strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.chart-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.chart-note {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(13, 125, 103, 0.06);
  color: var(--teal);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.bar-list,
.progress-list {
  display: grid;
  gap: 8px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(62px, 0.9fr) minmax(82px, 1.5fr) auto;
  align-items: center;
  gap: 8px;
}

.bar-label,
.bar-value {
  min-width: 0;
  font-size: 12px;
  color: var(--muted);
}

.bar-label {
  color: var(--text);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar-value {
  white-space: nowrap;
}

.bar-track,
.progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 92, 192, 0.08);
  overflow: hidden;
}

.bar-fill,
.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.bar-fill.teal {
  background: var(--teal);
}

.bar-fill.orange {
  background: var(--orange);
}

.progress-item {
  display: grid;
  gap: 6px;
}

.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.progress-head strong {
  color: var(--text);
  white-space: nowrap;
}

.donut-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.donut-item {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  text-align: center;
}

.donut {
  width: 70px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, #fff 0 53%, transparent 54%),
    conic-gradient(var(--primary) calc(var(--value) * 1%), rgba(15, 92, 192, 0.09) 0);
}

.donut span {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
}

.donut-item strong {
  font-size: 12px;
  line-height: 1.2;
}

.donut-item em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.2;
}

.event-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.event-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(15, 92, 192, 0.09);
  border-radius: 9px;
  background: rgba(15, 92, 192, 0.035);
  padding: 9px;
}

.bubble {
  width: calc(38px * var(--scale));
  min-width: 26px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.event-tile strong {
  display: block;
  font-size: 13px;
}

.event-tile span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
  white-space: nowrap;
}

.path-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.path-node {
  display: grid;
  gap: 6px;
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 8px;
  background: rgba(13, 125, 103, 0.06);
  padding: 9px;
}

.path-step {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.path-node strong {
  display: block;
  font-size: 13px;
}

.path-node span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
  line-height: 1.35;
}

.delta-list {
  display: grid;
  gap: 9px;
}

.delta-row {
  display: grid;
  grid-template-columns: minmax(58px, 0.9fr) minmax(100px, 1.6fr) auto;
  gap: 8px;
  align-items: center;
}

.delta-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
}

.delta-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(105, 117, 134, 0.12);
  overflow: hidden;
}

.delta-fill {
  height: 100%;
  border-radius: inherit;
}

.delta-fill.up {
  background: var(--teal);
}

.delta-fill.down {
  background: var(--orange);
}

.delta-value {
  min-width: 32px;
  text-align: right;
  font-size: 13px;
  font-weight: 900;
}

.delta-value.up {
  color: var(--teal);
}

.delta-value.down {
  color: var(--orange);
}

.value {
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.compact-table {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

th,
td {
  padding: 9px 6px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 13px;
}

th {
  color: var(--muted);
  font-weight: 700;
}

.match-list {
  display: grid;
  gap: 8px;
}

.participant-list,
.pool-group-list,
.pool-athlete-list,
.pool-bout-strip {
  display: grid;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.participant-card {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  text-align: left;
  font: inherit;
  color: var(--text);
}

.rank-pill,
.draw-no {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 92, 192, 0.1);
  color: var(--primary);
  font-weight: 900;
}

.rank-pill.podium {
  background: rgba(13, 125, 103, 0.12);
  color: var(--teal);
}

.participant-main {
  min-width: 0;
}

.participant-main strong,
.pool-athlete strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.participant-main span,
.pool-athlete span,
.participant-side {
  color: var(--muted);
  font-size: 12px;
}

.participant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.participant-tags em {
  border-radius: 6px;
  background: rgba(13, 125, 103, 0.08);
  color: var(--teal);
  padding: 3px 6px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.participant-side {
  justify-self: end;
  white-space: nowrap;
  font-weight: 800;
}

.pool-group-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px;
}

.process-switch {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0 10px;
}

.process-switch::-webkit-scrollbar {
  display: none;
}

.process-switch span {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.process-switch button {
  flex: 0 0 auto;
  min-width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(105, 117, 134, 0.18);
  color: #fff;
  font: inherit;
  font-weight: 900;
}

.process-switch button.active {
  background: var(--orange);
  color: #fff;
}

.phase-switch {
  padding-bottom: 12px;
}

.phase-switch button {
  min-width: auto;
  height: 36px;
  padding: 0 14px;
  border-radius: 0;
  background: #fff;
  color: var(--text);
  border-bottom: 2px solid transparent;
}

.phase-switch button.active {
  background: #fff;
  color: var(--orange);
  border-color: var(--orange);
}

.pool-process-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  contain: inline-size;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
}

.tab-panel,
#tab-pool,
#tab-standing,
#tab-tableau,
#poolGroups,
#poolStanding,
#matchList {
  min-width: 0;
  max-width: 100%;
}

.pool-matrix-wrap {
  display: block;
  width: min(100%, calc(100vw - 42px));
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 8px 0 14px;
  padding: 0;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  box-sizing: border-box;
}

.pool-matrix,
.process-table {
  border-collapse: collapse;
  background: #fff;
  box-sizing: border-box;
}

.pool-matrix {
  width: calc(86px + (var(--pool-size, 7) * 32px));
  min-width: calc(86px + (var(--pool-size, 7) * 32px));
  max-width: none;
  table-layout: fixed;
}

.pool-matrix th,
.pool-matrix td,
.process-table th,
.process-table td {
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
  text-align: center;
}

.pool-matrix th:first-child,
.pool-matrix td:first-child,
.process-table th:first-child,
.process-table td:first-child {
  text-align: left;
}

.pool-matrix th:first-child,
.pool-matrix td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 86px;
  min-width: 86px;
  max-width: 86px;
  background: #fff;
  box-shadow: 1px 0 0 rgba(16, 24, 40, 0.06);
}

.pool-matrix th:not(:first-child),
.pool-matrix td:not(:first-child) {
  width: 32px;
  min-width: 32px;
  max-width: 32px;
}

.pool-matrix thead th:first-child {
  z-index: 3;
}

.pool-matrix th button {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.pool-matrix td {
  height: 34px;
  padding: 0;
  font-size: 13px;
  color: var(--text);
}

.participant-card.is-followed-focus,
.pool-matrix tr.is-followed-focus th,
.process-table tr.is-followed-focus,
.bracket-row.is-followed-focus {
  border-color: rgba(15, 92, 192, 0.24);
  background: rgba(15, 92, 192, 0.06);
}

.participant-card.is-primary-focus,
.pool-matrix tr.is-primary-focus th,
.process-table tr.is-primary-focus,
.bracket-row.is-primary-focus {
  border-color: rgba(13, 125, 103, 0.32);
  background: rgba(13, 125, 103, 0.1);
}

.pool-matrix tr.is-followed-focus th:first-child {
  background: #f3f8ff;
}

.pool-matrix tr.is-primary-focus th:first-child {
  background: #edf8f5;
}

.pool-matrix td.self {
  background: var(--orange);
  color: transparent;
}

.pool-matrix td.focus-line:not(.self) {
  background: rgba(15, 92, 192, 0.045);
}

.pool-result-table {
  display: block;
  gap: 6px;
  width: min(100%, calc(100vw - 42px));
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  box-sizing: border-box;
}

.pool-results-table {
  width: 100%;
  min-width: 324px;
  table-layout: fixed;
}

.pool-results-table th,
.pool-results-table td {
  padding: 7px 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}

.pool-results-table th:first-child,
.pool-results-table td:first-child {
  width: 86px;
}

.pool-results-table th:nth-child(2),
.pool-results-table td:nth-child(2),
.pool-results-table th:nth-child(3),
.pool-results-table td:nth-child(3) {
  width: 34px;
}

.pool-results-table th:nth-child(4),
.pool-results-table td:nth-child(4),
.pool-results-table th:nth-child(5),
.pool-results-table td:nth-child(5),
.pool-results-table th:nth-child(6),
.pool-results-table td:nth-child(6) {
  width: 43px;
}

.pool-results-table th:last-child,
.pool-results-table td:last-child {
  width: 42px;
}

@media (max-width: 430px) {
  .report-reminder-card {
    grid-template-columns: 1fr;
  }

  .report-reminder-card button {
    justify-self: start;
  }

  .pool-process-card {
    padding: 8px;
  }

  .pool-matrix-wrap,
  .pool-result-table {
    width: min(100%, calc(100vw - 38px));
  }

  .pool-matrix {
    width: calc(76px + (var(--pool-size, 7) * 28px));
    min-width: calc(76px + (var(--pool-size, 7) * 28px));
  }

  .pool-matrix th:first-child,
  .pool-matrix td:first-child {
    width: 76px;
    min-width: 76px;
    max-width: 76px;
  }

  .pool-matrix th:not(:first-child),
  .pool-matrix td:not(:first-child) {
    width: 28px;
    min-width: 28px;
    max-width: 28px;
  }

  .pool-matrix td {
    height: 32px;
    font-size: 12px;
  }

  .pool-results-table {
    min-width: 300px;
  }

  .pool-results-table th,
  .pool-results-table td {
    padding: 7px 2px;
    font-size: 11px;
  }

  .pool-results-table th:first-child,
  .pool-results-table td:first-child {
    width: 78px;
  }
}

.pool-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.pool-group-head strong {
  font-size: 15px;
}

.pool-group-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pool-quick-summary,
.tableau-winner-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 1fr);
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.pool-quick-summary::-webkit-scrollbar,
.tableau-winner-strip::-webkit-scrollbar {
  display: none;
}

.pool-quick-summary div,
.tableau-winner-strip div {
  min-width: 0;
  border: 1px solid rgba(13, 125, 103, 0.12);
  border-radius: 9px;
  background: rgba(13, 125, 103, 0.055);
  padding: 8px 9px;
}

.pool-quick-summary em,
.pool-quick-summary strong,
.pool-quick-summary span,
.tableau-winner-strip span,
.tableau-winner-strip strong,
.tableau-winner-strip em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pool-quick-summary em,
.tableau-winner-strip span {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.pool-quick-summary strong,
.tableau-winner-strip strong {
  margin-top: 3px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.pool-quick-summary span,
.tableau-winner-strip em {
  margin-top: 3px;
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.process-scroll-hint {
  margin: 8px 0 2px;
  border-radius: 8px;
  background: rgba(21, 95, 194, 0.055);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  padding: 7px 9px;
}

.pool-athlete {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(15, 92, 192, 0.08);
  border-radius: 8px;
  background: rgba(15, 92, 192, 0.03);
  padding: 8px;
  text-align: left;
  font: inherit;
  color: var(--text);
}

.pool-score {
  text-align: right;
}

.pool-score strong,
.pool-score span {
  display: block;
}

.pool-score span {
  color: var(--muted);
  font-size: 11px;
}

.pool-bout-strip {
  margin-top: 10px;
}

.pool-bout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(105, 117, 134, 0.12);
}

.pool-bout span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
}

.pool-bout span:last-child {
  text-align: right;
}

.pool-bout span.win {
  color: var(--text);
  font-weight: 900;
}

.pool-bout strong {
  color: var(--primary);
  font-size: 14px;
}

.phase-group {
  display: grid;
  gap: 8px;
}

.phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 2px 0;
}

.phase-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.phase-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.bracket-board {
  display: grid;
  gap: 10px;
}

.tableau-phase-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(21, 95, 194, 0.1);
  border-radius: 10px;
  background: rgba(21, 95, 194, 0.045);
  padding: 10px 11px;
}

.tableau-phase-summary strong,
.tableau-phase-summary span {
  display: block;
}

.tableau-phase-summary strong {
  font-size: 15px;
}

.tableau-phase-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.tableau-phase-summary em {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.tableau-board {
  min-width: 0;
}

.bracket-match {
  position: relative;
  border: 1px solid rgba(215, 122, 35, 0.32);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

.bracket-match::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 24px;
  width: 8px;
  height: 48px;
  border-top: 1px solid rgba(215, 122, 35, 0.42);
  border-right: 1px solid rgba(215, 122, 35, 0.42);
  border-bottom: 1px solid rgba(215, 122, 35, 0.42);
}

.bracket-match.has-focus-athlete {
  border-color: rgba(13, 125, 103, 0.32);
  box-shadow: 0 8px 22px rgba(13, 125, 103, 0.08);
}

.tableau-match {
  display: grid;
  gap: 8px;
  overflow: hidden;
}

.tableau-match::after {
  display: none;
}

.tableau-match-code {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tableau-match-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.tableau-player-stack {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.bracket-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(16, 24, 40, 0.07);
  border-radius: 8px;
  padding: 8px 10px;
}

.tableau-player-stack .bracket-row {
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  min-width: 0;
}

.bracket-row + .bracket-row {
  margin-top: 8px;
}

.tableau-player-stack .bracket-row + .bracket-row {
  margin-top: 0;
}

.bracket-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.bracket-row small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.bracket-row strong {
  color: var(--primary);
  font-size: 18px;
}

.bracket-row.winner {
  background: rgba(13, 125, 103, 0.08);
  border-color: rgba(13, 125, 103, 0.2);
}

.tableau-score-pill {
  display: grid;
  place-items: center;
  min-width: 56px;
  min-height: 56px;
  border-radius: 999px;
  background: rgba(21, 95, 194, 0.08);
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.tableau-advance-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(16, 24, 40, 0.06);
  padding-top: 8px;
}

.tableau-advance-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tableau-advance-row strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--teal);
  font-size: 14px;
}

.match {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  padding: 10px;
}

.match-phase {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.path-highlight {
  border-color: rgba(13, 125, 103, 0.22);
  background: linear-gradient(180deg, rgba(13, 125, 103, 0.06), rgba(255, 255, 255, 0.92));
}

.match-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.bout-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.bout-side {
  min-width: 0;
  border-radius: 8px;
  padding: 10px;
  background: rgba(15, 92, 192, 0.04);
  border: 1px solid rgba(15, 92, 192, 0.08);
}

.bout-side.winner {
  background: rgba(13, 125, 103, 0.1);
  border-color: rgba(13, 125, 103, 0.22);
}

.bout-side.loser {
  opacity: 0.72;
}

.score-pair {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(15, 92, 192, 0.08);
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.score-pair span {
  margin: 0 4px;
  opacity: 0.4;
}

.winner-score {
  background: linear-gradient(180deg, rgba(15, 92, 192, 0.16), rgba(15, 92, 192, 0.07));
}

.winner-note {
  margin-top: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.fencer {
  min-width: 0;
}

.fencer strong {
  display: block;
  line-height: 1.35;
}

.fencer span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.vs {
  font-weight: 900;
  color: var(--primary);
}

.empty {
  color: var(--muted);
  padding: 10px 0;
}

.compact-empty {
  padding: 8px 0;
  font-size: 13px;
}

.loading-row,
.load-error {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
}

.load-error {
  display: grid;
  gap: 8px;
  color: var(--text);
}

.load-error strong,
.load-error span {
  display: block;
}

.load-error span {
  color: var(--muted);
}

.load-error button {
  justify-self: start;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
}

/* Taste refresh: restrained sports-data product UI. */
:root {
  --bg: #f2f6f4;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-solid: #ffffff;
  --panel-soft: #f8fbfa;
  --text: #111827;
  --muted: #667085;
  --border: rgba(17, 24, 39, 0.095);
  --primary: #155fc2;
  --primary-strong: #0f4fa4;
  --primary-soft: rgba(21, 95, 194, 0.09);
  --teal: #087760;
  --orange: #a85a12;
  --shadow: 0 10px 28px rgba(17, 24, 39, 0.055);
  --shadow-soft: 0 6px 18px rgba(17, 24, 39, 0.04);
  --hairline: rgba(17, 24, 39, 0.075);
  --radius: 10px;
}

body {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 50% -80px, rgba(21, 95, 194, 0.12), transparent 310px),
    linear-gradient(180deg, rgba(226, 236, 233, 0.88) 0, rgba(248, 251, 250, 0.96) 230px, var(--bg) 100%);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.app {
  width: min(100%, 480px);
  padding: 0 12px 94px;
}

.topbar {
  min-height: 54px;
  padding: 6px 0;
  background: rgba(248, 251, 250, 0.88);
}

h1 {
  font-size: 19px;
  letter-spacing: -0.01em;
}

h2 {
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.panel {
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.nav-back {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-back.visible {
  transform: translateX(0);
}

.search-shell {
  top: 54px;
  gap: 10px;
  margin: 0 -4px 12px;
  padding: 12px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.065);
}

label {
  font-size: 12px;
  font-weight: 900;
}

input,
select {
  height: 42px;
  border-radius: 9px;
  background: var(--panel-soft);
  font-size: 14px;
}

input::placeholder {
  color: #8b97a8;
}

.filter-trigger,
.tab,
.sheet-option,
.competition-card,
.event-card,
.clickable,
.feed-card,
.athlete-result-card,
.club-summary-head,
.follow-card,
.primary-action {
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.filter-trigger {
  height: 38px;
  border-radius: 999px;
  background: var(--panel-solid);
}

.filter-trigger.active,
.tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 95, 194, 0.18);
}

.feed-panel,
.follow-panel,
.member-panel,
.product-overview {
  margin-bottom: 12px;
}

.feed-list {
  gap: 10px;
}

.feed-card {
  border-color: rgba(17, 24, 39, 0.09);
  background: var(--panel-solid);
  box-shadow: var(--shadow-soft);
}

.feed-card:hover,
.competition-card:hover,
.event-card:hover,
.clickable:hover,
.athlete-result-card:hover,
.follow-card:hover {
  border-color: rgba(21, 95, 194, 0.24);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.feed-card span,
.badge,
.event-chip-row span {
  font-weight: 900;
}

.competition-card,
.event-card,
.leader-card,
.club-card,
.metric,
.chart-card,
.participant-card,
.match,
.pool-group-card,
.report-card,
.opponent-card,
.stat-item,
.club-summary-card {
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: var(--shadow-soft);
}

.competition-card,
.event-card {
  padding: 13px;
}

.competition-card strong,
.event-card strong {
  letter-spacing: -0.01em;
}

.card-insight,
.insight-note,
.chart-note {
  border-radius: 9px;
  background: rgba(21, 95, 194, 0.055);
  color: #344054;
}

.stat-strip {
  gap: 8px;
}

.stat-item {
  padding: 10px 8px;
}

.stat-item strong,
.metric strong,
.report-card strong,
.value {
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 15px;
  border-color: rgba(21, 95, 194, 0.12);
  background:
    linear-gradient(135deg, rgba(21, 95, 194, 0.08), rgba(8, 119, 96, 0.055)),
    var(--panel-solid);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--primary);
}

.hero-title {
  position: relative;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.hero-sub {
  position: relative;
  color: #526070;
  font-size: 13px;
}

.metric-grid {
  gap: 9px;
}

.metric {
  padding: 11px 10px;
}

.tabs {
  position: sticky;
  top: 54px;
  z-index: 10;
  padding: 8px 0;
  margin: 0 -2px 10px;
  background: rgba(242, 246, 244, 0.88);
  backdrop-filter: blur(14px);
}

.tab {
  height: 40px;
  border-radius: 999px;
  background: var(--panel-solid);
  color: #526070;
  font-weight: 900;
}

.bar-track,
.progress-track,
.delta-track {
  height: 8px;
  background: rgba(21, 95, 194, 0.075);
}

.bar-fill,
.progress-fill,
.delta-fill {
  box-shadow: none;
}

.donut {
  width: 74px;
  background:
    radial-gradient(circle, var(--panel-solid) 0 54%, transparent 55%),
    conic-gradient(var(--primary) calc(var(--value) * 1%), rgba(21, 95, 194, 0.08) 0);
}

.primary-action,
button.primary-action {
  min-height: 42px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(21, 95, 194, 0.18);
}

.primary-action:hover {
  background: var(--primary-strong);
}

.sheet-panel {
  border-radius: 20px 20px 0 0;
}

.panel.ai-home-primary {
  border: 0;
  background:
    linear-gradient(135deg, rgba(14, 68, 132, 0.97), rgba(8, 119, 96, 0.96)),
    var(--primary);
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 37, 64, 0.16);
}

.panel.ai-home-primary .section-title h2,
.panel.ai-home-primary .section-title span,
.panel.ai-home-primary .ai-home-lead strong,
.panel.ai-home-primary .ai-home-lead span,
.panel.ai-home-primary .ai-home-actions span,
.panel.ai-home-primary .ai-empty strong,
.panel.ai-home-primary .ai-empty span {
  color: #fff;
}

.panel.ai-home-primary .section-title span,
.panel.ai-home-primary .ai-home-lead span,
.panel.ai-home-primary .ai-home-actions span,
.panel.ai-home-primary .ai-empty span {
  opacity: 0.78;
}

.panel.ai-home-primary {
  border-radius: 16px;
  padding: 15px;
}

.panel.ai-home-primary .ai-home-lead {
  gap: 6px;
}

.panel.ai-home-primary .ai-home-lead strong {
  max-width: 11em;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.panel.ai-home-primary .ai-query-form textarea {
  min-height: 96px;
  border-radius: 14px;
}

.panel.ai-home-primary .ai-query-form button {
  border-radius: 14px;
}

.panel.ai-home-primary .ai-preset-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 9px;
}

.panel.ai-home-primary .ai-preset-row button {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 9px 10px;
  box-shadow: none;
}

@media (min-width: 860px) {
  .app {
    width: min(100%, 1040px);
    padding-inline: 22px;
  }

  .topbar {
    grid-template-columns: 42px 1fr 42px;
  }

  #view-competitions.active {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 14px;
    align-items: start;
  }

  #view-competitions .search-shell,
  #view-competitions .search-athletes-panel,
  #view-competitions .feed-panel,
  #view-competitions .follow-panel,
  #view-competitions .member-panel,
  #view-competitions .product-overview {
    grid-column: 1;
  }

  #view-competitions .list-title,
  #view-competitions #competitionList {
    grid-column: 2;
  }

  .search-shell {
    position: sticky;
    top: 64px;
    margin: 0 0 12px;
    border-radius: var(--radius);
  }

  .feed-list {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .metric-grid,
  .chart-grid,
  .portrait-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #metricGrid.metric-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .tab-panel.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #tab-participants.tab-panel.active,
  #tab-pool.tab-panel.active,
  #tab-tableau.tab-panel.active,
  #tab-standing.tab-panel.active {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  html,
  body {
    overflow: visible !important;
    background: #fff !important;
  }

  .app {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .topbar,
  .bottom-nav,
  .nav-back,
  .report-share-action,
  .report-conversion-card,
  .ai-share-row,
  .ai-conversion-actions,
  .filter-sheet {
    display: none !important;
  }

  .view:not(.active) {
    display: none !important;
  }

  .panel,
  .ai-answer-card,
  .parent-growth-report-card,
  .coach-segmentation-card,
  .prematch-report-card {
    break-inside: avoid;
    box-shadow: none !important;
  }
}
