:root {
  --bg: #0b0f1a;
  --bg-grad: radial-gradient(1200px 600px at 10% -20%, #1a2238 0%, #0b0f1a 60%);
  --surface: #131826;
  --surface-2: #1a2032;
  --surface-3: #232a3c;
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.24);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --cyan: #38bdf8;
  --amber: #fbbf24;
  --emerald: #34d399;
  --rose: #f43f5e;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-grad);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.app {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

.app.is-setup {
  grid-template-areas:
    "header header"
    "grid lab"
    "chart chart"
    "tests tests";
}

.app.is-training {
  grid-template-areas:
    "header header"
    "grid metrics"
    "grid controls"
    "chart chart"
    "tests tests";
}

@media (max-width: 980px) {
  .app.is-setup {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "header"
      "grid"
      "lab"
      "metrics"
      "controls"
      "chart"
      "tests";
  }

  .app.is-training {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "header"
      "grid"
      "metrics"
      "controls"
      "chart"
      "tests";
  }
}

.topbar {
  grid-area: header;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.brand h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.brand .subtitle {
  margin: 2px 0 0;
  color: var(--text-dim);
  font-size: 13px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.speed-text {
  color: var(--text-muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.connection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.connection .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-dim);
}

.connection.is-connected .dot {
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
}

.connection.is-disconnected .dot {
  background: var(--rose);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
}

.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status.is-training {
  color: var(--cyan);
  border-color: rgba(56, 189, 248, 0.45);
}

.status.is-training .dot {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
  animation: pulse 1.6s ease-in-out infinite;
}

.status.is-paused {
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.45);
}

.status.is-paused .dot {
  background: var(--amber);
}

.status.is-done {
  color: var(--emerald);
  border-color: rgba(52, 211, 153, 0.45);
}

.status.is-done .dot {
  background: var(--emerald);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.65;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  min-width: 0;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.card-head h2 {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.card-head p {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--text-dim);
}

.grid-card {
  grid-area: grid;
  display: flex;
  flex-direction: column;
}

.grid-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-radius: var(--radius-md);
  padding: 12px;
  min-height: 0;
}

#grid-canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.legend {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legend-bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #0d0887,
    #5402a3,
    #9c179e,
    #da4f77,
    #fc9f4f,
    #f0f921
  );
}

.legend-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-dim);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-variant-numeric: tabular-nums;
}

.legend-labels strong {
  color: var(--text-muted);
  font-weight: 600;
}

.setup-lab-card {
  grid-area: lab;
}

.setup-card.hidden,
.setup-lab-card.hidden,
.metrics-card.hidden,
.controls-card.hidden,
.chart-card.hidden,
.hidden {
  display: none;
}

.palette {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.palette-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 11px;
  cursor: grab;
  touch-action: none;
  transition:
    border-color 120ms,
    background 120ms,
    color 120ms;
}

.palette-item:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

.palette-item.is-active {
  border-color: rgba(56, 189, 248, 0.55);
  background: rgba(56, 189, 248, 0.08);
  color: var(--cyan);
}

.palette-thumb {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(11, 15, 26, 0.45);
  overflow: hidden;
}

.palette-thumb img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  pointer-events: none;
}

.palette-label {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.setup-validation {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.45;
}

.grid-setup-panel {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.lab-panel {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
}

.lab-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.lab-head h3 {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lab-reset-btn {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  padding: 6px 10px;
  cursor: pointer;
}

.lab-reset-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.lab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.lab-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 8px;
  align-items: center;
}

.lab-field-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lab-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
}

.hp-info-btn {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
  color: var(--cyan);
  font-size: 12px;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 120ms,
    border-color 120ms;
}

.hp-info-btn:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.45);
}

.lab-field input[type="range"] {
  width: 100%;
}

.lab-field input[type="number"] {
  width: 100%;
  background: rgba(11, 15, 26, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  padding: 6px 8px;
  font-size: 12px;
  font-family: "JetBrains Mono", "Consolas", monospace;
}

.lab-field input[type="number"]:focus-visible {
  outline: none;
  border-color: rgba(56, 189, 248, 0.55);
}

.lab-validation {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}

.lab-validation.is-error {
  color: var(--rose);
}

.lab-validation.is-ready {
  color: var(--emerald);
}

.setup-validation.is-error {
  color: var(--rose);
}

.setup-validation.is-ready {
  color: var(--emerald);
}

.setup-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.start-training-btn {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 120ms,
    border-color 120ms,
    opacity 120ms;
}

.start-training-btn:hover:not(:disabled) {
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.7);
}

.start-training-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.import-run-btn {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: var(--radius-md);
  background: rgba(251, 191, 36, 0.08);
  color: var(--amber);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 120ms,
    border-color 120ms;
}

.import-run-btn:hover {
  background: rgba(251, 191, 36, 0.16);
  border-color: rgba(251, 191, 36, 0.65);
}

