:root {
  color-scheme: light;
  --ink: #13201c;
  --muted: #61706b;
  --line: #d9e2dd;
  --court: #126b57;
  --clay: #c85f32;
  --lime: #c8f24a;
  --blue: #245fce;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --sun: #ffcd3c;
  --mint: #6ee7b7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 242, 74, 0.2), transparent 270px),
    radial-gradient(circle at 86% 8%, rgba(36, 95, 206, 0.12), transparent 300px),
    linear-gradient(180deg, rgba(246, 250, 244, 0.98), rgba(255, 255, 255, 0) 360px),
    var(--paper);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: env(safe-area-inset-bottom);
  background: rgba(251, 252, 248, 0.96);
  pointer-events: none;
  z-index: 20;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(19, 32, 28, 0.1);
  background: rgba(251, 252, 248, 0.86);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  gap: 11px;
  align-items: center;
}

.brand-mark {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--court), #10201d 68%);
  color: var(--lime);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(18, 107, 87, 0.18);
}

.topbar strong {
  display: block;
  font-size: 18px;
}

.topbar span,
.topbar a,
small {
  color: var(--muted);
}

.topbar nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.topbar a {
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.topbar a:hover {
  background: rgba(18, 107, 87, 0.08);
  color: var(--court);
}

.topbar a.is-active {
  background: #10201d;
  color: #ffffff;
}

.mobile-tabs {
  display: none;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 64px;
}

.install-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin: 18px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 8px;
  background: #f3fbf6;
}

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

.install-card span {
  margin-top: 3px;
  color: var(--muted);
}

.install-card.installed {
  background: #edf6ff;
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: 48px 0 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--court);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-width: 620px;
  margin-top: 18px;
}

.hero-trust-row span {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(19, 32, 28, 0.06);
}

.hero-trust-row b,
.hero-trust-row em {
  display: block;
}

.hero-trust-row b {
  color: var(--court);
  font-size: 14px;
}

.hero-trust-row em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.primary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.primary-link {
  padding: 0 18px;
  background: var(--court);
  color: #fff;
  box-shadow: 0 5px 0 #0c4d3f;
}

.text-link {
  padding: 0 4px;
  color: var(--court);
}

.hero-panel {
  position: relative;
  min-height: 472px;
  padding: 14px;
  border: 1px solid rgba(19, 32, 28, 0.12);
  background:
    linear-gradient(145deg, rgba(200, 242, 74, 0.2), rgba(36, 95, 206, 0.1) 36%, rgba(16, 32, 29, 0) 64%),
    #10201d;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(19, 32, 28, 0.24);
}

.dashboard-shell {
  height: 100%;
  display: grid;
  gap: 12px;
  color: #f8fff8;
}

.dashboard-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.dashboard-top span,
.dashboard-top em {
  color: rgba(248, 255, 248, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.dashboard-top strong {
  text-align: center;
  letter-spacing: 0;
}

.motion-stage {
  position: relative;
  min-height: 272px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #071613;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% 50%;
  min-height: 272px;
}

.motion-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 19, 0.34), rgba(7, 22, 19, 0.02) 48%, rgba(7, 22, 19, 0.44)),
    linear-gradient(180deg, rgba(7, 22, 19, 0.06), rgba(7, 22, 19, 0.5));
  pointer-events: none;
}

.scan-chip {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 22, 19, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.scan-chip i {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200, 242, 74, 0.18);
}

.score-chip {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(19, 32, 28, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.score-chip span:first-child {
  color: var(--clay);
  font-size: 30px;
}

.score-chip span:last-child {
  color: var(--ink);
  font-size: 14px;
}

.score-chip.gate-chip span:first-child {
  color: var(--court);
  font-size: 20px;
  letter-spacing: 0;
}

.score-chip.gate-chip span:last-child {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-metrics div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.dashboard-metrics small,
.dashboard-metrics b,
.dashboard-metrics span {
  display: block;
}

.dashboard-metrics small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-metrics b {
  margin: 3px 0;
  color: var(--court);
  font-size: 25px;
}

.dashboard-metrics span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.insight-list span {
  display: grid;
  place-items: center;
  min-height: 91px;
  padding: 10px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  text-align: center;
}

.insight-list b,
.insight-list em {
  display: block;
}

.insight-list b {
  color: var(--clay);
  font-size: 28px;
}

.insight-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.hero-system-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.hero-system-strip span {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 22, 19, 0.62);
  color: #fff;
}

.hero-system-strip b,
.hero-system-strip em {
  display: block;
}

.hero-system-strip b {
  color: var(--lime);
  font-size: 13px;
}

.hero-system-strip em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.28;
}

.studio-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 8px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 28, 0.1);
  border-radius: 8px;
  background: rgba(19, 32, 28, 0.1);
  box-shadow: 0 14px 40px rgba(19, 32, 28, 0.05);
}

.studio-strip div {
  min-width: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.82);
}

.studio-strip span {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ef;
  color: var(--court);
  font-size: 12px;
  font-weight: 900;
}

.studio-strip strong {
  min-width: 0;
  font-size: 14px;
  line-height: 1.2;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.tool,
.result,
.library {
  border: 1px solid rgba(18, 107, 87, 0.13);
  background: var(--panel);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(19, 32, 28, 0.075);
}

.tool {
  position: sticky;
  top: 86px;
}

.capture-brief {
  display: grid;
  gap: 12px;
  margin: -2px 0 16px;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 107, 87, 0.08), rgba(200, 242, 74, 0.12)),
    #ffffff;
}

.capture-brief strong,
.capture-brief span {
  display: block;
}

.capture-brief strong {
  font-size: 16px;
}

.capture-brief > div:first-child span {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.42;
}

.capture-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.capture-pills span {
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #10201d;
  color: #c8f24a;
  font-size: 12px;
  font-weight: 900;
}

.account-panel,
.player-profile {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(18, 107, 87, 0.08), rgba(200, 242, 74, 0.08)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(19, 32, 28, 0.06);
}

.top-account-panel {
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  margin-top: 18px;
  border-color: rgba(16, 32, 29, 0.18);
  background:
    linear-gradient(135deg, #10201d 0%, #126b57 54%, #245fce 120%);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(16, 32, 29, 0.14);
}

.top-account-panel .account-copy small,
.top-account-panel .account-copy strong,
.top-account-panel .account-copy span {
  color: #ffffff;
}

.top-account-panel .account-copy small,
.top-account-panel .account-copy span {
  color: rgba(255, 255, 255, 0.72);
}

.top-account-panel .account-copy strong {
  max-width: 720px;
  font-size: clamp(22px, 2.6vw, 34px);
}

.top-account-panel .account-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.auth-mode-switch,
.auth-mode-hint {
  grid-column: 1 / -1;
}

.auth-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background: rgba(18, 107, 87, 0.06);
}

.auth-mode-switch button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(16, 38, 32, 0.68);
  box-shadow: none;
}

.auth-mode-switch button.is-active {
  background: #ffffff;
  color: var(--court);
  box-shadow: 0 8px 20px rgba(16, 32, 29, 0.08);
}

.auth-mode-hint {
  margin: -2px 0 2px;
  color: rgba(16, 38, 32, 0.62);
  font-size: 13px;
  font-weight: 750;
}

.top-account-panel .account-form label {
  margin-bottom: 0;
}

.top-account-panel .auth-actions,
.top-account-panel .message {
  grid-column: 1 / -1;
}

.account-panel.is-logged-in .account-form label,
.account-panel.is-logged-in .auth-mode-switch,
.account-panel.is-logged-in .auth-mode-hint {
  display: none;
}

.account-panel.is-logged-in .auth-actions {
  grid-template-columns: auto;
  justify-content: start;
}

.account-panel.is-logged-in .auth-actions .primary {
  display: none;
}

.my-space {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  scroll-margin-top: 96px;
}

.my-space-title {
  padding: 16px 18px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 107, 87, 0.08), rgba(200, 242, 74, 0.1)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(19, 32, 28, 0.05);
}

.my-space > .account-panel,
.my-space > .history,
.my-space > .player-profile {
  margin-top: 0;
}

.operator-workbench,
.business-lab {
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(19, 32, 28, 0.05);
  overflow: hidden;
}

.operator-workbench summary,
.business-lab summary {
  position: relative;
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
}

.operator-workbench summary::-webkit-details-marker,
.business-lab summary::-webkit-details-marker {
  display: none;
}

.operator-workbench summary span,
.operator-workbench summary small,
.business-lab summary span,
.business-lab summary small {
  display: block;
}

.operator-workbench summary span,
.business-lab summary span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.operator-workbench summary small,
.business-lab summary small {
  max-width: 520px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
  text-align: right;
}

.operator-workbench summary::after,
.business-lab summary::after {
  width: 28px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef6f1;
  color: var(--court);
  font-weight: 950;
  content: "+";
}

.operator-workbench[open] summary,
.business-lab[open] summary {
  border-bottom: 1px solid rgba(18, 107, 87, 0.12);
}

.operator-workbench[open] summary::after,
.business-lab[open] summary::after {
  content: "-";
}

.operator-workbench:not([open]) .commerce-board,
.business-lab:not([open]) > section {
  display: none;
}

.account-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.account-copy small,
.account-copy strong,
.account-copy span {
  display: block;
}

.account-copy small {
  color: var(--court);
  font-weight: 900;
}

