@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/BricolageGrotesque-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.dashboard-content.is-billing-page {
  padding: 34px;
}

.billing-page {
  display: grid;
  gap: 28px;
}

.billing-heading {
  max-width: 700px;
}

.billing-heading h1,
.billing-status-card h1,
.billing-notice h1,
.billing-notice h2 {
  margin: 0;
  line-height: 1.08;
}

.billing-heading h1 {
  font-size: clamp(30px, 4vw, 40px);
}

.billing-heading p,
.billing-status-card p,
.billing-notice p,
.billing-plan-card p {
  margin: 8px 0 0;
  color: var(--dashboard-muted);
}

.billing-eyebrow {
  margin: 0 0 5px !important;
  color: var(--dashboard-green) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.billing-plan-grid,
.billing-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.billing-plan-card,
.billing-summary-grid article,
.billing-notice,
.billing-status-card {
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: #ffffff;
}

.billing-plan-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 24px;
}

.billing-plan-card.is-featured {
  border: 2px solid var(--dashboard-green);
}

.billing-plan-card h2 {
  margin: 0;
  font-size: 24px;
}

.billing-price strong {
  color: var(--dashboard-text);
  font-size: 30px;
}

.billing-plan-button,
.billing-primary,
.billing-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid var(--dashboard-green);
  border-radius: 11px;
  font-weight: 700;
  cursor: pointer;
}

.billing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.billing-actions .billing-primary,
.billing-actions .billing-secondary {
  margin-top: 0;
}

.billing-plan-button,
.billing-primary {
  margin-top: auto;
  background: var(--dashboard-green);
  color: #ffffff;
}

.billing-secondary {
  width: fit-content;
  margin-top: 16px;
  background: #ffffff;
  color: var(--dashboard-green);
}

.billing-plan-button:disabled,
.billing-primary:disabled {
  border-color: #9b9b9b;
  background: #9b9b9b;
  cursor: wait;
}

.billing-secondary:disabled {
  border-color: #9b9b9b;
  color: #777777;
  cursor: wait;
}

.billing-summary-grid article {
  min-width: 0;
  padding: 20px;
}

.billing-summary-grid span,
.billing-summary-grid strong {
  display: block;
}

.billing-summary-grid span {
  color: var(--dashboard-muted);
  font-size: 13px;
}

.billing-summary-grid strong {
  margin-top: 5px;
  overflow-wrap: anywhere;
  font-size: 18px;
}

.billing-notice,
.billing-status-card {
  padding: 24px;
}

.billing-notice.is-warning {
  border-color: #f2c94c;
  background: #fffbeb;
}

.billing-notice.is-danger {
  border-color: #f0a39c;
  background: #fff4f2;
}

.billing-status-card {
  min-height: 260px;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.billing-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(2, 154, 66, 0.2);
  border-top-color: var(--dashboard-green);
  border-radius: 50%;
  animation: report-spinner 700ms linear infinite;
}

@media (max-width: 900px) {
  .billing-plan-grid,
  .billing-summary-grid {
    grid-template-columns: 1fr;
  }
}