.drag-ghost {
  position: fixed;
  z-index: 1000;
  width: 44px;
  height: 44px;
  margin-left: -22px;
  margin-top: -22px;
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.drag-ghost img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.status.is-setup {
  color: var(--text-muted);
  border-color: var(--border-strong);
}

.status.is-setup .dot {
  background: var(--text-dim);
}

.metrics-card {
  grid-area: metrics;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.stat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  line-height: 1.1;
  min-width: 0;
  word-break: break-word;
}

.stat-value.cyan {
  color: var(--cyan);
}

.stat-value.amber {
  color: var(--amber);
}

.controls-card {
  grid-area: controls;
}

.controls-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctl {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition:
    background 120ms,
    border-color 120ms,
    color 120ms;
  text-align: left;
}

.ctl:hover {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}

.ctl span {
  flex: 1;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-bottom-width: 2px;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.ctl-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 12px 4px;
}

.ctl-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.speed-buttons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.speed-buttons button {
  padding: 8px 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background 120ms,
    border-color 120ms,
    color 120ms,
    transform 120ms;
}

.speed-buttons button:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.speed-buttons button.active {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.55);
  color: var(--cyan);
}

.chart-card {
  grid-area: chart;
}

.chart-stage {
  position: relative;
  height: 220px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 10px;
}

#chart-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.legend-inline {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  align-items: center;
}

.legend-inline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-inline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.cyan {
  background: var(--cyan);
}

.dot.amber {
  background: var(--amber);
}

#chart-subtitle.is-converged {
  color: var(--emerald);
}

.tests-card {
  grid-area: tests;
}

.tests-card.hidden {
  display: none;
}

.tests-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-family: "JetBrains Mono", "Consolas", monospace;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--text-muted);
  white-space: nowrap;
}

.tests-summary.is-pass {
  color: var(--emerald);
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(52, 211, 153, 0.08);
}

.tests-summary.is-fail {
  color: var(--rose);
  border-color: rgba(244, 63, 94, 0.45);
  background: rgba(244, 63, 94, 0.08);
}

.tests-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.test-case {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  overflow: hidden;
}

.test-case.is-pass {
  border-color: rgba(52, 211, 153, 0.28);
}

.test-case.is-fail {
  border-color: rgba(244, 63, 94, 0.35);
}

.test-case-head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background 120ms;
}

.test-case-head:hover {
  background: rgba(255, 255, 255, 0.03);
}

.test-case-chevron {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--text-dim);
  transition: transform 160ms ease;
}

.test-case.is-open .test-case-chevron {
  transform: rotate(90deg);
}

.test-case-status {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.test-case-status.is-pass {
  background: rgba(52, 211, 153, 0.18);
  color: var(--emerald);
}

.test-case-status.is-fail {
  background: rgba(244, 63, 94, 0.18);
  color: var(--rose);
}

.test-case-title {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  color: var(--text);
}

.test-case-index {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--text-dim);
  font-family: "JetBrains Mono", "Consolas", monospace;
}

.test-case-body {
  display: none;
  padding: 0 12px 12px 46px;
  border-top: 1px solid var(--border);
}

.test-case.is-open .test-case-body {
  display: block;
}

.test-case-desc {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.test-case-io {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.test-io-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
}

.test-io-label {
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
  padding-top: 2px;
}

.test-io-value {
  margin: 0;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(11, 15, 26, 0.55);
  border: 1px solid var(--border);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 11.5px;
  color: var(--text-muted);
  white-space: pre-wrap;
  word-break: break-word;
}

.test-io-value.is-pass {
  color: var(--emerald);
}

.test-io-value.is-fail {
  color: var(--rose);
}

.howto-open-btn {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  padding: 6px 12px;
  cursor: pointer;
}

.howto-open-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(4px);
}

.modal-overlay.hidden {
  display: none;
}

.modal-panel {
  width: min(520px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.howto-panel {
  width: min(560px, 100%);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--border);
}

.modal-head h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.modal-close-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.howto-steps {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.howto-step h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

.howto-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.howto-figures {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.howto-figure {
  width: 44px;
  height: 44px;
  object-fit: contain;
  image-rendering: pixelated;
  background: rgba(11, 15, 26, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.howto-diagram {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(11, 15, 26, 0.55);
  border: 1px solid var(--border);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 12px;
  color: var(--amber);
  text-align: center;
}

.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border);
}

.howto-dismiss-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  cursor: pointer;
}

.modal-primary-btn {
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.14);
  color: var(--cyan);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  cursor: pointer;
}

.modal-primary-btn:hover {
  background: rgba(56, 189, 248, 0.22);
}

.hp-info-panel {
  width: min(480px, 100%);
}

.hp-info-equation {
  margin: 0;
  padding: 14px 20px;
  background: rgba(11, 15, 26, 0.65);
  border-bottom: 1px solid var(--border);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--amber);
  white-space: pre-wrap;
  word-break: break-word;
}

.hp-info-body {
  padding: 14px 20px 0;
}

.hp-info-body p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.hp-info-tip {
  margin: 8px 20px 18px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  font-size: 12px;
  color: var(--emerald);
  line-height: 1.45;
}