.account-copy strong {
  max-width: 680px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.account-copy span {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.account-form {
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.auth-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.result {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.98), #ffffff 210px);
}

#report {
  scroll-margin-top: 96px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 900;
}

.section-title > span {
  white-space: nowrap;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: #31413c;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 6px;
  padding: 12px 12px;
  color: var(--ink);
  background: #fbfdfb;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--court);
  box-shadow: 0 0 0 4px rgba(18, 107, 87, 0.12);
}

textarea {
  resize: vertical;
}

.upload-box {
  position: relative;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(18, 107, 87, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 242, 74, 0.2), rgba(36, 95, 206, 0.08)),
    linear-gradient(180deg, #fbfff6, #f2faf4);
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-box span {
  color: var(--court);
  font-size: 13px;
}

.upload-box strong {
  font-size: 19px;
}

.upload-box em {
  max-width: 280px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.upload-box:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 107, 87, 0.56);
  box-shadow: 0 12px 28px rgba(18, 107, 87, 0.1);
}

.upload-box.has-file {
  border-color: rgba(18, 107, 87, 0.64);
  background:
    linear-gradient(135deg, rgba(200, 242, 74, 0.28), rgba(18, 107, 87, 0.12)),
    linear-gradient(180deg, #fbfff6, #edf8ef);
  box-shadow: 0 14px 34px rgba(18, 107, 87, 0.12);
}

.tool button.primary:disabled {
  cursor: not-allowed;
  background: linear-gradient(180deg, #d9e4dc, #becbc3);
  color: rgba(16, 38, 32, 0.54);
  box-shadow: none;
  transform: none;
}

.video-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: -2px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1b18;
  object-fit: cover;
}

.quick-video-tags {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
  padding: 13px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 242, 0.92)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.quick-tag-head {
  display: grid;
  gap: 3px;
}

.quick-tag-head strong,
.quick-tag-head span {
  display: block;
}

.quick-tag-head strong {
  color: #10201d;
  font-size: 16px;
}

.quick-tag-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.quick-video-tags fieldset {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.quick-video-tags legend {
  grid-column: 1 / -1;
  margin-bottom: 1px;
  color: var(--court);
  font-size: 12px;
  font-weight: 950;
}

.quick-video-tags label {
  min-width: 0;
  display: block;
  margin: 0;
  cursor: pointer;
}

.quick-video-tags input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.quick-video-tags label span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 7px;
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  background: #ffffff;
  color: #172b24;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.quick-video-tags label:hover span {
  transform: translateY(-1px);
  border-color: rgba(18, 107, 87, 0.32);
}

.quick-video-tags input:checked + span {
  border-color: rgba(16, 32, 29, 0.88);
  background: #10201d;
  color: #c8f24a;
  box-shadow: 0 10px 20px rgba(16, 32, 29, 0.12);
}

.quick-video-tags input:focus-visible + span {
  outline: 3px solid rgba(200, 242, 74, 0.45);
  outline-offset: 2px;
}

.optional-context,
.video-name-field {
  display: none;
}

.optional-analysis-fields {
  margin: 0 0 13px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #fbfdfb;
}

.optional-analysis-fields summary {
  min-height: 42px;
  display: grid;
  align-items: center;
  padding: 10px 12px;
  color: var(--court);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  list-style: none;
}

.optional-analysis-fields summary::-webkit-details-marker {
  display: none;
}

.optional-analysis-fields summary::after {
  justify-self: end;
  margin-top: -20px;
  color: var(--muted);
  content: "+";
}

.optional-analysis-fields[open] summary {
  border-bottom: 1px solid rgba(18, 107, 87, 0.1);
}

.optional-analysis-fields[open] summary::after {
  content: "-";
}

.optional-analysis-fields label {
  margin: 12px;
}

.upload-mission {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 13px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.96), rgba(18, 107, 87, 0.9)),
    #10201d;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 32, 29, 0.12);
}

.upload-mission small,
.upload-mission strong,
.upload-mission span {
  display: block;
}

.upload-mission small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 950;
}

.upload-mission strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
}

.upload-mission > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.upload-mission span {
  min-width: 0;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

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

.optional-context.grid-2 {
  display: none;
}

button {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 13px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.language-toggle {
  min-width: 46px;
  padding: 7px 10px;
  border-color: rgba(18, 107, 87, 0.24);
  color: var(--court);
}

.primary {
  width: 100%;
  border-color: var(--court);
  background: var(--court);
  color: #fff;
  box-shadow: 0 5px 0 #0c4d3f;
  transform: translateY(0);
}

.primary:active {
  box-shadow: 0 2px 0 #0c4d3f;
  transform: translateY(3px);
}

.message {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--court);
  font-weight: 700;
}

.analysis-progress {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.96), rgba(18, 107, 87, 0.9)),
    #10201d;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 32, 29, 0.14);
}

.analysis-progress::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.progress-kicker {
  position: relative;
  display: grid;
  gap: 3px;
  padding-bottom: 4px;
}

.progress-kicker span,
.progress-kicker em {
  display: block;
}

.progress-kicker span {
  color: #ffffff;
  font-weight: 950;
}

.progress-kicker em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.analysis-progress[hidden] {
  display: none;
}

.analysis-progress-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.analysis-progress strong,
.analysis-progress span,
.analysis-progress small {
  display: block;
}

.analysis-progress span {
  color: var(--lime);
  font-weight: 900;
}

.analysis-progress.is-error {
  border-color: rgba(200, 95, 50, 0.34);
  background:
    linear-gradient(135deg, rgba(44, 20, 16, 0.96), rgba(126, 51, 31, 0.9)),
    #2c1410;
}

.analysis-progress.is-error span {
  color: #ffd3bf;
}

.analysis-progress.is-error b {
  background: linear-gradient(90deg, #c85f32, #ffd3bf);
}

.analysis-progress i {
  position: relative;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.analysis-progress b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--court), var(--lime));
  transition: width 260ms ease;
}

.analysis-progress small {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

.analysis-progress-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.analysis-progress-steps span {
  min-width: 0;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
}

.analysis-progress-steps span.is-active {
  border-color: rgba(200, 242, 74, 0.48);
  background: rgba(200, 242, 74, 0.14);
  color: #ffffff;
}

.analysis-progress-steps span.is-done {
  border-color: rgba(200, 242, 74, 0.36);
  background: rgba(255, 255, 255, 0.14);
  color: var(--lime);
}

.analysis-progress-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.analysis-progress-metrics span {
  min-width: 0;
  display: block;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.analysis-progress-metrics b,
.analysis-progress-metrics em {
  display: block;
}

.analysis-progress-metrics b {
  width: auto;
  height: auto;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
}

.analysis-progress-metrics em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-style: normal;
  font-weight: 780;
  line-height: 1.25;
}

.analysis-delivery-preview {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.analysis-delivery-preview article {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(200, 242, 74, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.analysis-delivery-preview small,
.analysis-delivery-preview strong {
  display: block;
}

.analysis-delivery-preview small {
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
}

.analysis-delivery-preview strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.25;
}

.empty-state {
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.empty-report {
  min-height: 260px;
  display: grid;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background: #fbfdfb;
}

.empty-report-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.empty-report-copy small,
.empty-report-copy strong,
.empty-report-copy p {
  display: block;
}

.empty-report-copy small {
  color: var(--court);
  font-weight: 900;
}

.empty-report-copy strong {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.empty-report-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.empty-output-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.empty-output-list span {
  min-width: 0;
  padding: 13px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.empty-output-list b,
.empty-output-list em {
  display: block;
}

.empty-output-list b {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.empty-output-list em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.report-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 0 16px;
  padding: 20px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 107, 87, 0.08), rgba(200, 242, 74, 0.15)),
    #ffffff;
  box-shadow: 0 18px 38px rgba(11, 42, 34, 0.09);
}

.report-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.report-head p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.report-hero-v2 {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(380px, 1.1fr);
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 242, 0.94)),
    linear-gradient(90deg, rgba(18, 107, 87, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 107, 87, 0.05) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: 0 20px 44px rgba(11, 42, 34, 0.09);
}

.report-hero-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.hero-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-status-row span,
.hero-status-row em {
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.hero-status-row span {
  background: #10201d;
  color: #c8f24a;
  box-shadow: 0 9px 20px rgba(16, 32, 29, 0.12);
}

.hero-status-row em {
  border: 1px solid rgba(18, 107, 87, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--court);
}

.hero-verdict {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hero-verdict small,
.hero-verdict h2,
.hero-verdict p {
  display: block;
}

.hero-verdict small {
  color: var(--court);
  font-weight: 950;
}

.hero-verdict h2 {
  margin: 5px 0 0;
  color: #10201d;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
}

.hero-verdict p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-next-step {
  padding: 13px 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(200, 242, 74, 0.18), rgba(255, 255, 255, 0.88)),
    #f7fbf8;
}

.hero-next-step small,
.hero-next-step strong {
  display: block;
}

.hero-next-step small {
  color: var(--court);
  font-weight: 950;
}

.hero-next-step strong {
  margin-top: 5px;
  color: #172b24;
  line-height: 1.35;
}

.hero-truth-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(16, 32, 29, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.96), rgba(18, 107, 87, 0.9)),
    #10201d;
  box-shadow: 0 14px 28px rgba(16, 32, 29, 0.12);
}

.hero-truth-strip div {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-truth-strip small,
.hero-truth-strip b {
  display: block;
}

.hero-truth-strip small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 950;
}

.hero-truth-strip b {
  margin-top: 5px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.report-decision-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 248, 0.95)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.report-decision-panel.status-retake {
  border-color: rgba(200, 95, 50, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 248, 243, 0.98), rgba(255, 255, 255, 0.95)),
    #fff8f3;
}

.report-decision-panel.status-verified {
  border-color: rgba(18, 107, 87, 0.22);
  background:
    linear-gradient(135deg, rgba(239, 248, 242, 0.98), rgba(255, 255, 255, 0.95)),
    #eff8f2;
}

.decision-copy,
.decision-grid article {
  min-width: 0;
}

.decision-copy {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 4px 2px;
}

.decision-copy small,
.decision-copy strong,
.decision-copy p,
.decision-grid small,
.decision-grid b,
.decision-grid span {
  display: block;
}

.decision-copy small,
.decision-grid small {
  color: var(--court);
  font-size: 11px;
  font-weight: 950;
}

.decision-copy strong {
  color: #10201d;
  font-size: 20px;
  line-height: 1.12;
}

.decision-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.decision-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.decision-grid article {
  padding: 10px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.decision-grid b {
  margin-top: 5px;
  color: #10201d;
  font-size: 14px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.decision-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.34;
}

.hero-evidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hero-evidence-strip div {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-evidence-strip small,
.hero-evidence-strip b {
  display: block;
}

.hero-evidence-strip small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
}

.hero-evidence-strip b {
  margin-top: 4px;
  color: #172b24;
  font-size: 13px;
  line-height: 1.25;
}

.hero-actions-row {
  justify-content: start;
  gap: 8px;
}

.report-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 6px;
  background: #ffffff;
  color: var(--court);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(11, 42, 34, 0.05);
}

.hero-actions-row a:first-child {
  border-color: rgba(18, 107, 87, 0.24);
  background: #10201d;
  color: #ffffff;
}

.report-hero-media {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.report-hero-media.single-video {
  grid-template-columns: 1fr;
}

.report-hero-media article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 11px;
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 248, 0.92)),
    #ffffff;
  box-shadow: 0 16px 30px rgba(11, 42, 34, 0.08);
}