@font-face {
  font-family: "Kalam";
  src: url("/assets/fonts/Kalam-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/BricolageGrotesque-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dashboard-bg: #fafafa;
  --dashboard-panel: #ffffff;
  --dashboard-border: #e7e7e7;
  --dashboard-line: #e0e0e0;
  --dashboard-green: #029a42;
  --dashboard-text: #000000;
  --dashboard-muted: #555555;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--dashboard-bg);
  color: var(--dashboard-text);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.dashboard-auth-checking #dashboardApp {
  visibility: hidden;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.dashboard-frame,
.dashboard-footer {
  width: min(100% - 56px, 1210px);
  margin-right: auto;
  margin-left: auto;
}

.dashboard-frame {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  min-height: calc(100vh - 230px);
  margin-top: 28px;
}

.dashboard-sidebar,
.dashboard-header,
.dashboard-content {
  border: 1px solid var(--dashboard-border);
  background: var(--dashboard-panel);
}

.dashboard-sidebar {
  display: flex;
  min-width: 0;
  min-height: 770px;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0 4px 16px;
  border-bottom: 1px solid var(--dashboard-line);
}

.sidebar-brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.sidebar-brand-copy {
  min-width: 0;
}

.sidebar-brand-name {
  width: 132px;
  height: auto;
}

.sidebar-brand-copy p {
  margin: 1px 0 0;
  font-size: 15px;
  line-height: 1;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.dashboard-nav-link,
.add-scans-button {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.dashboard-nav-link {
  padding: 0 12px;
  transition: background-color 160ms ease, color 160ms ease;
}

.dashboard-nav-link:hover {
  background: #f0fbf2;
}

.dashboard-nav-link.is-active {
  background: var(--dashboard-green);
  color: #ffffff;
}

.dashboard-nav-link img,
.add-scans-button img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.dashboard-nav-link.is-active img {
  filter: brightness(0) invert(1);
}

.sidebar-bottom {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.sidebar-plan {
  text-align: center;
}

.sidebar-plan strong,
.sidebar-plan span {
  display: block;
}

.sidebar-plan strong {
  color: var(--dashboard-green);
  font-size: 19px;
}

.sidebar-plan span {
  margin-top: 1px;
  font-size: 13px;
}

.add-scans-button {
  justify-content: flex-start;
  padding: 0 8px;
  background: transparent;
  color: var(--dashboard-text);
  cursor: pointer;
}

.add-scans-button:hover {
  background: #f0fbf2;
}

.dashboard-workspace {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dashboard-header {
  position: relative;
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 28px;
  border-radius: 16px;
}

.header-account {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-plan {
  text-align: right;
}

.header-plan strong,
.header-plan span {
  display: block;
}

.header-plan strong {
  font-size: 15px;
}

.header-plan span {
  font-size: 13px;
}

.avatar-wrap {
  position: relative;
}

.avatar-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--dashboard-green);
  border-radius: 50%;
  background: #ffffff;
  color: var(--dashboard-text);
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.avatar-button:hover,
.avatar-button[aria-expanded="true"] {
  background: var(--dashboard-green);
  color: #ffffff;
}

.avatar-button:focus-visible,
.dashboard-nav-link:focus-visible,
.add-scans-button:focus-visible,
.user-menu button:focus-visible {
  outline: 3px solid rgba(2, 154, 66, 0.22);
  outline-offset: 2px;
}

.user-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  right: 0;
  width: 154px;
  padding: 8px;
  border: 1px solid var(--dashboard-border);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.user-menu[hidden] {
  display: none;
}

.user-menu button {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 7px;
  background: transparent;
  color: var(--dashboard-text);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.user-menu button:hover {
  background: #f0fbf2;
  color: var(--dashboard-green);
}

.user-menu button:disabled {
  color: #8d8d8d;
  cursor: wait;
}

.user-menu-message {
  margin: 6px 8px 4px;
  color: #b42318;
  font-size: 11px;
  line-height: 1.25;
}

.user-menu-message:empty {
  display: none;
}

.dashboard-content {
  min-height: 670px;
  margin-top: 20px;
  padding: 34px;
  border-radius: 16px;
}

.dashboard-placeholder {
  display: grid;
  min-height: 100%;
  align-content: start;
}

.dashboard-placeholder h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.05;
}

.dashboard-placeholder p {
  margin: 10px 0 0;
  color: var(--dashboard-muted);
  font-size: 16px;
}

.dashboard-content.is-analyze-flow {
  min-height: 670px;
  padding: 30px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.analyze-flow {
  min-width: 0;
}

.analyze-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.analyze-progress-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #9c9c9c;
  font-size: 14px;
  font-weight: 700;
}

.analyze-progress-number {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #b9b9b9;
  border-radius: 50%;
  background: var(--dashboard-bg);
  color: #8d8d8d;
}

.analyze-progress-item.is-active,
.analyze-progress-item.is-complete {
  color: var(--dashboard-green);
}

.analyze-progress-item.is-active .analyze-progress-number,
.analyze-progress-item.is-complete .analyze-progress-number {
  border-color: var(--dashboard-green);
  background: var(--dashboard-green);
  color: #ffffff;
}

.analyze-progress-line {
  width: 56px;
  height: 2px;
  background: var(--dashboard-line);
}

.analyze-title {
  margin-bottom: 26px;
  text-align: center;
}

.analyze-title h1 {
  margin: 0 0 5px;
  font-size: clamp(34px, 3.3vw, 40px);
  line-height: 1.06;
}

.analyze-title p {
  margin: 0;
  color: #232323;
  font-size: 16px;
}

.analyze-grid {
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(300px, 360px);
  gap: 20px;
  min-width: 0;
}

.analyze-card {
  min-width: 0;
  border: 1px solid var(--dashboard-border);
  border-radius: 16px;
  background: #ffffff;
}

.analyze-form-card {
  display: flex;
  height: 500px;
  min-height: 500px;
  padding: 30px;
}

.analyze-form-card form,
.analyze-step {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.analyze-step {
  flex-direction: column;
}

.analyze-step[hidden] {
  display: none;
}

.analyze-label {
  display: block;
  margin: 0 0 9px;
  color: var(--dashboard-text);
  font-size: 16px;
  font-weight: 700;
}

.analyze-options-label {
  margin-top: 20px;
}

.analyze-textarea,
.analyze-input,
.analyze-idea-preview {
  width: 100%;
  min-width: 0;
  border: 2px solid #dedede;
  border-radius: 11px;
  background: #ffffff;
  color: var(--dashboard-text);
  font: inherit;
  font-size: 15px;
}

.analyze-textarea,
.analyze-input {
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.analyze-textarea:focus,
.analyze-input:focus {
  border-color: var(--dashboard-green);
  box-shadow: 0 0 0 3px rgba(2, 154, 66, 0.08);
}

.analyze-textarea {
  min-height: 180px;
  margin-bottom: 0;
  padding: 14px;
  resize: none;
}

.idea-input-meta {
  display: flex;
  justify-content: space-between;
  min-height: 20px;
  margin: 6px 0 14px;
  gap: 12px;
  font-size: 12px;
}

.idea-validation-message {
  color: #b42318;
}

.idea-character-counter {
  margin-left: auto;
  color: #667085;
  white-space: nowrap;
}

.analyze-input {
  min-height: 48px;
  padding: 0 14px;
}

.analyze-textarea::placeholder,
.analyze-input::placeholder {
  color: #a1a1a1;
}

.analyze-idea-preview {
  min-height: 48px;
  padding: 11px 12px;
  border-color: var(--dashboard-green);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analyze-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
}

.analyze-actions.end-only {
  justify-content: flex-end;
}

.analyze-primary,
.analyze-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-weight: 700;
  cursor: pointer;
}

.analyze-primary {
  min-width: 120px;
  gap: 9px;
  padding: 0 18px;
  border: 2px solid var(--dashboard-green);
  background: var(--dashboard-green);
  color: #ffffff;
}

.analyze-primary[data-action="analyze"] {
  min-width: 180px;
}

.analyze-primary img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  object-fit: contain;
  transition: transform 180ms ease;
}

.analyze-primary:hover img {
  transform: translateX(5px);
}

.analyze-primary:disabled {
  border-color: #bdbdbd;
  background: #bdbdbd;
  cursor: not-allowed;
}

.analyze-primary:disabled img {
  transform: none;
}

.analyze-secondary {
  min-width: 120px;
  padding: 0 18px;
  border: 2px solid #dedede;
  background: transparent;
  color: var(--dashboard-text);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.analyze-secondary:hover {
  border-color: var(--dashboard-green);
  background: var(--dashboard-green);
  color: #ffffff;
}

.analyze-primary:focus-visible,
.analyze-secondary:focus-visible,
.analyze-focus-option:focus-visible,
.analyze-setting-option:focus-visible,
.analyze-textarea:focus-visible,
.analyze-input:focus-visible {
  outline: 3px solid rgba(2, 154, 66, 0.2);
  outline-offset: 2px;
}

.analyze-focus-options {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.analyze-focus-option {
  display: grid;
  width: 100%;
  min-width: 0;
  height: 64px;
  grid-template-columns: 50px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  padding: 7px 12px;
  overflow: hidden;
  border: 2px solid #dedede;
  border-radius: 11px;
  background: #ffffff;
  color: var(--dashboard-text);
  text-align: left;
  cursor: pointer;
}

.analyze-focus-option.is-selected {
  border-color: var(--dashboard-green);
  background: #f0fbf2;
}

.analyze-focus-option.is-disabled {
  border-color: #dedede;
  background: #ffffff;
  cursor: not-allowed;
  opacity: 1;
}

.analyze-focus-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid #d3ecd4;
  border-radius: 9px;
}

.analyze-focus-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.analyze-focus-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.analyze-focus-title {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.analyze-focus-title strong {
  min-width: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.analyze-coming-soon {
  flex: 0 0 auto;
  color: #e87500;
  font-size: 13px;
}

.analyze-focus-description {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analyze-selected-check {
  width: 30px;
  height: 30px;
  opacity: 0;
}

.analyze-focus-option.is-selected .analyze-selected-check {
  opacity: 1;
}

.analyze-settings-section {
  position: relative;
}

.analyze-settings-section + .analyze-settings-section {
  margin-top: 24px;
}

.analyze-setting-grid {
  display: grid;
  gap: 10px;
}

.analyze-setting-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.analyze-setting-grid.three {
  grid-template-columns: repeat(3, minmax(0, 120px));
}

.analyze-setting-option {
  position: relative;
  min-width: 0;
  min-height: 50px;
  border: 2px solid #dedede;
  border-radius: 11px;
  background: #ffffff;
  color: var(--dashboard-text);
  font-weight: 700;
  cursor: pointer;
}

.analyze-setting-option span {
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analyze-setting-option.is-selected {
  border-color: var(--dashboard-green);
  background: #f0fbf2;
}

.analyze-setting-option img {
  position: absolute;
  top: -11px;
  right: -7px;
  width: 23px;
  height: 23px;
  opacity: 0;
}

.analyze-setting-option.is-selected img {
  opacity: 1;
}

.analyze-selector-popover {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  padding: 14px;
  border: 1px solid #e4e4e4;
  border-radius: 11px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.analyze-selector-popover[hidden] {
  display: none;
}

.analyze-custom-market-panel {
  display: grid;
}

.analyze-compact-input {
  min-height: 42px;
  padding: 0 11px;
  font-size: 14px;
}

.analyze-country-list {
  display: grid;
  max-height: 192px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 12px;
  padding-right: 4px;
}

.analyze-country-option {
  display: flex;
  min-width: 0;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #fcfcfc;
  font-size: 13px;
  font-weight: 700;
}

.analyze-country-option input {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  accent-color: var(--dashboard-green);
}

.analyze-country-option span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.analyze-date-field {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.analyze-selector-actions {
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.analyze-selector-button {
  min-width: 96px;
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.analyze-assistant-card {
  display: flex;
  height: 500px;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  padding: 40px 34px;
}

.analyze-assistant-image {
  width: min(100%, 280px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}

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

.analyze-assistant-note {
  position: relative;
  width: 210px;
  margin-top: 40px;
}

.analyze-assistant-note img {
  position: absolute;
  top: -38px;
  right: -28px;
  width: 58px;
  height: auto;
}

.analyze-assistant-note p {
  margin: 0;
  color: var(--dashboard-green);
  font-family: "Kalam", cursive;
  font-size: 24px;
  line-height: 1.1;
  text-align: center;
  white-space: pre-line;
}

.dashboard-content.is-reports-page {
  min-height: 670px;
  padding: 30px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.reports-page {
  min-width: 0;
}

.reports-page > h1 {
  margin: 0 0 36px;
  font-size: 30px;
  line-height: 1.1;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.report-card {
  position: relative;
  display: grid;
  width: min(100%, 310px);
  height: 140px;
  min-width: 0;
  min-height: 140px;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 14px;
  padding: 14px 18px 14px;
  border: 1px solid var(--dashboard-border);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.025);
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.report-card.is-dragging {
  opacity: 0.5;
}

.report-card.is-drag-target {
  border-color: var(--dashboard-green);
  box-shadow: 0 0 0 3px rgba(2, 154, 66, 0.1);
}

.report-drag-handle {
  position: absolute;
  z-index: 2;
  top: -12px;
  right: -12px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 2px solid #a7a7a7;
  border-radius: 10px;
  background: #ffffff;
  cursor: grab;
  touch-action: pan-y;
}

.report-drag-handle:active {
  cursor: grabbing;
}

.report-drag-handle span,
.report-drag-handle span::before,
.report-drag-handle span::after {
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #969696;
}

.report-drag-handle span {
  position: relative;
}

.report-drag-handle span::before,
.report-drag-handle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.report-drag-handle span::before {
  top: -4px;
}

.report-drag-handle span::after {
  top: 4px;
}

.report-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.report-card-copy h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.report-scan-type,
.report-idea {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-scan-type {
  margin: 3px 0 0;
  font-size: 13px;
}

.report-idea {
  margin: 2px 0 0;
  color: var(--dashboard-green);
  font-size: 14px;
}

.report-open-button {
  display: inline-flex;
  min-width: 82px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  border: 2px solid var(--dashboard-green);
  border-radius: 11px;
  background: #ffffff;
  color: var(--dashboard-green);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.report-open-button:hover {
  background: var(--dashboard-green);
  color: #ffffff;
}

.report-card-actions {
  display: grid;
  width: 100%;
  align-content: end;
  justify-items: start;
  gap: 1px;
  margin-top: auto;
}

.report-card-actions .report-analyzing {
  min-width: 0;
  min-height: 0;
  margin: 0;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-delete-text {
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #b42318;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.report-delete-text:hover {
  color: #8f1c13;
}

.report-delete-text:disabled {
  color: #8d8d8d;
  cursor: wait;
}

.report-analyzing {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #e87500;
  font-size: 14px;
  font-weight: 700;
}

.report-progress-copy {
  display: grid;
  width: 132px;
  min-width: 0;
  gap: 4px;
}

.report-progress-label {
  overflow: visible;
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
}

.report-progress-track,
.report-progress-fill {
  display: block;
  height: 6px;
  border-radius: 999px;
}

.report-progress-track {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #e2e2e2;
}

.report-progress-fill {
  width: 0;
  background: var(--dashboard-green);
  transition: width 180ms ease;
}

.report-progress-step-0 { width: 0; }
.report-progress-step-1 { width: 10%; }
.report-progress-step-2 { width: 20%; }
.report-progress-step-3 { width: 30%; }
.report-progress-step-4 { width: 40%; }
.report-progress-step-5 { width: 50%; }
.report-progress-step-6 { width: 60%; }
.report-progress-step-7 { width: 70%; }
.report-progress-step-8 { width: 80%; }
.report-progress-step-9 { width: 90%; }
.report-progress-step-10 { width: 100%; }

.report-analyzing.report-failed {
  color: #b42318;
}

.report-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(232, 117, 0, 0.25);
  border-top-color: #e87500;
  border-radius: 50%;
  animation: report-spinner 700ms linear infinite;
}

@keyframes report-spinner {
  to {
    transform: rotate(360deg);
  }
}

.report-card-score {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.report-score-display-hidden {
  visibility: hidden;
}

.report-score-display {
  display: grid;
  width: 82px;
  min-height: 52px;
  flex: 0 0 auto;
  justify-items: center;
  gap: 5px;
}

.report-score-value {
  color: var(--pop-score-value-color, var(--dashboard-green));
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.report-score-slots {
  display: grid;
  grid-template-columns: repeat(4, 17px);
  gap: 3px;
}

.report-score-slots .pop-score-slot {
  display: block;
}

.report-card-score p {
  width: 100%;
  margin: auto 0 0;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}

.report-card-score p span,
.report-card-score p strong {
  display: block;
}

.report-card-score p strong {
  margin-top: 1px;
  font-size: 10px;
}

.reports-empty {
  display: grid;
  min-height: 260px;
  place-content: center;
  padding: 32px;
  border: 1px solid var(--dashboard-border);
  border-radius: 13px;
  background: #ffffff;
  text-align: center;
}

.reports-empty h2 {
  margin: 0;
  font-size: 22px;
}

.reports-empty p {
  margin: 7px 0 0;
  color: var(--dashboard-muted);
  font-size: 14px;
}

.reports-empty-cta {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 9px;
  margin-top: 22px;
  padding: 0 18px;
  border: 2px solid var(--dashboard-green);
  border-radius: 11px;
  background: var(--dashboard-green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.reports-empty-cta img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
  transition: transform 180ms ease;
}

.reports-empty-cta:hover {
  border-color: #017f37;
  background: #017f37;
}

.reports-empty-cta:hover img {
  transform: translateX(5px);
}

.reports-storage-error {
  margin: -22px 0 24px;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
}

.analyze-submit-error {
  margin: 9px 0 0;
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
}

.report-drag-handle:focus-visible,
.report-open-button:focus-visible,
.report-delete-text:focus-visible,
.reports-empty-cta:focus-visible {
  outline: 3px solid rgba(2, 154, 66, 0.22);
  outline-offset: 2px;
}

@media (max-width: 1260px) {
  .reports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .report-spinner {
    animation-duration: 1400ms;
  }

  .reports-empty-cta img {
    transition: none;
  }
}

.dashboard-footer {
  display: grid;
  grid-template-columns: 1fr 200px 240px;
  gap: 42px;
  margin-top: 28px;
  padding: 28px 24px 46px;
  border-top: 1px solid var(--dashboard-line);
}

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

.footer-brand-lockup > img:first-child {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand-lockup > img:last-child {
  width: 142px;
  height: auto;
}

.dashboard-footer-brand p {
  margin: 5px 0 0;
  color: #3f3f3f;
  font-size: 12px;
}

.dashboard-footer-links {
  min-height: 96px;
  padding-left: 38px;
  border-left: 1px solid var(--dashboard-line);
}

.dashboard-footer-links h2 {
  margin: 0 0 9px;
  font-size: 15px;
}

.dashboard-footer-links a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: #303030;
  font-size: 12px;
}

.dashboard-footer-links a:hover {
  color: var(--dashboard-green);
}

@media (max-width: 1100px) {
  .analyze-grid {
    grid-template-columns: 1fr;
  }

  .analyze-assistant-card {
    display: none;
  }
}

@media (max-width: 900px) {
  .dashboard-frame {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
  }

  .dashboard-sidebar {
    min-height: 690px;
    padding: 16px 10px;
  }

  .sidebar-brand {
    justify-content: center;
    padding: 0 0 16px;
  }

  .sidebar-brand-copy,
  .dashboard-nav-label,
  .sidebar-plan,
  .add-scans-label {
    display: none;
  }

  .dashboard-nav-link,
  .add-scans-button {
    width: 48px;
    min-height: 48px;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
  }

  .dashboard-content {
    min-height: 590px;
  }

  .dashboard-content.is-analyze-flow {
    min-height: 590px;
  }

  .dashboard-footer {
    grid-template-columns: 1fr 160px 190px;
    gap: 24px;
  }

  .dashboard-footer-links {
    padding-left: 24px;
  }
}

@media (max-width: 680px) {
  .dashboard-frame,
  .dashboard-footer {
    width: min(100% - 24px, 1210px);
  }

  .dashboard-frame {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
    min-height: calc(100vh - 190px);
    margin-top: 12px;
  }

  .dashboard-sidebar {
    min-height: 620px;
    padding: 12px 6px;
    border-radius: 12px;
  }

  .sidebar-brand-mark {
    width: 38px;
    height: 38px;
  }

  .dashboard-nav {
    margin-top: 18px;
  }

  .dashboard-nav-link,
  .add-scans-button {
    width: 44px;
    min-height: 44px;
  }

  .dashboard-nav-link img,
  .add-scans-button img {
    width: 25px;
    height: 25px;
  }

  .dashboard-header {
    min-height: 68px;
    padding: 8px 12px;
    border-radius: 12px;
  }

  .header-account {
    gap: 8px;
  }

  .header-plan strong {
    font-size: 13px;
    line-height: 1.1;
  }

  .header-plan span {
    font-size: 11px;
    line-height: 1.2;
  }

  .avatar-button {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .dashboard-content {
    min-height: 540px;
    margin-top: 12px;
    padding: 22px 18px;
    border-radius: 12px;
  }

  .dashboard-content.is-analyze-flow {
    min-height: 540px;
    padding: 22px 0 0;
  }

  .dashboard-content.is-reports-page {
    min-height: 540px;
    padding: 22px 0;
  }

  .reports-page > h1 {
    margin-bottom: 28px;
    font-size: 28px;
  }

  .reports-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .report-card {
    width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .report-progress-label {
    font-size: 11px;
  }

  .report-progress-copy {
    width: 100%;
  }

  .analyze-progress {
    gap: 7px;
    margin-bottom: 20px;
  }

  .analyze-progress-item {
    gap: 5px;
    font-size: 12px;
  }

  .analyze-progress-number {
    width: 25px;
    height: 25px;
  }

  .analyze-progress-line {
    width: min(7vw, 34px);
  }

  .analyze-title {
    margin-bottom: 20px;
  }

  .analyze-title h1 {
    font-size: 28px;
  }

  .analyze-title p {
    font-size: 14px;
  }

  .analyze-form-card {
    height: auto;
    min-height: 500px;
    padding: 20px 16px;
  }

  .analyze-label {
    font-size: 14px;
  }

  .analyze-textarea,
  .analyze-input,
  .analyze-idea-preview {
    font-size: 14px;
  }

  .analyze-textarea {
    min-height: 160px;
    margin-bottom: 28px;
  }

  .analyze-focus-option {
    height: 68px;
    grid-template-columns: 44px minmax(0, 1fr) 25px;
    gap: 8px;
    padding: 7px 8px;
  }

  .analyze-focus-icon {
    width: 40px;
    height: 40px;
  }

  .analyze-focus-icon img {
    width: 27px;
    height: 27px;
  }

  .analyze-focus-title {
    flex-wrap: wrap;
    gap: 0 5px;
    white-space: normal;
  }

  .analyze-focus-title strong {
    font-size: 13px;
  }

  .analyze-coming-soon,
  .analyze-focus-description {
    font-size: 10px;
  }

  .analyze-selected-check {
    width: 25px;
    height: 25px;
  }

  .analyze-settings-section + .analyze-settings-section {
    margin-top: 22px;
  }

  .analyze-setting-grid {
    gap: 6px;
  }

  .analyze-setting-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .analyze-setting-option {
    min-height: 46px;
    font-size: 12px;
  }

  .analyze-actions {
    gap: 10px;
  }

  .analyze-primary,
  .analyze-secondary {
    min-width: 96px;
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }

  .analyze-primary[data-action="analyze"] {
    min-width: 154px;
  }

  .analyze-country-list {
    max-height: 174px;
    gap: 6px;
  }

  .analyze-country-option {
    min-height: 30px;
    gap: 6px;
    font-size: 11px;
  }

  .dashboard-placeholder h1 {
    font-size: 28px;
  }

  .dashboard-placeholder p {
    font-size: 14px;
  }

  .dashboard-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 20px;
    padding: 24px 12px 34px;
  }

  .dashboard-footer-links {
    min-height: auto;
    padding: 18px 0 0;
    border-top: 1px solid var(--dashboard-line);
    border-left: 0;
  }
}

@media (max-width: 390px) {
  .dashboard-frame,
  .dashboard-footer {
    width: min(100% - 16px, 1210px);
  }

  .dashboard-frame {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px;
  }

  .dashboard-sidebar {
    padding-right: 5px;
    padding-left: 5px;
  }

  .dashboard-nav-link,
  .add-scans-button {
    width: 42px;
    min-height: 42px;
  }

  .dashboard-content {
    padding-right: 14px;
    padding-left: 14px;
  }

  .analyze-setting-grid {
    gap: 4px;
  }

  .analyze-setting-option {
    font-size: 10px;
  }

  .analyze-setting-option span {
    padding: 0 2px;
  }

  .analyze-selector-popover {
    padding: 10px;
  }

  .analyze-country-list {
    max-height: 164px;
  }

  .analyze-country-option {
    min-height: 28px;
    font-size: 10px;
  }

  .analyze-selector-button {
    min-width: 80px;
    padding: 0 10px;
    font-size: 12px;
  }
}

/* Full report template */
.dashboard-content.is-full-report {
  min-height: 670px;
  padding: 30px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.full-report-page {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.full-report-hero {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px 2px;
}

.full-report-title {
  min-width: 0;
}

.full-report-title-line {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 12px;
}

.full-report-title h1 {
  flex: 0 0 auto;
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.full-report-title-line > strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 16px;
}

.full-report-title > p {
  max-width: 620px;
  margin: 5px 0 0;
  color: var(--dashboard-green);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.full-report-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 6px;
  color: var(--dashboard-green);
  font-size: 14px;
  font-weight: 700;
}

.full-report-filters span {
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.full-report-filters span + span::before {
  margin: 0 7px;
  color: var(--dashboard-text);
  content: "•";
  text-decoration: none;
}

.full-report-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.full-report-actions > p {
  margin: 0 4px 0 0;
  font-size: 10px;
  line-height: 1.15;
  text-align: right;
}

.full-report-actions > p span,
.full-report-actions > p strong {
  display: block;
}

.full-report-back,
.full-report-export {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
}

.full-report-back {
  gap: 6px;
  padding: 0 15px;
  border: 2px solid var(--dashboard-green);
  background: #ffffff;
  color: var(--dashboard-green);
  transition: background-color 160ms ease, color 160ms ease;
}

.full-report-back img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.full-report-back:hover {
  background: var(--dashboard-green);
  color: #ffffff;
}

.full-report-back:hover img {
  filter: brightness(0) invert(1);
}

.full-report-export {
  padding: 0 20px;
  background: var(--dashboard-green);
  color: #ffffff;
  cursor: pointer;
  opacity: 1;
}

.full-report-export:disabled {
  cursor: wait;
  opacity: 0.7;
}

.report-export-error {
  max-width: 180px;
  color: #b52b35;
  font-size: 11px;
  line-height: 1.2;
}

.full-report-metrics {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.full-metric-card,
.full-score-card {
  min-width: 0;
  min-height: 142px;
  overflow: hidden;
  border: 2px solid #d3ecd4;
  border-radius: 14px;
  background: #f0fbf2;
}

.full-metric-card {
  position: relative;
  display: block;
  padding: 14px 18px;
}

.full-metric-copy,
.full-metric-trend {
  min-width: 0;
}

.full-metric-copy h2,
.full-score-card h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 17px;
  line-height: 1.15;
}

.full-metric-copy h2 img,
.full-score-card h2 img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  object-fit: contain;
}

.full-metric-primary,
.full-score-value {
  display: block;
  margin-top: 8px;
  color: var(--dashboard-green);
  font-size: 30px;
  line-height: 1;
}

.full-metric-copy p {
  max-width: 135px;
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.15;
}

.full-metric-trend {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  width: 138px;
  align-items: flex-end;
  justify-content: flex-end;
}

.full-metric-trend svg {
  width: 100%;
  max-width: 150px;
  height: 58px;
  overflow: visible;
}

.full-metric-trend svg path {
  fill: rgba(2, 154, 66, 0.07);
}

.full-metric-trend svg polyline {
  fill: none;
  stroke: var(--dashboard-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.full-score-card {
  position: relative;
  display: grid;
  overflow: visible;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
}

.full-score-portrait {
  width: 118px;
  height: 118px;
  overflow: hidden;
  border: 1px solid #cfd7d0;
  border-radius: 50%;
  background: #ffffff;
}

.full-score-content {
  min-width: 0;
}

.full-score-card h2 {
  margin-bottom: 1px;
}

.full-score-card p {
  margin: 7px 0 0;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.full-score-value {
  color: var(--pop-score-value-color, var(--dashboard-green));
  font-size: 40px;
}

.full-score-slots {
  display: grid;
  width: max-content;
  grid-template-columns: repeat(4, 24px);
  gap: 6px;
  margin-top: 7px;
}

.full-score-slots .pop-score-slot {
  display: block;
}

.full-score-girl {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.full-score-girl.is-flipped {
  transform: scaleX(-1);
}

.pop-score-slot.is-filled {
  background: var(--pop-score-state-color);
}

.pop-score-slot {
  display: block;
  border: 2px solid var(--pop-score-state-color);
  border-radius: 3px;
  background: transparent;
}

.pop-score-slot-size-small {
  width: 17px;
  height: 12px;
}

.pop-score-slot-size-large {
  width: 24px;
  height: 17px;
}

.pop-score-state-weak {
  --pop-score-state-color: #d02b18;
  --pop-score-value-color: #d02b18;
}

.pop-score-state-moderate {
  --pop-score-state-color: #ff8003;
  --pop-score-value-color: #ff8003;
}

.pop-score-state-good {
  --pop-score-state-color: #ffcc00;
  --pop-score-value-color: #ffcc00;
}

.pop-score-state-excellent {
  --pop-score-state-color: #029a42;
  --pop-score-value-color: #029a42;
}

.pop-score-state-unavailable {
  --pop-score-state-color: #555555;
  --pop-score-value-color: #555555;
}

.full-report-analysis,
.full-report-trends,
.full-report-bottom {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.full-report-analysis {
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.7fr);
  align-items: stretch;
}

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

.full-report-bottom {
  grid-template-columns: minmax(0, 2fr) minmax(250px, 0.95fr);
}

.full-report-card {
  min-width: 0;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.full-report-card h2,
.full-report-card h3,
.full-report-card p {
  overflow-wrap: anywhere;
}

.full-youtube-card {
  padding: 14px 20px 18px;
}

.full-youtube-card h2,
.full-youtube-card h3,
.full-insights-card > h2 {
  display: flex;
  align-items: center;
  gap: 7px;
}

.full-youtube-card h2 {
  margin: 0;
  font-size: 17px;
}

.full-youtube-card h2 img,
.full-source-heading img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.full-youtube-card ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 22px;
  padding: 0;
  list-style: none;
}

.full-youtube-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.full-youtube-card li img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.full-google-play-section {
  margin: 0 0 22px;
}

.full-google-play-section .full-source-heading img {
  width: 20px;
  height: 20px;
}

.full-source-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 17px;
}

.full-google-play-section ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.full-google-play-section li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.full-google-play-section li img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.full-youtube-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.full-youtube-card h3 img,
.full-insights-card > h2 img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.report-tooltip {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.report-tooltip-trigger {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: help;
}

.full-insights-card > h2 .report-tooltip-trigger img,
.report-tooltip-trigger img {
  display: block;
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.report-tooltip-trigger:focus-visible {
  outline: 3px solid rgba(2, 154, 66, 0.22);
  outline-offset: 2px;
}

.report-tooltip-content {
  position: absolute;
  z-index: 5;
  top: calc(100% + 8px);
  left: 50%;
  width: min(260px, calc(100vw - 32px));
  padding: 9px 11px;
  border: 1px solid var(--dashboard-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  color: var(--dashboard-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  transform: translateX(calc(-50% + var(--report-tooltip-shift, 0px)));
}

.full-trend-card .report-tooltip-content {
  box-sizing: border-box;
  width: min(280px, calc(100vw - 40px));
  max-width: calc(100vw - 40px);
  overflow-wrap: break-word;
  white-space: normal;
}

.full-youtube-card > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.full-insights-card {
  padding: 14px 20px 12px;
}

.full-insights-card > h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

.full-insights-list {
  display: grid;
  gap: 12px;
}

.full-insight-row {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(130px, 0.85fr) minmax(180px, 1.2fr) minmax(100px, 0.55fr);
  align-items: center;
  gap: 12px;
}

.full-insight-row > div:first-child,
.full-insight-quotes {
  display: grid;
  min-width: 0;
}

.full-insight-row > div:first-child strong {
  color: var(--dashboard-green);
  font-size: 13px;
}

.full-insight-row > div:first-child span,
.full-insight-quotes span {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.full-insight-quotes span {
  display: -webkit-box;
  min-height: 30px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.full-insight-percent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.full-insight-progress {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  min-width: 40px;
  height: 6px;
  max-width: 112px;
  flex: 1 1 112px;
  overflow: hidden;
  border-radius: 4px;
  background: #dfdfdf;
}

.full-insight-progress::-webkit-progress-bar {
  border-radius: inherit;
  background: #dfdfdf;
}

.full-insight-progress::-webkit-progress-value {
  border-radius: inherit;
  background: var(--dashboard-green);
}

.full-insight-progress::-moz-progress-bar {
  border-radius: inherit;
  background: var(--dashboard-green);
}

.full-insight-percent strong {
  width: 32px;
  flex: 0 0 auto;
  color: var(--dashboard-green);
  font-size: 12px;
  text-align: right;
}

.full-view-more {
  display: block;
  width: fit-content;
  margin: 10px 0 0 auto;
  padding: 3px 0;
  background: transparent;
  color: var(--dashboard-text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease;
}

.full-view-more:hover {
  color: var(--dashboard-green);
}

.full-trend-card,
.full-categories-card,
.full-competitors-card,
.full-next-move-card {
  padding: 15px 20px;
}

.full-section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.full-section-heading > div:first-child {
  min-width: 0;
}

.full-section-heading h2,
.full-categories-card > h2,
.full-competitors-card h2,
.full-next-move-card h2 {
  margin: 0;
  font-size: 17px;
}

.full-categories-title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.full-trend-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.full-section-heading p {
  margin: 1px 0 0;
  font-size: 13px;
}

.full-section-heading > div:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.full-section-heading > .full-trend-meta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.full-section-heading > div:last-child strong {
  padding: 3px 9px;
  border: 1px solid #bfe2c4;
  border-radius: 5px;
  color: var(--dashboard-green);
  font-size: 13px;
}

.full-section-heading > div:last-child span {
  font-size: 13px;
}

.full-trend-chart {
  display: grid;
  min-width: 0;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: 150px auto;
  gap: 6px 8px;
  margin-top: 16px;
}

.full-chart-y {
  display: flex;
  height: 150px;
  flex-direction: column;
  justify-content: space-between;
  font-size: 11px;
  text-align: right;
}

.full-trend-chart svg {
  display: block;
  width: 100%;
  height: 150px;
  overflow: visible;
}

.full-trend-chart svg g line {
  stroke: #e7e7e7;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.full-trend-chart svg path {
  fill: rgba(2, 154, 66, 0.08);
}

.full-trend-chart svg polyline {
  fill: none;
  stroke: var(--dashboard-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.full-trend-chart svg .trend-endpoint {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.full-trend-chart svg .trend-endpoint-border {
  stroke: #ffffff;
  stroke-width: 8px;
}

.full-trend-chart svg .trend-endpoint-core {
  stroke: var(--dashboard-green);
  stroke-width: 5px;
}

.full-chart-x {
  display: grid;
  grid-column: 2;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 4px;
  font-size: 10px;
}

.full-chart-x span {
  min-width: 0;
  white-space: nowrap;
  text-align: center;
}

.full-chart-x span:first-child {
  text-align: left;
}

.full-chart-x span:last-child {
  text-align: right;
}

.full-categories-main {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 14px;
}

.full-donut {
  position: relative;
  display: grid;
  width: 135px;
  height: 135px;
  place-items: center;
  border-radius: 50%;
  background: #e5e5e5;
}

.full-donut-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.full-donut::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  content: "";
  z-index: 1;
}

.full-donut span {
  position: relative;
  z-index: 2;
  display: grid;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}

.full-donut strong {
  color: var(--dashboard-green);
  font-size: 20px;
}

.full-categories-main ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.full-categories-main li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.full-categories-main li i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.full-categories-main .mint { background: #8fd0b3; }
.full-categories-main .purple { background: #aea1e4; }
.full-categories-main .yellow { background: #f8c864; }
.full-categories-main .pink { background: #ff929c; }
.full-categories-main .blue { background: #75a8df; }

.full-competition-note {
  display: flex;
  align-items: start;
  gap: 7px;
  margin-top: 14px;
}

.full-competition-note img {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  object-fit: contain;
}

.full-competition-note p {
  display: grid;
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
}

.full-competitors-heading p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 1px 0 8px;
  font-size: 11px;
}

.full-competitors-heading p img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.full-competitors-heading h2 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.full-competitor-row {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(220px, 1.4fr) minmax(260px, 1fr);
  align-items: center;
  gap: 14px;
  padding: 7px 0;
}

.full-competitor-identity {
  display: grid;
  min-width: 0;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
}

.full-competitor-identity-link,
.report-overlay-identity-link {
  display: grid;
  min-width: 0;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  color: inherit;
  text-decoration: none;
}

a.full-competitor-identity-link:focus-visible,
a.report-overlay-identity-link:focus-visible {
  outline: 3px solid rgba(2, 154, 66, 0.22);
  outline-offset: 2px;
}

.full-competitor-rank {
  font-size: 12px;
}

.full-competitor-thumb {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
}

.full-competitor-icon {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
}

.full-competitor-thumb[hidden],
.full-competitor-icon[hidden] {
  display: none;
}

.full-competitor-thumb.green { background: #27805b; }
.full-competitor-thumb.blue { background: #467bb8; }
.full-competitor-thumb.orange { background: #d77b24; }
.full-competitor-thumb.purple { background: #6d559b; }

.competitor-identity-copy {
  display: grid;
  min-width: 0;
}

.competitor-identity-copy > strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.competitor-identity-copy > span {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.developer-flag {
  width: 15px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 1px;
}

.developer-flag.is-unavailable {
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #c9ceca;
  background: #eef0ee;
}

.report-data-empty {
  margin: 10px 0;
  color: var(--dashboard-muted);
  font-size: 12px;
}

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

.full-competitor-metrics div {
  min-width: 0;
}

.full-competitor-metrics dt {
  margin-bottom: 2px;
  color: var(--dashboard-green);
  font-size: 9px;
}

.full-competitor-metrics dd {
  margin: 0;
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full-next-move-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.full-next-move-card > p {
  margin: 9px 0 0;
  font-size: 13px;
  line-height: 1.25;
}

.full-next-move-card > strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 8px 10px;
  border: 1px solid #bfe2c4;
  border-radius: 10px;
  background: #f0fbf2;
  color: var(--dashboard-green);
  font-size: 12px;
}

.full-next-move-card > strong img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.full-report-delete-row {
  display: flex;
  justify-content: flex-end;
  padding: 0 18px;
}

.full-report-delete {
  padding: 8px 10px;
  background: transparent;
  color: #e00000;
  font-weight: 700;
  cursor: pointer;
}

.full-report-not-found {
  display: grid;
  min-height: 400px;
  place-content: center;
  justify-items: center;
  padding: 32px;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
}

.full-report-not-found h1 {
  margin: 0;
  font-size: 30px;
}

.full-report-not-found p {
  max-width: 420px;
  margin: 8px 0 20px;
  color: var(--dashboard-muted);
}

.full-report-not-found a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 11px;
  background: var(--dashboard-green);
  color: #ffffff;
  font-weight: 700;
}

.report-delete-dialog {
  width: min(100% - 32px, 420px);
  padding: 0;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.report-delete-dialog::backdrop {
  background: rgba(0, 0, 0, 0.36);
}

.report-delete-dialog form {
  padding: 24px;
}

.report-delete-dialog h2 {
  margin: 0;
  font-size: 22px;
}

.report-delete-dialog form > p {
  margin: 7px 0 0;
  color: var(--dashboard-muted);
  font-size: 14px;
}

.report-delete-dialog .report-delete-error {
  color: #b42318;
  font-weight: 700;
}

.report-delete-error:empty {
  display: none;
}

.report-delete-dialog form > div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.report-delete-dialog button {
  min-width: 94px;
  min-height: 44px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.report-delete-cancel {
  border: 1px solid var(--dashboard-line);
  background: #ffffff;
}

.report-delete-confirm {
  background: #d92d20;
  color: #ffffff;
}

.report-delete-confirm:disabled {
  cursor: wait;
  opacity: 0.65;
}

.full-report-back:focus-visible,
.full-report-delete:focus-visible,
.full-view-more:focus-visible,
.full-report-not-found a:focus-visible,
.report-delete-dialog button:focus-visible {
  outline: 3px solid rgba(2, 154, 66, 0.22);
  outline-offset: 2px;
}

body.report-overlay-open {
  overflow: hidden;
}

.report-overlay[hidden] {
  display: none;
}

.report-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 6vh 7.5vw;
  background: rgba(0, 0, 0, 0.48);
}

.report-overlay-panel {
  display: grid;
  width: min(85vw, 1080px);
  max-width: 100%;
  height: min(84vh, 780px);
  max-height: 100%;
  min-width: 0;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--dashboard-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.report-overlay-header {
  display: grid;
  min-width: 0;
  gap: 14px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--dashboard-line);
  background: #ffffff;
}

.report-overlay-header-main {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.report-overlay-heading {
  min-width: 0;
}

.report-overlay-header h2 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
}

.report-overlay-header h2 img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.report-overlay-header p {
  margin: 5px 0 0;
  color: var(--dashboard-muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.report-overlay-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--dashboard-line);
  border-radius: 9px;
  background: #ffffff;
  color: var(--dashboard-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.report-overlay-close:hover {
  border-color: var(--dashboard-green);
  background: var(--dashboard-green);
  color: #ffffff;
}

.report-overlay-close:focus-visible {
  outline: 3px solid rgba(2, 154, 66, 0.22);
  outline-offset: 2px;
}

.report-overlay-content {
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 24px 30px;
  -webkit-overflow-scrolling: touch;
}

.report-overlay-insights {
  display: grid;
  min-width: 0;
  gap: 0;
}

.report-overlay-insights .full-insight-row {
  padding: 14px 4px;
  border-bottom: 1px solid #eeeeee;
}

.report-overlay-insights .full-insight-row:last-child {
  border-bottom: 0;
}

.report-overlay-insights .full-insight-row.is-expanded {
  grid-template-columns: minmax(130px, 0.85fr) minmax(180px, 1.2fr) minmax(152px, 0.55fr);
}

.report-overlay-insights .full-insight-row.is-expanded .full-insight-quotes span {
  display: block;
  min-height: 0;
  overflow: visible;
  overflow-wrap: anywhere;
  text-overflow: clip;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.report-overlay-insights .full-insight-percent {
  justify-content: flex-end;
}

.report-overlay-competitors {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.report-overlay-competitor {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(240px, 1.45fr) minmax(380px, 2fr);
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--dashboard-border);
  border-radius: 10px;
  background: #ffffff;
}

.report-overlay-competitor-title {
  display: grid;
  min-width: 0;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.report-overlay-competitor-title p {
  display: flex;
  align-items: center;
  gap: 4px;
}

.report-competitor-sort {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(240px, 1.45fr) minmax(380px, 2fr);
  gap: 12px;
  padding: 0 15px;
}

.report-competitor-sort[hidden] {
  display: none;
}

.report-competitor-sort-controls {
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.report-competitor-sort button {
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid var(--dashboard-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--dashboard-text);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.report-competitor-sort button.is-active {
  border-color: var(--dashboard-green);
  background: #f0fbf2;
  color: var(--dashboard-green);
}

.report-overlay-rank {
  color: var(--dashboard-green);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.report-overlay-competitor-title > img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.report-overlay-competitor-title > .report-overlay-identity-link {
  min-width: 0;
}

.report-overlay-competitor dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.report-overlay-competitor dl div {
  padding: 6px 10px;
  border-radius: 7px;
  background: #f7f7f7;
}

.report-overlay-competitor dt {
  color: var(--dashboard-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.report-overlay-competitor dd {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.report-overlay-rating dd {
  display: flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
}

.report-overlay-rating dd span {
  font-size: 9px;
  font-weight: 400;
}

.report-overlay-relevance {
  grid-column: 1 / -1;
  margin: 0;
  color: #303030;
  font-size: 11px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.report-overlay-relevance strong {
  color: var(--dashboard-green);
}

@media (max-width: 760px) {
  .report-competitor-sort {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }

  .report-competitor-sort-controls {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-competitor-sort button {
    min-height: 38px;
  }
}

@media (max-width: 1100px) {
  .full-report-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .full-report-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .full-report-actions > p {
    margin-right: auto;
    text-align: left;
  }

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

  .full-score-card {
    grid-column: 1 / -1;
  }

  .full-report-analysis,
  .full-report-trends,
  .full-report-bottom {
    grid-template-columns: 1fr;
  }

  .full-report-analysis {
    align-items: start;
  }

  .full-next-move-card > strong {
    margin-top: 24px;
  }

  .report-overlay {
    padding: 5vh 24px;
  }

  .report-overlay-panel {
    width: 100%;
    height: 88vh;
  }
}

@media (max-width: 680px) {
  .dashboard-content.is-full-report {
    min-height: 540px;
    padding-top: 22px;
  }

  .full-report-page {
    gap: 14px;
  }

  .full-report-hero {
    gap: 18px;
    padding-right: 0;
    padding-left: 0;
  }

  .full-report-title-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .full-report-title h1 {
    font-size: 25px;
  }

  .full-report-title-line > strong {
    font-size: 14px;
  }

  .full-report-title > p,
  .full-report-filters {
    font-size: 12px;
  }

  .full-report-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full-report-actions > p {
    grid-column: 1 / -1;
  }

  .full-report-back,
  .full-report-export {
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
  }

  .full-report-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .full-score-card {
    grid-column: auto;
  }

  .full-metric-card,
  .full-score-card {
    min-height: 136px;
  }

  .full-metric-card {
    padding: 13px 14px;
  }

  .full-metric-trend {
    right: 14px;
    bottom: 13px;
  }

  .full-metric-copy h2,
  .full-score-card h2 {
    font-size: 15px;
  }

  .full-metric-primary {
    font-size: 28px;
  }

  .full-score-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }

  .full-score-portrait {
    width: 104px;
    height: 104px;
  }

  .full-report-analysis,
  .full-report-trends,
  .full-report-bottom {
    gap: 14px;
  }

  .full-youtube-card,
  .full-insights-card,
  .full-trend-card,
  .full-categories-card,
  .full-competitors-card,
  .full-next-move-card {
    padding: 14px;
  }

  .full-insight-row {
    grid-template-columns: minmax(0, 1fr) 90px;
    gap: 6px 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid #eeeeee;
  }

  .full-insight-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .full-insight-quotes {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .full-insight-quotes span {
    white-space: normal;
  }

  .full-chart-x span:nth-child(even):not(:last-child) {
    display: none;
  }

  .full-categories-main {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
  }

  .full-donut {
    width: 105px;
    height: 105px;
  }

  .full-donut::before {
    width: 62px;
    height: 62px;
  }

  .full-donut strong {
    font-size: 17px;
  }

  .full-categories-main li {
    gap: 5px;
    font-size: 10px;
  }

  .full-competitor-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
  }

  .full-competitor-row:last-of-type {
    border-bottom: 0;
  }

  .competitor-identity-copy > strong,
  .competitor-identity-copy > span {
    white-space: normal;
  }

  .full-competitor-metrics {
    padding-left: 61px;
  }

  .full-competitor-metrics dd {
    white-space: normal;
  }

  .full-report-delete-row {
    padding: 0;
  }

  .full-report-delete {
    width: 100%;
    min-height: 44px;
    border: 1px solid #f1b7b7;
    border-radius: 10px;
    background: #ffffff;
  }

  .report-overlay {
    padding: 12px;
  }

  .report-overlay-panel {
    width: 100%;
    height: calc(100vh - 24px);
    height: calc(100dvh - 24px);
    border-radius: 12px;
  }

  .report-overlay-header {
    gap: 12px;
    padding: 17px 16px 14px;
  }

  .report-overlay-header h2 {
    font-size: 22px;
  }

  .report-overlay-header p {
    font-size: 12px;
  }

  .report-overlay-close {
    width: 38px;
    height: 38px;
  }

  .report-overlay-content {
    padding: 14px 16px 28px;
  }

  .report-overlay-insights .full-insight-row {
    padding: 12px 0;
  }

  .report-overlay-insights .full-insight-row.is-expanded {
    grid-template-columns: minmax(0, 1fr) 90px;
  }

  .report-overlay-competitors {
    grid-template-columns: 1fr;
  }

  .report-overlay-competitor {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-overlay-competitor dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .full-report-actions {
    grid-template-columns: 1fr;
  }

  .full-report-actions > p {
    grid-column: auto;
  }

  .full-metric-card {
    padding-right: 12px;
    padding-left: 12px;
  }

  .full-metric-trend {
    right: 12px;
    width: 96px;
  }

  .full-metric-copy p {
    font-size: 10px;
  }

  .full-score-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .full-score-portrait {
    width: 88px;
    height: 88px;
  }

  .full-score-slots {
    grid-template-columns: repeat(4, 21px);
    gap: 4px;
  }

  .full-score-slots .pop-score-slot {
    width: 21px;
    height: 15px;
  }

  .full-categories-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .full-categories-main ul {
    width: 100%;
  }

  .full-competitor-metrics {
    padding-left: 0;
  }

  .full-chart-x {
    font-size: 8px;
  }

  .full-chart-x span:not(:first-child):not(:last-child) {
    display: none;
  }

  .report-overlay {
    padding: 8px;
  }

  .report-overlay-panel {
    height: calc(100vh - 16px);
    height: calc(100dvh - 16px);
    border-radius: 10px;
  }

  .report-overlay-header {
    padding-right: 12px;
    padding-left: 13px;
  }

  .report-overlay-content {
    padding-right: 12px;
    padding-left: 12px;
  }

  .report-overlay-competitor dl {
    grid-template-columns: 1fr;
  }
}