.report-hero-media small {
  display: block;
  color: #172b24;
  font-weight: 950;
}

.report-hero-media video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 520px;
  border-radius: 8px;
  background: #0f1b18;
  object-fit: contain;
}

.report-hero-media.single-video video {
  aspect-ratio: 16 / 9;
  max-height: 430px;
}

.media-detail-head {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18, 107, 87, 0.11);
}

.media-detail-head small,
.media-detail-head strong {
  display: block;
}

.media-detail-head small {
  color: var(--court);
  font-weight: 950;
}

.media-detail-head strong {
  margin-top: 3px;
  color: #172b24;
  font-size: 18px;
  line-height: 1.15;
}

.delivery-summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 14px;
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 107, 87, 0.07), rgba(255, 250, 240, 0.66)),
    #ffffff;
  box-shadow: 0 13px 28px rgba(11, 42, 34, 0.055);
}

.delivery-summary > span {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #10201d;
  color: #c8f24a;
  font-size: 12px;
  font-weight: 950;
}

.delivery-copy {
  min-width: 0;
  padding-right: 92px;
}

.delivery-copy small,
.delivery-copy strong,
.delivery-copy p {
  display: block;
}

.delivery-copy small {
  color: var(--court);
  font-weight: 950;
}

.delivery-copy strong {
  margin-top: 5px;
  color: #10201d;
  font-size: 24px;
  line-height: 1.08;
}

.delivery-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.delivery-metrics div {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.delivery-metrics div:first-child {
  border-color: rgba(200, 95, 50, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 246, 240, 0.86), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.delivery-metrics small,
.delivery-metrics b {
  display: block;
}

.delivery-metrics small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
}

.delivery-metrics b {
  margin-top: 4px;
  color: #172b24;
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.real-video-evaluation {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 242, 0.94)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(11, 42, 34, 0.07);
}

.real-video-evaluation.status-retake {
  border-color: rgba(200, 95, 50, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.real-video-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.real-video-head small,
.real-video-head strong,
.real-video-head p {
  display: block;
}

.real-video-head small {
  color: var(--court);
  font-weight: 950;
}

.real-video-head strong {
  margin-top: 4px;
  color: #10201d;
  font-size: 24px;
  line-height: 1.12;
}

.real-video-head p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.real-video-score {
  width: 104px;
  min-height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 8px;
  background: #10201d;
  color: #ffffff;
}

.real-video-score span,
.real-video-score b {
  display: block;
}

.real-video-score span {
  color: var(--lime);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.real-video-score b {
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
}

.real-video-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.real-video-kpis div,
.real-video-evidence article,
.real-video-bottom article {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.real-video-kpis small,
.real-video-kpis b,
.real-video-kpis span {
  display: block;
}

.real-video-kpis small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
}

.real-video-kpis b {
  margin-top: 4px;
  color: #10201d;
  line-height: 1.18;
}

.real-video-kpis span {
  margin-top: 3px;
  color: var(--court);
  font-size: 12px;
  font-weight: 900;
}

.real-video-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.real-video-evidence small,
.real-video-bottom small {
  display: block;
  margin-bottom: 8px;
  color: var(--court);
  font-size: 11px;
  font-weight: 950;
}

.real-video-evidence article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.real-video-evidence span,
.video-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef8f1;
  color: #172b24;
  font-size: 12px;
  font-weight: 900;
}

.real-video-evidence span b {
  margin-right: 4px;
  color: var(--court);
  font-size: 15px;
}

.real-video-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.real-video-bottom p {
  display: grid;
  gap: 2px;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(18, 107, 87, 0.09);
}

.real-video-bottom p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.real-video-bottom b,
.real-video-bottom span {
  display: block;
}

.real-video-bottom b {
  color: #10201d;
  line-height: 1.25;
}

.real-video-bottom span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.32;
}

.retest-loop {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 248, 242, 0.98), rgba(255, 255, 255, 0.96)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(11, 42, 34, 0.06);
}

.retest-loop-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 6px;
}

.retest-loop-copy small,
.retest-loop-copy strong,
.retest-loop-copy p {
  display: block;
}

.retest-loop-copy small {
  color: var(--court);
  font-size: 11px;
  font-weight: 950;
}

.retest-loop-copy strong {
  color: #10201d;
  font-size: 22px;
  line-height: 1.12;
}

.retest-loop-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.retest-loop-steps {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.retest-loop-steps article {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.retest-loop-steps span,
.retest-loop-steps b,
.retest-loop-steps em {
  display: block;
}

.retest-loop-steps span {
  width: 28px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10201d;
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
}

.retest-loop-steps b {
  margin-top: 8px;
  color: #10201d;
  line-height: 1.18;
}

.retest-loop-steps em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.32;
}

.retest-loop-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.retest-loop-actions button,
.retest-loop-actions a {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 10px 13px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.retest-loop-actions button {
  border: 1px solid #10201d;
  background: #10201d;
  color: #ffffff;
  cursor: pointer;
}

.retest-loop-actions a {
  border: 1px solid rgba(18, 107, 87, 0.16);
  background: #ffffff;
  color: var(--court);
}

.coach-brief {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(16, 32, 29, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #10201d, #126b57);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 32, 29, 0.13);
}

.coach-brief-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.coach-brief-head small,
.coach-brief-head strong,
.coach-brief-head span {
  display: block;
}

.coach-brief-head small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 950;
}

.coach-brief-head strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.18;
}

.coach-brief-head span {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(200, 242, 74, 0.16);
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

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

.coach-brief-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: start;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.coach-brief-grid article > span {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #10201d;
  font-size: 12px;
  font-weight: 950;
}

.coach-brief-grid small,
.coach-brief-grid strong,
.coach-brief-grid p {
  display: block;
}

.coach-brief-grid small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 950;
}

.coach-brief-grid strong {
  margin-top: 4px;
  color: #ffffff;
  line-height: 1.18;
}

.coach-brief-grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.42;
}

.coach-brief-proof {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid rgba(200, 242, 74, 0.18);
  border-radius: 8px;
  background: rgba(7, 22, 19, 0.28);
}

.coach-brief-proof small,
.coach-brief-proof b {
  display: block;
}

.coach-brief-proof small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 950;
}

.coach-brief-proof b {
  color: var(--lime);
  line-height: 1.32;
}

.feedback-reel {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: 14px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #10201d 0%, #126b57 54%, #1d4f72 100%);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 32, 29, 0.16);
}

.feedback-reel-stage,
.feedback-reel-copy {
  min-width: 0;
}

.reel-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #0b1513;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.reel-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1513;
  object-fit: contain;
}

.reel-chip,
.reel-callout {
  position: absolute;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.reel-chip {
  left: 12px;
  top: 12px;
  min-height: 28px;
  padding: 5px 10px;
  background: rgba(200, 242, 74, 0.92);
  color: #10201d;
}

.reel-callout {
  right: 12px;
  bottom: 12px;
  max-width: min(260px, calc(100% - 24px));
  min-height: 32px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.9);
  color: #172b24;
  text-align: center;
}

.feedback-reel-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.feedback-reel-copy .section-title span,
.feedback-reel-copy .section-title small {
  color: #ffffff;
}

.feedback-reel-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.52;
  font-weight: 750;
}

.reel-script {
  display: grid;
  gap: 9px;
}

.reel-script article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.reel-script article > span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(200, 242, 74, 0.14);
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
}

.reel-script small,
.reel-script strong,
.reel-script p {
  display: block;
}

.reel-script small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 950;
}

.reel-script strong {
  margin-top: 3px;
  color: #ffffff;
  line-height: 1.25;
}

.reel-script p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.42;
}

.media-review {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.05fr;
  gap: 14px;
  margin: 16px 0;
  align-items: start;
}

.media-review > div {
  border: 1px solid rgba(18, 107, 87, 0.15);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 248, 0.95)),
    #ffffff;
  box-shadow: 0 12px 24px rgba(11, 42, 34, 0.055);
}

.media-review small {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.media-review video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #0f1b18;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-stack {
  display: grid;
  gap: 8px;
}

.media-link,
.media-missing {
  display: block;
  padding: 10px 11px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background: #f7fbf8;
  color: var(--court);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.media-missing {
  color: var(--muted);
  background: #fbfdfb;
}

.task-status {
  display: grid;
  gap: 12px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background: #f7fbf8;
}

.task-status-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

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

.task-status-head span {
  color: var(--court);
  font-weight: 900;
}

.task-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfeae4;
}

.task-meter i {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--court), var(--lime));
}

.task-stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.task-stage-grid article {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  background: #ffffff;
}

.task-stage-grid article b,
.task-stage-grid article span,
.task-stage-grid article small {
  display: block;
}

.task-stage-grid article b {
  font-size: 13px;
  line-height: 1.25;
}

.task-stage-grid article span {
  margin-top: 6px;
  color: var(--court);
  font-size: 12px;
  font-weight: 900;
}

.task-stage-grid article small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.video-stack small:not(:first-child) {
  margin-top: 8px;
}

.quality-gate {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.quality-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.quality-head > strong {
  min-width: 62px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #10201d;
  color: #c8f24a;
  text-align: center;
}

.quality-gate.status-review .quality-head > strong {
  background: #fff2e7;
  color: var(--clay);
}

.quality-gate.status-retake .quality-head > strong {
  background: #ffecec;
  color: #b42318;
}

.quality-gate > p {
  margin: -4px 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.quality-checks {
  display: grid;
  gap: 8px;
}

.quality-checks article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.quality-checks article > span {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #eaf7ef;
  color: var(--court);
  font-size: 11px;
  font-weight: 900;
}

.quality-checks article.failed > span {
  background: #fff0e9;
  color: var(--clay);
}

.quality-checks strong,
.quality-checks small,
.quality-checks p {
  display: block;
}

.quality-checks small,
.quality-checks p {
  margin: 3px 0 0;
  color: var(--muted);
  line-height: 1.38;
}

.recognition-trust {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 242, 74, 0.18), rgba(36, 95, 206, 0.08)),
    #ffffff;
  box-shadow: 0 14px 28px rgba(11, 42, 34, 0.07);
}

.recognition-trust > p {
  margin: -4px 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}

.recognition-grid > div {
  min-height: 104px;
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 248, 0.92));
}

.recognition-grid small,
.recognition-grid b,
.recognition-grid span {
  display: block;
}

.recognition-grid small {
  color: var(--muted);
  font-weight: 800;
}

.recognition-grid b {
  margin: 5px 0;
  color: #10201d;
  font-size: 18px;
  line-height: 1.15;
}

.recognition-grid span {
  color: var(--court);
  line-height: 1.35;
}

.ai-coach-panel {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 245, 0.92)),
    #ffffff;
  box-shadow: 0 16px 32px rgba(11, 42, 34, 0.06);
}

.ai-coach-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18, 107, 87, 0.11);
}

.ai-coach-head small,
.ai-coach-head strong {
  display: block;
}

.ai-coach-head strong {
  margin-top: 3px;
  color: #10201d;
  font-size: 22px;
}

.ai-coach-head > span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #10201d;
  color: #c8f24a;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.ai-coach-panel.status-fallback .ai-coach-head > span {
  background: #fff2e7;
  color: var(--clay);
}

.ai-coach-panel > p {
  margin: 0 0 12px;
  color: #24352f;
  font-size: 17px;
  line-height: 1.56;
  font-weight: 780;
}

.ai-coach-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10px;
}

.ai-coach-grid > div {
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.ai-coach-grid small,
.ai-coach-grid b,
.ai-coach-grid span {
  display: block;
}

.ai-coach-grid small {
  margin-bottom: 7px;
  font-weight: 900;
}

.ai-coach-grid b {
  margin-top: 5px;
  color: var(--court);
  line-height: 1.35;
}

.ai-coach-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.ai-coach-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.ai-coach-evidence article,
.coach-language-board {
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.ai-coach-evidence small,
.ai-coach-evidence p {
  display: block;
}

.ai-coach-evidence small,
.coach-language-grid small {
  color: var(--court);
  font-weight: 900;
}

.ai-coach-evidence p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.profile-tags span {
  min-height: 26px;
  display: inline-grid;
  place-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  background: #f4faf6;
  color: var(--court);
  font-size: 12px;
  font-weight: 900;
}

.coach-language-board {
  margin-top: 10px;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.02), rgba(200, 242, 74, 0.07)),
    #ffffff;
}

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

.coach-language-grid article {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.coach-language-grid article.coach-cue {
  border-color: rgba(18, 107, 87, 0.28);
  background:
    linear-gradient(135deg, rgba(200, 242, 74, 0.15), rgba(255, 255, 255, 0.94)),
    #f7fbf8;
}

.coach-language-grid article.parent-note {
  grid-column: 1 / -1;
  background: #fffaf0;
  border-color: rgba(200, 95, 50, 0.2);
}

.coach-language-grid p {
  margin: 6px 0 0;
  color: #24352f;
  line-height: 1.45;
  font-weight: 760;
}

.progress-archive {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 8px;
  background: #fbfdfb;
}

.progress-archive.status-improved {
  border-color: rgba(18, 107, 87, 0.28);
  background: #f4fbf4;
}

.progress-archive.status-regressed {
  border-color: rgba(200, 95, 50, 0.32);
  background: #fff8f4;
}

.progress-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.6fr;
  gap: 10px;
}

.progress-grid div {
  min-width: 0;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.progress-grid small,
.progress-grid b {
  display: block;
}

.progress-grid b {
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.feedback-timeline {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.feedback-timeline > p {
  margin: -4px 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.feedback-story-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.feedback-story-head small,
.feedback-story-head strong,
.feedback-story-head p,
.feedback-story-head > span {
  display: block;
}

.feedback-story-head small {
  color: var(--court);
  font-weight: 950;
}

.feedback-story-head strong {
  margin-top: 3px;
  color: #15241f;
  font-size: 18px;
  line-height: 1.15;
}

.feedback-story-head p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.feedback-story-head > span {
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.feedback-studio,
.model-readiness {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 107, 87, 0.07), rgba(200, 242, 74, 0.13)),
    #ffffff;
  box-shadow: 0 14px 30px rgba(11, 42, 34, 0.06);
}

.model-readiness {
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.96), rgba(18, 107, 87, 0.9));
  color: #fff;
}

.feedback-studio > p,
.model-readiness > p {
  margin: -4px 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.model-readiness > p,
.model-readiness small {
  color: rgba(255, 255, 255, 0.72);
}

.model-readiness .section-title span {
  color: #fff;
}

.feedback-studio-grid,
.model-readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.feedback-studio-grid div,
.model-readiness-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.model-readiness-grid div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.feedback-studio-grid small,
.feedback-studio-grid b,
.feedback-studio-grid span,
.model-readiness-grid small,
.model-readiness-grid b,
.model-readiness-grid span {
  display: block;
}

.feedback-studio-grid small {
  color: var(--muted);
  font-weight: 900;
}

.feedback-studio-grid b,
.model-readiness-grid b {
  margin: 5px 0;
  color: var(--court);
  font-size: 20px;
  line-height: 1.12;
}

.model-readiness-grid b {
  color: var(--lime);
  overflow-wrap: anywhere;
}

.feedback-studio-grid span {
  color: var(--muted);
  font-weight: 800;
}

.model-readiness-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.real-pose-browser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.real-pose-browser strong,
.real-pose-browser span,
.real-pose-status {
  display: block;
}

.real-pose-browser strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.real-pose-browser span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.42;
  font-weight: 760;
}

.real-pose-browser button {
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: #10201d;
  font-weight: 950;
  cursor: pointer;
}

.real-pose-browser button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.real-pose-status {
  grid-column: 1 / -1;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(7, 22, 19, 0.36);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.real-pose-stage {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.real-pose-stage:empty {
  display: none;
}

.real-pose-stage figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.real-pose-stage canvas {
  display: block;
  width: 100%;
  height: auto;
}

.real-pose-stage figcaption {
  padding: 8px 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
}

.timeline-rail {
  display: grid;
  gap: 9px;
}

.timeline-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.timeline-rail article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--court), var(--lime));
}

.timeline-rail article > span {
  align-self: start;
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 8px;
  background: #10201d;
  color: #c8f24a;
  font-size: 12px;
  font-weight: 900;
}

.timeline-rail article > span b,
.timeline-rail article > span em {
  display: block;
}

.timeline-rail article > span b {
  font-size: 18px;
  line-height: 1;
}

.timeline-rail article > span em {
  margin-top: 3px;
  color: #ffffff;
  font-size: 11px;
  font-style: normal;
}

.timeline-rail strong,
.timeline-rail small,
.timeline-rail p,
.timeline-rail em {
  display: block;
}

.timeline-rail strong {
  line-height: 1.25;
}

.timeline-rail small {
  margin-top: 8px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
}

.timeline-rail p,
.timeline-rail em {
  margin: 3px 0 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.4;
}

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

.keyframe-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(11, 42, 34, 0.05);
}

.keyframe-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #10201d;
}

.keyframe-grid figcaption {
  padding: 7px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.muted {
  color: var(--muted);
}

.score-ring {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 52%, transparent 53%),
    conic-gradient(var(--court) var(--score), #e8eee9 0);
  box-shadow: 0 13px 28px rgba(18, 107, 87, 0.14);
}

.score-ring span {
  display: block;
  color: var(--clay);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.score-ring em {
  display: block;
  max-width: 78px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.meta-row,
.phase-grid,
.issue-grid,
.drill-list {
  display: grid;
  gap: 10px;
}

.meta-row {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
}

.meta-row div,
.phase,
.issue,
.reference-card {
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
}

.meta-row b,
.phase b {
  display: block;
  font-size: 18px;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.report-actions button {
  padding: 8px 11px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--court);
  font-weight: 900;
  cursor: pointer;
}

.report-actions span {
  color: var(--muted);
  font-weight: 800;
}

.phase-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 16px 0;
}

.phase-scoreboard {
  padding: 10px;
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.96), rgba(18, 107, 87, 0.92));
  box-shadow: 0 16px 32px rgba(16, 32, 29, 0.12);
}

.phase-scoreboard .phase {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.phase-scoreboard small,
.phase-scoreboard span {
  color: rgba(248, 255, 248, 0.68);
}

.phase-scoreboard b {
  color: var(--lime);
  font-size: 28px;
}

.phase-scoreboard span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 850;
}

.report-delivery-stack {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.score-ladder {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 1.08fr);
  gap: 14px;
  align-items: stretch;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 246, 0.96)),
    #ffffff;
  box-shadow: 0 13px 28px rgba(16, 32, 29, 0.07);
}

.score-ladder.band-foundation,
.score-ladder.band-building {
  border-color: rgba(200, 95, 50, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 240, 0.92)),
    #ffffff;
}

.score-ladder.band-stable,
.score-ladder.band-strong {
  border-color: rgba(18, 107, 87, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 251, 232, 0.92)),
    #ffffff;
}

.score-ladder-copy small,
.score-ladder-copy strong,
.score-ladder-copy p {
  display: block;
}

.score-ladder-copy small,
.score-ladder-grid small {
  color: var(--muted);
  font-weight: 900;
}

.score-ladder-copy strong {
  margin-top: 4px;
  color: #10201d;
  font-size: 23px;
  line-height: 1.2;
}

.score-ladder-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.score-ladder-track {
  align-self: center;
}

.ladder-scale {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.ladder-scale span:not(:first-child) {
  text-align: center;
}

.score-ladder-track > i {
  position: relative;
  display: block;
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #f4ece8 0 40%, #edf4ef 40% 55%, #e2f0e8 55% 70%, #d8eadf 70% 85%, #d9f5a6 85% 100%);
  box-shadow: inset 0 0 0 1px rgba(16, 32, 29, 0.06);
}

.score-ladder-track > i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  background: linear-gradient(90deg, #c85f32, #126b57, #c8f24a);
}

.score-ladder-track > i::after {
  content: "";
  position: absolute;
  top: -5px;
  left: calc(var(--score) - 6px);
  width: 12px;
  height: 28px;
  border-radius: 999px;
  background: #10201d;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.score-ladder-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.6fr;
  gap: 10px;
}

.score-ladder-grid > div {
  min-height: 84px;
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.score-ladder-grid b,
.score-ladder-grid span {
  display: block;
}

.score-ladder-grid b {
  margin-top: 6px;
  color: #10201d;
  line-height: 1.25;
}

.score-ladder-grid span {
  margin-top: 4px;
  color: var(--court);
  font-weight: 900;
}

.report-coach-section {
  margin: 0;
}

.report-coach-section .ai-coach-panel {
  margin: 0;
}

.report-intelligence {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 16px 0;
}

.report-intelligence .recognition-trust {
  height: 100%;
  margin: 0;
}

.motion-profile {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 8px;
  background: #f7fbf8;
}

.motion-profile h3 {
  margin: 18px 0 10px;
}

.motion-summary {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.9fr;
  gap: 10px;
}

.motion-summary div,
.checkpoint-card,
.evidence-item,
.plan-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.motion-summary div {
  padding: 12px;
}

.motion-summary b,
.motion-summary span,
.motion-summary small {
  display: block;
}

.motion-summary b {
  margin: 4px 0;
  font-size: 17px;
}

.motion-summary span {
  color: var(--muted);
  line-height: 1.38;
}

.tennis-metrics {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 242, 0.96));
}

.tennis-metrics > p {
  margin: -4px 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.tennis-metrics.empty {
  background: rgba(255, 255, 255, 0.74);
}

.tennis-metric-summary {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.tennis-metric-summary div,
.tennis-metric-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.tennis-metric-summary div {
  padding: 11px;
}

.tennis-metric-summary small,
.tennis-metric-summary b,
.tennis-metric-summary span {
  display: block;
}

.tennis-metric-summary small {
  color: var(--court);
  font-weight: 950;
}

.tennis-metric-summary b {
  margin: 4px 0;
  color: #15241f;
  font-size: 18px;
  line-height: 1.15;
}

.tennis-metric-summary span {
  color: var(--muted);
  line-height: 1.35;
  font-weight: 800;
}

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

.tennis-metric-grid article {
  padding: 12px;
  box-shadow: 0 10px 22px rgba(11, 42, 34, 0.04);
}

.tennis-metric-grid article > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.tennis-metric-grid strong,
.tennis-metric-grid span,
.tennis-metric-grid b,
.tennis-metric-grid p,
.tennis-metric-grid small {
  display: block;
}

.tennis-metric-grid strong {
  color: #15241f;
  line-height: 1.2;
}

.tennis-metric-grid span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.tennis-metric-grid .metric-strong span {
  background: rgba(200, 242, 74, 0.28);
  color: #126b57;
}

.tennis-metric-grid .metric-risk span {
  background: rgba(200, 95, 50, 0.12);
  color: #b84f28;
}

.tennis-metric-grid b {
  margin: 8px 0 7px;
  color: #10201d;
  font-size: 24px;
  line-height: 1;
}

.tennis-metric-grid p {
  margin: 9px 0 6px;
  color: #2d4039;
  line-height: 1.42;
  font-weight: 820;
}

.tennis-metric-grid small {
  color: var(--muted);
  line-height: 1.36;
  font-weight: 780;
}

.metric-limitation {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.35;
}

.object-tracking {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.object-tracking > p {
  margin: -4px 0 10px;
  color: var(--muted);
  line-height: 1.42;
}

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

.object-tracking-grid div {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.object-tracking-grid small,
.object-tracking-grid b,
.object-tracking-grid span {
  display: block;
}

.object-tracking-grid small {
  color: var(--court);
  font-weight: 950;
}

.object-tracking-grid b {
  margin: 4px 0;
  color: #10201d;
  font-size: 19px;
  line-height: 1.12;
}

.object-tracking-grid span {
  color: var(--muted);
  line-height: 1.34;
  font-weight: 780;
}

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

.checkpoint-card {
  padding: 12px;
}

.checkpoint-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.checkpoint-top strong {
  line-height: 1.25;
}

.checkpoint-top span {
  min-width: 56px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.severity-high .checkpoint-top span {
  background: #fff0e9;
  color: var(--clay);
}

.mini-meter {
  height: 8px;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eee9;
}

.mini-meter i {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--clay), var(--court));
}

.checkpoint-card p,
.checkpoint-card small,
.evidence-item p,
.evidence-item small,
.plan-step p,
.plan-step small {
  color: var(--muted);
  line-height: 1.45;
}

.checkpoint-card p {
  margin: 0 0 8px;
}

.evidence-list,
.plan-list {
  display: grid;
  gap: 10px;
}

.evidence-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
}

.evidence-item img,
.evidence-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 7px;
  object-fit: cover;
  background: #0f1b18;
}

.evidence-frame {
  overflow: hidden;
  border-radius: 7px;
  background: #0f1b18;
}

.evidence-frame img {
  display: block;
  object-fit: cover;
}

.evidence-placeholder {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.evidence-item p {
  margin: 5px 0;
}

.plan-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 12px;
}

.plan-step > span {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--court);
  color: #fff;
  font-weight: 900;
}

.plan-step p {
  margin: 5px 0;
}

.prescription-actions {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: 8px;
  background: #fbfdfb;
}

.prescription-actions > p {
  margin: -4px 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

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

.action-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.action-grid span {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--court);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.action-grid strong,
.action-grid p,
.action-grid small {
  display: block;
}

.action-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.action-grid small {
  color: var(--clay);
  font-weight: 900;
  line-height: 1.35;
}

.action-grid button {
  justify-self: start;
  margin-top: 2px;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: #10201d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.intent-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--court);
  font-weight: 900;
  line-height: 1.4;
}

.training-pack {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(36, 95, 206, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.training-pack > p {
  margin: -4px 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.pack-meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  margin-bottom: 10px;
}

.pack-meta div {
  padding: 11px;
  border: 1px solid rgba(36, 95, 206, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.pack-meta small,
.pack-meta b {
  display: block;
}

.pack-meta b {
  margin-top: 3px;
}

.pack-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.pack-days article {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pack-days article.retest-day {
  border-color: rgba(200, 95, 50, 0.42);
  background: #fff8f4;
}

.pack-days span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.pack-days strong {
  line-height: 1.25;
}

.pack-days p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.pack-days small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.3;
}

.pack-days .retest-day small:last-child {
  color: var(--clay);
  font-weight: 900;
}

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

.issue strong {
  display: block;
  margin-bottom: 8px;
}

.issue p,
.reference-card p,
.correction-copy p,
.drill-list li {
  color: var(--muted);
  line-height: 1.5;
}

.correction-demo {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, #fcfff8, #f4fbf7);
}

.correction-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.08fr) 0.92fr;
  gap: 14px;
  align-items: stretch;
}

.correction-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(19, 32, 28, 0.1);
  background: #0f1b18;
}

.correction-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-badge,
.video-callout {
  position: absolute;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(19, 32, 28, 0.16);
}

.video-badge {
  left: 12px;
  top: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--court);
}

.video-callout {
  max-width: 55%;
  color: #fff;
}

.callout-wrong {
  left: 12px;
  bottom: 12px;
  background: rgba(200, 95, 50, 0.9);
}

.callout-good {
  right: 12px;
  bottom: 12px;
  background: rgba(18, 107, 87, 0.92);
}

.correction-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.pending-note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #edf6ff;
  color: #245fce !important;
  font-weight: 800;
}

.compare-row {
  border: 1px solid rgba(200, 95, 50, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: #fff8f3;
}

.compare-row.good {
  border-color: rgba(18, 107, 87, 0.22);
  background: #f1fbf5;
}

.compare-row strong,
.compare-row span {
  display: block;
}

.compare-row span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.library {
  margin-top: 18px;
}

.value-flow {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(19, 32, 28, 0.06);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.flow-grid article {
  min-width: 140px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fcfdfb;
}

.flow-grid span,
.flow-grid strong,
.flow-grid p {
  display: block;
}

.flow-grid span {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ef;
  color: var(--court);
  font-size: 12px;
  font-weight: 900;
}

.flow-grid strong {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.25;
}

.flow-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.dispatch-layer {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(19, 32, 28, 0.06);
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 10px;
}

.dispatch-grid article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fcfdfb;
}

.dispatch-grid span,
.dispatch-grid strong,
.dispatch-grid p {
  display: block;
}

.dispatch-grid span {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eaf3ef;
  color: var(--court);
  font-size: 12px;
  font-weight: 900;
}

.dispatch-grid strong {
  font-size: 15px;
  line-height: 1.25;
}

.dispatch-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.history {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(19, 32, 28, 0.06);
}

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

.history-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fcfdfb;
}

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

.history-item span,
.history-empty {
  color: var(--muted);
}

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

.profile-summary {
  display: grid;
  gap: 12px;
}

.profile-command {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(150px, 0.42fr) minmax(300px, 0.9fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(16, 32, 29, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #10201d, #126b57);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 32, 29, 0.13);
}

.profile-command-main {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 7px;
}

.profile-command-main small,
.profile-command-main strong,
.profile-command-main p {
  display: block;
}

.profile-command-main small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 950;
}

.profile-command-main strong {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.06;
}

.profile-command-main p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.profile-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.profile-command-actions a {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.profile-command-actions a:first-child {
  border-color: rgba(200, 242, 74, 0.72);
  background: var(--lime);
  color: #10201d;
}

.profile-command-ring {
  min-width: 0;
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, #10201d 0 56%, transparent 57%),
    conic-gradient(var(--lime) var(--progress), rgba(255, 255, 255, 0.13) 0);
}

.profile-command-ring span,
.profile-command-ring b,
.profile-command-ring em {
  display: block;
}

.profile-command-ring span,
.profile-command-ring em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.profile-command-ring b {
  color: var(--lime);
  font-size: 34px;
  line-height: 1;
}

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

.profile-command-grid article {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.profile-command-grid small,
.profile-command-grid b,
.profile-command-grid span {
  display: block;
}

.profile-command-grid small,
.profile-command-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.profile-command-grid b {
  margin: 5px 0 4px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.profile-growth {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(220px, 0.8fr) minmax(320px, 1.58fr);
  gap: 10px;
}

.profile-level-card,
.profile-streak-card,
.profile-path-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.profile-level-card {
  display: grid;
  align-content: start;
  gap: 8px;
  background:
    linear-gradient(135deg, #172b24, #126b57);
  color: #ffffff;
}

.profile-level-card small,
.profile-level-card strong,
.profile-level-card span,
.profile-streak-card small,
.profile-streak-card b,
.profile-streak-card span {
  display: block;
}

.profile-level-card small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 950;
}

.profile-level-card strong {
  color: var(--lime);
  font-size: 36px;
  line-height: 0.95;
}

.profile-level-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
}

.profile-level-card i {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.profile-level-card i::before {
  content: "";
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.profile-streak-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  background:
    linear-gradient(135deg, rgba(46, 119, 184, 0.08), rgba(200, 242, 74, 0.1)),
    #ffffff;
}

.profile-streak-card div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(18, 107, 87, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.profile-streak-card small {
  color: var(--muted);
  font-weight: 950;
}

.profile-streak-card b {
  margin-top: 5px;
  color: var(--court);
  font-size: 26px;
  line-height: 1;
}

.profile-streak-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.profile-path-card {
  display: grid;
  gap: 12px;
}

.profile-skill-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.profile-skill-path article {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 10px 7px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #f8fbf8;
  text-align: center;
}

.profile-skill-path article::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 18px);
  width: calc(100% - 28px);
  height: 3px;
  background: rgba(18, 107, 87, 0.12);
}

.profile-skill-path article:last-child::after {
  display: none;
}

.profile-skill-path span {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8eee9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  z-index: 1;
}

.profile-skill-path strong {
  color: #172b24;
  font-size: 12px;
  line-height: 1.22;
}

.profile-skill-path article.is-done {
  background: #f2fbf4;
}

.profile-skill-path article.is-done span {
  background: var(--court);
  color: #ffffff;
}

.profile-skill-path article.is-done::after {
  background: var(--court);
}

.profile-skill-path article.is-active {
  border-color: rgba(200, 95, 50, 0.28);
  background: #fffaf0;
}

.profile-skill-path article.is-active span {
  background: var(--lime);
  color: #10201d;
}

.profile-skill-path article.is-locked {
  opacity: 0.72;
}

.practice-reward,
.daily-plan,
.badge-wall {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.94)),
    #ffffff;
}

.practice-reward {
  grid-template-columns: minmax(0, 1.25fr) minmax(140px, 0.75fr);
  border-color: rgba(16, 32, 29, 0.16);
  background:
    linear-gradient(135deg, #10201d, #126b57);
  color: #ffffff;
}

.practice-reward small,
.practice-reward strong,
.practice-reward span,
.practice-reward b {
  display: block;
}

.practice-reward small,
.practice-reward span {
  color: rgba(255, 255, 255, 0.7);
}

.practice-reward strong,
.practice-reward b {
  margin-top: 5px;
  color: var(--lime);
  font-size: 28px;
  line-height: 1;
}

.daily-plan.is-complete {
  border-color: rgba(18, 107, 87, 0.24);
  background:
    linear-gradient(135deg, rgba(242, 251, 244, 0.98), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.daily-plan-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
  gap: 10px;
}

.daily-plan-card > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.daily-plan-card small,
.daily-plan-card strong,
.daily-plan-card p,
.daily-plan-card b,
.daily-plan-card span {
  display: block;
}

.daily-plan-card small {
  color: var(--muted);
  font-weight: 950;
}

.daily-plan-card strong {
  margin-top: 5px;
  color: #172b24;
  font-size: 18px;
  line-height: 1.2;
}

.daily-plan-card p,
.daily-plan-card span {
  color: var(--muted);
  line-height: 1.42;
}

.daily-plan-card p {
  margin: 7px 0 0;
}

.daily-plan-card b {
  margin-top: 6px;
  color: var(--court);
  font-size: 22px;
  line-height: 1;
}

.daily-plan-progress {
  display: grid;
  gap: 7px;
}

.daily-plan-progress > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.daily-plan-progress i {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4eee8;
}

.daily-plan-progress b {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--court), var(--lime));
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.badge-grid article {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 10px 7px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.badge-grid article > span {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef8f1;
  color: var(--court);
  font-size: 11px;
  font-weight: 950;
}

.badge-grid strong,
.badge-grid small {
  display: block;
}

.badge-grid strong {
  color: #172b24;
  font-size: 12px;
  line-height: 1.2;
}

.badge-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.badge-grid article.is-unlocked {
  background: #f4fbf6;
}

.badge-grid article.is-unlocked > span {
  background: var(--court);
  color: #ffffff;
}

.badge-grid article.is-locked {
  opacity: 0.66;
}

.next-milestone,
.weekly-rhythm,
.profile-foundation-preview {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.94)),
    #ffffff;
}

.next-milestone {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
  align-items: center;
  border-color: rgba(200, 95, 50, 0.18);
  background:
    linear-gradient(135deg, #fffaf4, #ffffff);
}

.next-milestone small,
.next-milestone strong,
.next-milestone span {
  display: block;
}

.next-milestone small {
  color: var(--muted);
  font-weight: 950;
}

.next-milestone strong {
  margin-top: 5px;
  color: #172b24;
  font-size: 22px;
  line-height: 1.15;
}

.next-milestone span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 850;
}

.next-milestone i {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(200, 95, 50, 0.12);
}

.next-milestone i b {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--clay), var(--lime));
}

.week-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.week-rhythm-grid article {
  min-width: 0;
  display: grid;
  grid-template-rows: 82px auto auto auto;
  gap: 5px;
  justify-items: center;
  padding: 10px 6px;
  border: 1px solid rgba(18, 107, 87, 0.1);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.week-rhythm-grid article.is-complete {
  border-color: rgba(18, 107, 87, 0.22);
  background: #f4fbf6;
}

.week-rhythm-grid i {
  width: 100%;
  height: 82px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 5px;
  border-radius: 8px;
  background: #edf4ee;
}

.week-rhythm-grid i b {
  width: 24px;
  height: var(--height, 8%);
  min-height: 8px;
  border-radius: 999px 999px 6px 6px;
  background: #d6ded8;
}

.week-rhythm-grid article.is-complete i b {
  background: linear-gradient(180deg, var(--lime), var(--court));
}

.week-rhythm-grid strong,
.week-rhythm-grid span,
.week-rhythm-grid small {
  display: block;
}

.week-rhythm-grid strong {
  color: #172b24;
  font-size: 12px;
}

.week-rhythm-grid span {
  color: var(--court);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.week-rhythm-grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.profile-foundation-preview {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background:
    linear-gradient(135deg, #10201d, #126b57);
  color: #ffffff;
}

.profile-foundation-preview small,
.profile-foundation-preview strong,
.profile-foundation-preview p {
  display: block;
}

.profile-foundation-preview small,
.profile-foundation-preview p {
  color: rgba(255, 255, 255, 0.7);
}

.profile-foundation-preview strong {
  margin-top: 6px;
  color: var(--lime);
  font-size: 28px;
  line-height: 1.08;
}

.profile-foundation-preview p {
  margin: 8px 0 0;
  line-height: 1.5;
}

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

.foundation-preview-grid article {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.foundation-preview-grid span {
  width: 28px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #10201d;
  font-size: 12px;
  font-weight: 950;
}

.foundation-preview-grid strong {
  color: #ffffff;
  font-size: 15px;
}

.profile-missions {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 248, 0.94)),
    #ffffff;
}

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

.profile-mission-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.profile-mission-grid article > span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef8f1;
  color: var(--court);
  font-size: 15px;
  font-weight: 950;
}

.profile-mission-grid small,
.profile-mission-grid strong,
.profile-mission-grid p {
  display: block;
}

.profile-mission-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
}

.profile-mission-grid strong {
  margin-top: 5px;
  color: #172b24;
  line-height: 1.22;
}

.profile-mission-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.profile-mission-grid article.mission-active {
  border-color: rgba(200, 95, 50, 0.22);
  background: #fffaf4;
}

.profile-mission-grid article.mission-active > span {
  background: var(--lime);
  color: #10201d;
}

.profile-mission-grid article.mission-done {
  border-color: rgba(18, 107, 87, 0.22);
  background: #f4fbf6;
}

.profile-mission-grid article.mission-done > span {
  background: var(--court);
  color: #ffffff;
}

.profile-mission-grid article.mission-locked {
  opacity: 0.76;
}

.profile-practice,
.profile-highlights,
.profile-evolution {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.94)),
    #ffffff;
}

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

.practice-stats div {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #f7fbf8;
}

.practice-stats small,
.practice-stats b {
  display: block;
}

.practice-stats small {
  color: var(--muted);
  font-weight: 950;
}

.practice-stats b {
  margin-top: 5px;
  color: var(--court);
  font-size: 28px;
  line-height: 1;
}

.practice-form {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.72fr;
  gap: 10px;
  align-items: end;
}

.practice-form label {
  margin: 0;
}

.practice-form .practice-note {
  grid-column: 1 / -1;
}

.practice-form button {
  grid-column: 1 / -1;
}

.practice-form > small {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--court);
  font-weight: 900;
}

.profile-invite-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(16, 32, 29, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #10201d, #126b57);
  color: #ffffff;
}

.profile-invite-card small,
.profile-invite-card strong,
.profile-invite-card span,
.profile-invite-card b {
  display: block;
}

.profile-invite-card small,
.profile-invite-card span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

.profile-invite-card strong {
  margin: 6px 0;
  color: var(--lime);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
}

.profile-invite-card b {
  margin: 5px 0 10px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.profile-invite-card button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

.highlight-strip a,
.evolution-grid a {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.highlight-strip img,
.evolution-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 7px;
  background: #10201d;
  object-fit: cover;
}

.highlight-strip a > span,
.evolution-grid a > span {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #10201d;
  color: var(--lime);
  font-size: 28px;
  font-weight: 950;
}

.highlight-strip strong,
.highlight-strip small,
.evolution-grid strong,
.evolution-grid small {
  display: block;
}

.highlight-strip strong,
.evolution-grid strong {
  color: #172b24;
  line-height: 1.2;
}

.highlight-strip small,
.evolution-grid small {
  color: var(--muted);
  font-weight: 850;
}

.highlight-strip p,
.profile-evolution > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.evolution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.52fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.evolution-grid > div {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(200, 95, 50, 0.18);
  border-radius: 8px;
  background: #fffaf4;
}

.evolution-grid > div small,
.evolution-grid > div b,
.evolution-grid > div span {
  display: block;
}

.evolution-grid > div b {
  color: var(--clay);
  font-size: 34px;
  line-height: 1;
}

.evolution-grid > div span {
  color: var(--muted);
  font-weight: 900;
}

.profile-hero {
  display: grid;
  grid-template-columns: 0.72fr 1.45fr 1fr;
  gap: 10px;
}

.profile-score-card,
.profile-trend-card,
.profile-next-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.profile-score-card {
  background:
    linear-gradient(135deg, #10201d, #126b57);
  color: #ffffff;
}

.profile-score-card small,
.profile-score-card strong,
.profile-score-card span,
.profile-next-card small,
.profile-next-card strong,
.profile-next-card span,
.profile-trend-card small,
.profile-trend-card b {
  display: block;
}

.profile-score-card small,
.profile-trend-card small,
.profile-next-card small {
  color: var(--muted);
  font-weight: 950;
}

.profile-score-card small,
.profile-score-card span {
  color: rgba(255, 255, 255, 0.72);
}

.profile-score-card strong {
  margin-top: 8px;
  color: #c8f24a;
  font-size: 46px;
  line-height: 0.95;
}

.profile-score-card span,
.profile-next-card span {
  margin-top: 8px;
  line-height: 1.35;
}

.profile-next-card strong {
  margin-top: 7px;
  color: #172b24;
  font-size: 18px;
  line-height: 1.18;
}

.profile-trend-card {
  display: grid;
  gap: 12px;
}

.profile-trend-card b {
  margin-top: 4px;
  color: #172b24;
}

.profile-trend-bars {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}

.profile-trend-bars i {
  min-width: 0;
  height: 92px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 5px;
  font-style: normal;
}

.profile-trend-bars i::before {
  content: "";
  width: 100%;
  height: max(14px, var(--score));
  border-radius: 7px 7px 4px 4px;
  background: linear-gradient(180deg, var(--lime), var(--court));
}

.profile-trend-bars b,
.profile-trend-bars em {
  display: block;
  font-size: 11px;
  line-height: 1.1;
}

.profile-trend-bars em {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.trend-empty {
  align-self: center;
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.profile-empty {
  padding: 18px;
  border: 1px dashed rgba(18, 107, 87, 0.22);
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

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

.profile-metrics div,
.profile-lists article {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  background: #ffffff;
}

.profile-metrics small,
.profile-metrics b,
.profile-metrics span,
.profile-lists small,
.profile-lists b,
.profile-lists span {
  display: block;
}

.profile-metrics b {
  margin-top: 4px;
  color: var(--court);
  font-size: 28px;
  line-height: 1;
}

.profile-metrics span,
.profile-lists span,
.profile-lists small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.profile-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.profile-lists article em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.profile-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.profile-chip-row span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef8f1;
  color: var(--court);
  font-size: 12px;
  font-weight: 950;
}

.profile-chip-row.issue span {
  background: #fff4ec;
  color: var(--clay);
}

.profile-chip-row b {
  min-width: 20px;
  min-height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: #172b24;
  font-size: 11px;
}

.commerce-board {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background: #f8fbf8;
  box-shadow: 0 14px 40px rgba(19, 32, 28, 0.05);
}

.operator-workbench .commerce-board {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: #fbfdfb;
  box-shadow: none;
}

.business-lab .value-flow,
.business-lab .dispatch-layer {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: #fbfdfb;
  box-shadow: none;
}

.business-lab .dispatch-layer {
  border-top: 1px solid rgba(18, 107, 87, 0.1);
}

.monetization-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.monetization-map article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.9));
}

.monetization-map small,
.monetization-map strong,
.monetization-map span {
  display: block;
}

.monetization-map small {
  color: var(--court);
  font-weight: 900;
}

.monetization-map strong {
  margin: 6px 0 5px;
  font-size: 24px;
  line-height: 1;
}

.monetization-map span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.38;
}

.operator-unlock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.operator-unlock strong,
.operator-unlock span {
  display: block;
}

.operator-unlock span {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.operator-unlock input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(18, 107, 87, 0.2);
  border-radius: 8px;
  padding: 0 11px;
  background: #f8fbf8;
  color: var(--ink);
  font: inherit;
}

.operator-unlock button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: #10201d;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.commerce-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.commerce-stats div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.commerce-stats small,
.commerce-stats b {
  display: block;
}

.commerce-stats b {
  margin-top: 3px;
  font-size: 21px;
}

.intent-list {
  display: grid;
  gap: 9px;
}

.intent-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.intent-list strong,
.intent-list span,
.intent-list em {
  display: block;
}

.intent-list span {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.intent-list em {
  color: var(--court);
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.intent-actions {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.intent-actions button {
  padding: 7px 9px;
  border: 0;
  border-radius: 8px;
  background: #10201d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.commerce-message {
  min-height: 22px;
  margin-top: 10px;
  color: var(--court);
  font-weight: 900;
  line-height: 1.4;
}

.commerce-message a {
  color: var(--blue);
  overflow-wrap: anywhere;
}

.settlement-desk {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.settlement-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.settlement-stats div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.settlement-stats small,
.settlement-stats b {
  display: block;
}

.settlement-stats b {
  margin-top: 3px;
  font-size: 21px;
}

.entitlement-list {
  display: grid;
  gap: 9px;
}

.entitlement-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.entitlement-list strong,
.entitlement-list span,
.entitlement-list small,
.entitlement-list em {
  display: block;
}

.entitlement-list span,
.entitlement-list small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.entitlement-list em {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.quality-desk {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.quality-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.quality-stats div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.quality-stats small,
.quality-stats b {
  display: block;
}

.quality-stats b {
  margin-top: 3px;
  font-size: 21px;
}

.model-eval-stats {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.model-eval-stats > div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.model-eval-stats small,
.model-eval-stats b,
.model-eval-stats strong,
.model-eval-stats span {
  display: block;
}

.model-eval-stats b {
  margin-top: 3px;
  font-size: 20px;
}

.model-eval-stats span {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.quality-queue {
  display: grid;
  gap: 9px;
}

.quality-queue article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.quality-queue strong,
.quality-queue span,
.quality-queue small,
.quality-queue em {
  display: block;
}

.quality-queue span,
.quality-queue small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.review-actions {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.review-actions em {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.review-actions button {
  min-width: 70px;
  padding: 7px 9px;
  border: 0;
  border-radius: 8px;
  background: #10201d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.review-actions button[data-review-status="rejected"] {
  background: #c85f32;
}

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

.knowledge-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.1fr;
  gap: 14px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid rgba(18, 107, 87, 0.16);
  border-radius: 8px;
  background: #fbfdfb;
}

.knowledge-panel small,
.knowledge-panel strong,
.knowledge-panel p {
  display: block;
}

.knowledge-panel small {
  color: var(--court);
  font-weight: 900;
}

.knowledge-panel strong {
  margin: 6px 0;
  font-size: 24px;
  line-height: 1.12;
}

.knowledge-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.knowledge-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.knowledge-layers span,
.knowledge-stats div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.knowledge-layers b,
.knowledge-layers em,
.knowledge-stats b,
.knowledge-stats span {
  display: block;
}

.knowledge-layers b {
  color: var(--ink);
  font-size: 14px;
}

.knowledge-layers em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.knowledge-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.knowledge-stats div {
  text-align: center;
}

.knowledge-stats b {
  color: var(--clay);
  font-size: 28px;
}

.knowledge-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

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

.dataset-roadmap article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(18, 107, 87, 0.13);
  border-radius: 8px;
  background: #ffffff;
}

.dataset-roadmap span {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--court);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.dataset-roadmap strong,
.dataset-roadmap p {
  display: block;
}

.dataset-roadmap p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.clip-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.clip-card > small {
  display: block;
  margin-bottom: 8px;
  color: var(--court);
  font-weight: 900;
}

.clip-card p {
  color: var(--muted);
  line-height: 1.5;
}

.clip-tags {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.clip-tags em {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 6px 6px 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eaf3ef;
  color: var(--court);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .workspace,
  .report-intelligence {
    grid-template-columns: 1fr;
  }

  .tool {
    position: static;
  }

  .studio-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .meta-row,
  .phase-grid,
  .motion-summary,
  .tennis-metric-summary,
  .tennis-metric-grid,
  .object-tracking-grid,
  .recognition-grid,
  .ai-coach-grid,
  .ai-coach-evidence,
  .coach-language-grid,
  .feedback-reel,
  .feedback-studio-grid,
  .coach-brief-grid,
  .model-readiness-grid,
  .real-pose-browser,
  .real-pose-stage,
  .checkpoint-grid,
  .issue-grid,
  .action-grid,
  .progress-grid,
  .commerce-stats,
  .monetization-map,
  .settlement-stats,
  .quality-stats,
  .model-eval-stats,
  .pack-meta,
  .pack-days,
  .flow-grid,
  .dispatch-grid,
  .knowledge-panel,
  .knowledge-layers,
  .knowledge-stats,
  .dataset-roadmap,
  .clip-grid,
  .media-review,
  .keyframe-grid,
  .correction-grid,
  .score-ladder,
  .score-ladder-grid,
  .account-panel,
  .report-hero-v2,
  .retest-loop,
  .real-video-head,
  .real-video-kpis,
  .real-video-evidence,
  .real-video-bottom,
  .hero-truth-strip,
  .report-decision-panel,
  .hero-evidence-strip,
  .delivery-summary,
  .delivery-metrics,
  .profile-hero,
  .profile-command,
  .profile-growth,
  .profile-mission-grid,
  .practice-reward,
  .daily-plan-card,
  .next-milestone,
  .profile-foundation-preview,
  .foundation-preview-grid,
  .analysis-delivery-preview,
  .badge-grid,
  .practice-stats,
  .practice-form,
  .profile-invite-card,
  .highlight-strip,
  .evolution-grid,
  .profile-metrics,
  .profile-lists,
  .profile-skill-path,
  .task-stage-grid {
    grid-template-columns: 1fr;
  }

  .hero-evidence-strip,
  .hero-truth-strip,
  .decision-grid,
  .delivery-metrics,
  .ai-coach-evidence,
  .real-video-kpis,
  .real-video-evidence,
  .real-video-bottom,
  .retest-loop-steps,
  .profile-command-grid,
  .score-ladder-grid,
  .coach-brief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .score-ladder-grid > div:last-child {
    grid-column: 1 / -1;
  }

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

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

  .practice-form label:first-child,
  .practice-form .practice-note,
  .practice-form button,
  .practice-form > small {
    grid-column: 1 / -1;
  }

  .profile-invite-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  }

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

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

  .week-rhythm-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .evolution-grid {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.52fr) minmax(0, 1fr);
  }

  .profile-skill-path article::after {
    top: auto;
    left: 24px;
    bottom: -8px;
    width: 3px;
    height: 8px;
  }

  .profile-streak-card {
    grid-template-columns: 1fr;
  }

  .history-item {
    grid-template-columns: 1fr;
  }

  .operator-unlock {
    grid-template-columns: 1fr;
  }

  .intent-list article {
    grid-template-columns: 1fr;
  }

  .quality-queue article {
    grid-template-columns: 1fr;
  }

  .entitlement-list article {
    grid-template-columns: 1fr;
  }

  .intent-actions {
    justify-items: start;
  }

  .review-actions {
    justify-items: start;
  }

  .evidence-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  #report {
    scroll-margin-top: 128px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    background: #f7faf4;
  }

  .topbar {
    position: sticky;
    gap: 10px;
    padding: 12px 16px 10px;
  }

  .topbar nav a {
    display: none;
  }

  .topbar nav {
    align-self: stretch;
    justify-content: flex-end;
  }

  .mobile-tabs {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(19, 32, 28, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 42px rgba(19, 32, 28, 0.16);
    backdrop-filter: blur(16px);
  }

  .mobile-tabs a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-tabs a.is-active {
    background: var(--court);
    color: #fff;
  }

  .report-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
  }

  .score-ring {
    width: 92px;
    justify-self: start;
  }

  .score-ring span {
    width: 68px;
    font-size: 26px;
  }

  .report-head h2 {
    font-size: 24px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .report-head p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-verdict {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-verdict h2 {
    font-size: 32px;
  }

  .hero-evidence-strip,
  .hero-truth-strip,
  .report-decision-panel,
  .decision-grid,
  .delivery-metrics,
  .ai-coach-evidence,
  .real-video-kpis,
  .real-video-evidence,
  .real-video-bottom,
  .retest-loop,
  .retest-loop-steps,
  .profile-command-grid,
  .score-ladder-grid,
  .coach-brief-grid {
    grid-template-columns: 1fr;
  }

  .real-video-head {
    grid-template-columns: 1fr;
  }

  .real-video-score {
    width: 100%;
    min-height: 82px;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: start;
    justify-items: start;
    padding: 14px;
  }

  .score-ladder-grid > div:last-child {
    grid-column: auto;
  }

  .practice-stats,
  .practice-form,
  .top-account-panel .account-form,
  .practice-reward,
  .daily-plan-card,
  .next-milestone,
  .profile-foundation-preview,
  .foundation-preview-grid,
  .profile-invite-card,
  .highlight-strip,
  .evolution-grid {
    grid-template-columns: 1fr;
  }

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

  .week-rhythm-grid {
    gap: 5px;
  }

  .week-rhythm-grid article {
    grid-template-rows: 58px auto auto auto;
    padding: 7px 4px;
  }

  .week-rhythm-grid i {
    height: 58px;
  }

  .report-hero-media {
    grid-template-columns: 1fr;
  }

  .report-hero-media video {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

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

  .analysis-progress-metrics {
    grid-template-columns: 1fr;
  }

  .profile-mission-grid article {
    grid-template-columns: 48px 1fr;
  }

  .profile-mission-grid article > span {
    min-height: 48px;
  }

  .delivery-summary > span {
    position: static;
    justify-self: start;
    order: -1;
  }

  .delivery-copy {
    padding-right: 0;
  }

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

  .meta-row div {
    padding: 10px;
  }

  .meta-row b {
    font-size: 16px;
    line-height: 1.2;
  }

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

  main {
    width: min(100% - 24px, 440px);
    margin-bottom: 26px;
  }

  .install-card {
    grid-template-columns: 1fr;
  }

  .install-card button {
    width: 100%;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding: 24px 0 18px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-copy p:last-child {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .primary-link,
  .text-link {
    flex: 1 1 100%;
  }

  .studio-strip {
    grid-template-columns: 1fr;
  }

  .studio-strip div {
    padding: 11px 12px;
  }

  .hero-panel {
    min-height: auto;
    margin-bottom: 8px;
    padding: 10px;
  }

  .dashboard-top {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: left;
  }

  .dashboard-top strong {
    text-align: left;
  }

  .motion-stage {
    min-height: 238px;
  }

  .hero-image {
    min-height: 238px;
    object-position: 60% 50%;
  }

  .dashboard-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .dashboard-metrics div {
    padding: 9px 8px;
  }

  .dashboard-metrics b {
    font-size: 19px;
  }

  .dashboard-metrics small,
  .dashboard-metrics span {
    font-size: 10px;
  }

  .insight-list span {
    min-height: 68px;
  }

  .workspace {
    gap: 14px;
  }

  .tool,
  .result,
  .library,
  .my-space-title,
  .history,
  .account-panel,
  .player-profile,
  .operator-workbench .commerce-board,
  .business-lab .value-flow,
  .business-lab .dispatch-layer {
    padding: 16px;
  }

  .operator-workbench summary,
  .business-lab summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
  }

  .operator-workbench summary small,
  .business-lab summary small {
    max-width: none;
    text-align: left;
  }

  .operator-workbench summary::after,
  .business-lab summary::after {
    position: absolute;
    right: 16px;
    top: 15px;
  }

  .auth-actions {
    grid-template-columns: 1fr;
  }

  .upload-box {
    min-height: 154px;
  }

  .empty-report {
    min-height: auto;
    padding: 18px;
  }

  .empty-output-list {
    grid-template-columns: repeat(2, 1fr);
  }

  input,
  select,
  textarea {
    min-height: 46px;
    font-size: 16px;
  }

  textarea {
    min-height: 112px;
  }

  .primary {
    min-height: 52px;
  }

  .section-title {
    align-items: flex-start;
  }

  .section-title small {
    line-height: 1.35;
  }

  .score-chip {
    right: 14px;
    bottom: 14px;
    padding: 8px 10px;
  }

  .score-chip span:first-child {
    font-size: 24px;
  }

  .scan-chip {
    left: 12px;
    bottom: 14px;
    max-width: 42%;
    padding: 8px 9px;
    overflow: hidden;
    white-space: nowrap;
  }
}
