:root {
  --ink: #17222c;
  --muted: #687580;
  --soft: #f5f7f9;
  --line: #dfe5ea;
  --brand-primary: #344c66;
  --brand-primary-hover: #263b50;
  --brand-primary-soft: #eaf0f5;
  --brand-primary-border: #bccbd8;
  --brand-focus: rgb(52 76 102 / 28%);
  --brand-shadow: rgb(52 76 102 / 18%);
  --success: #205d47;
  --success-soft: #edf5f0;
  --success-border: #cfe0d6;
  --white: #fff;
  --warning: #946218;
  --danger: #a44339;
  --shadow: 0 14px 40px rgb(52 76 102 / 10%);
  --radius: 14px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f8faf9;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
label[for],
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary,
label[for] {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--brand-focus);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.auth-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: radial-gradient(circle at 50% 0%, rgb(52 76 102 / 11%), transparent 42%), #f8fafb;
}
.auth-card {
  width: min(420px, 100%);
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.auth-card .brand-mark {
  margin-bottom: 28px;
}
.auth-card h1 {
  margin-bottom: 10px;
  font-size: 34px;
  letter-spacing: -1.4px;
}
.auth-card > p {
  min-height: 22px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.login-form {
  display: grid;
  gap: 9px;
}
.login-form label {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
}
.login-form input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
}
.login-form input:focus {
  border-color: var(--brand-primary);
}
.login-form .button,
.auth-card > .button {
  width: 100%;
  margin-top: 14px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--brand-primary);
  color: white;
  font-size: 13px;
  font-weight: 750;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 44px;
}
.start-screen {
  padding-top: 72px;
  scroll-margin-top: 88px;
}
.start-copy {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}
.eyebrow,
.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.6px;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -2.4px;
}
.start-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
h2 {
  margin-bottom: 7px;
  font-size: 20px;
  letter-spacing: -0.5px;
}
h3 {
  margin-bottom: 7px;
  font-size: 16px;
  letter-spacing: -0.25px;
}
#notice {
  max-width: 920px;
  margin: 18px auto 0;
  padding: 13px 16px;
  border: 1px solid var(--success-border);
  border-radius: 10px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 12px;
  opacity: 1;
  transition: opacity 180ms ease;
}
#notice.is-dismissing {
  opacity: 0;
}
#notice.reopen-success {
  border-color: var(--brand-primary-border);
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
}
#notice.error {
  border-color: #efd1cc;
  background: #fff3f1;
  color: var(--danger);
}

.setup-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.35fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}
.card,
.analysis-progress-card,
.company-list-panel,
.company-detail-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgb(20 44 35 / 3%);
}
.card {
  padding: 26px;
}
.upload-card {
  box-shadow: var(--shadow);
  border-color: #d5e0da;
}
.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.card-kicker {
  margin-bottom: 7px;
  font-size: 9px;
}

textarea,
input[type="text"],
input[type="search"],
select {
  width: 100%;
  border: 1px solid #d9e1dd;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}
textarea:hover,
input:hover,
select:hover {
  border-color: #bdcbc4;
}
textarea:focus,
input:focus,
select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--brand-focus);
  outline: none;
}
#icp-text {
  min-height: 138px;
  resize: vertical;
  padding: 14px;
  font-size: 13px;
  line-height: 1.65;
}
textarea::placeholder,
input::placeholder {
  color: #98a39e;
}
.field-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
}

.dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border: 1.5px dashed #bdcec5;
  border-radius: 12px;
  background: #fbfcfb;
  transition: 0.18s ease;
}
.dropzone:hover,
.dropzone.dragging {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}
.dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.dropzone strong {
  font-size: 17px;
}
.dropzone > span:not(.upload-icon):not(.file-select) {
  color: var(--muted);
  font-size: 12px;
}
.dropzone small {
  color: #87928c;
  font-size: 10px;
}
.leads-drop {
  min-height: 238px;
  padding: 30px 18px;
}
.compact {
  min-height: 92px;
  margin-top: 12px;
  padding: 15px;
}
.compact strong {
  font-size: 12px;
}
.upload-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  font-size: 22px;
}
.file-select {
  margin: 6px 0 2px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--brand-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
}
.upload-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}
.file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid var(--brand-primary-border);
  border-radius: 9px;
  background: var(--brand-primary-soft);
  font-size: 11px;
}
.file-info strong,
.file-info small {
  display: block;
}
.file-info small {
  margin-top: 3px;
  color: var(--muted);
}

.advanced-details {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}
.advanced-details > summary {
  width: fit-content;
  list-style: none;
  font-weight: 650;
  color: #65736c;
}
.advanced-details > summary::-webkit-details-marker {
  display: none;
}
.advanced-details > summary::after {
  content: " +";
  color: var(--brand-primary);
}
.advanced-details[open] > summary::after {
  content: " −";
}
.technical-details {
  opacity: 0.9;
}
.settings-row,
.icp-controls {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 14px;
}
.settings-row label {
  flex: 1;
  min-width: 140px;
}
label {
  font-size: 11px;
}
select {
  margin-top: 5px;
  padding: 9px 10px;
  font-size: 11px;
}
.preview-help {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.icp-json {
  max-height: 260px;
  overflow: auto;
  padding: 12px;
  border-radius: 8px;
  background: #f4f6f5;
  font-size: 10px;
}
.icp-warnings {
  padding-left: 18px;
  color: var(--warning);
  font-size: 11px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.15s ease;
}
.button:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button:active:not(:disabled) {
  transform: translateY(0);
}
.button.primary {
  background: var(--brand-primary);
  color: white;
  box-shadow: 0 7px 18px var(--brand-shadow);
}
.button.primary:hover:not(:disabled) {
  background: var(--brand-primary-hover);
}
.button.secondary {
  border-color: #d4ded9;
  background: white;
  color: #405149;
}
.button.secondary:hover:not(:disabled),
.button.ghost:hover:not(:disabled) {
  background: var(--soft);
}
.button.ghost {
  background: transparent;
  color: var(--muted);
}
.button-large {
  min-height: 48px;
  padding-inline: 24px;
  font-size: 13px;
}
.button:disabled {
  background: #e1e7e4;
  color: #8d9993;
  cursor: not-allowed;
  box-shadow: none;
}
.text-button {
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 700;
}
.text-button:hover {
  text-decoration: underline;
}
.icon-button,
.icon-nav {
  border: 0;
  background: transparent;
  color: var(--muted);
}
.icon-button {
  padding: 4px 8px;
  font-size: 24px;
}
.icon-nav {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.icon-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.import-preview {
  max-width: 1120px;
  margin: 20px auto 0;
  padding: 20px 24px;
}
.preview-heading,
.preview-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.preview-heading {
  justify-content: space-between;
}
.preview-heading h2 {
  margin: 0;
  font-size: 16px;
}
.success-check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-weight: 800;
}
.import-summary {
  margin: 4px 0 0;
  color: var(--success);
  font-size: 12px;
  font-weight: 650;
}
.sheet-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sheet-control select {
  width: auto;
  min-width: 110px;
  margin: 0;
}
.import-details {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.mapping-panel {
  margin: 14px 0;
  padding: 16px;
  border-radius: 10px;
  background: var(--soft);
}
.header-select {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-select select {
  width: auto;
  margin: 0;
}
.column-mapping {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 10px;
}
.column-mapping label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.table-scroll {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 11px;
}
th,
td {
  padding: 12px;
  border-bottom: 1px solid #edf0ee;
  white-space: nowrap;
}
th {
  background: #fafbfa;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.lead-missing {
  color: #a37b55;
  font-style: italic;
}
.lead-invalid {
  opacity: 0.55;
}
.source-value {
  max-width: 420px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.company-selection {
  max-width: 1120px;
  margin: 24px auto 0;
  padding: 28px;
}
.company-selection-heading,
.company-selection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.company-selection-heading h2 {
  margin: 4px 0 6px;
  font-size: 26px;
}
.company-selection-heading p {
  margin: 0;
  color: var(--muted);
}
.company-selection-summary {
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.company-selection-toolbar {
  align-items: flex-end;
  margin: 24px 0 12px;
}
.quick-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quick-selection .button {
  min-height: 40px;
}
.quick-selection .button[aria-pressed="true"] {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px var(--brand-focus);
}
.quick-selection .all-choice {
  color: var(--muted);
}
.company-selection-search {
  width: min(330px, 100%);
}
.company-selection-search input {
  margin: 0;
}
.selection-count {
  margin: 12px 0;
  font-size: 12px;
  font-weight: 700;
}
.selection-nudge {
  margin: 0 0 14px;
  padding: 11px 13px;
  border-radius: 9px;
  background: #f7f5ed;
  color: #6b6142;
  font-size: 12px;
}
.company-selection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 620px;
  padding: 2px;
  overflow: auto;
}
.company-selection-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}
.company-selection-card:hover,
.company-selection-card:focus-within {
  border-color: var(--brand-primary-border);
  box-shadow: 0 5px 18px rgb(52 76 102 / 9%);
}
.company-selection-card.is-selected {
  border-color: var(--brand-primary-border);
  background: var(--brand-primary-soft);
}
.company-selection-card input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--brand-primary);
}
.company-selection-card-copy,
.company-selection-card-pills {
  display: flex;
  min-width: 0;
}
.company-selection-card-copy {
  flex-direction: column;
  gap: 7px;
}
.company-selection-card-title {
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 750;
}
.company-selection-card-pills {
  flex-wrap: wrap;
  gap: 6px;
}
.company-selection-card-meta {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.selection-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
}

.action-bar {
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 22px auto 72px;
}
.privacy-note {
  color: var(--muted);
  font-size: 10px;
}
.privacy-note span {
  color: var(--success);
  font-weight: 800;
  margin-right: 5px;
}
.action-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ready-hint {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}
.action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-section {
  padding: 58px 0 20px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 68px;
}
.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.results-heading h2 {
  font-size: 30px;
  letter-spacing: -1px;
}
.results-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.subtle-badge,
.status-pill,
.rating-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 650;
}
.subtle-badge {
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
}
.empty-state {
  padding: 42px 24px;
  text-align: center;
  border: 1px dashed #d5dfda;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 55%);
}
.empty-state h3 {
  margin-bottom: 8px;
}
.empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.analysis-progress-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 20px 22px 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.analysis-progress-card.is-running {
  border-color: #bed1e9;
  background: #fbfdff;
  box-shadow: 0 10px 32px rgb(48 86 136 / 10%);
}
.analysis-progress-card.is-complete {
  border-color: #cce2d5;
  background: #fcfefc;
}
.analysis-progress-card.is-partial {
  border-color: #ecd8b5;
  background: #fffdf9;
}
.analysis-progress-card.is-error {
  border-color: #efd0ca;
  background: #fffdfc;
}
.analysis-progress-copy {
  min-width: 0;
}
.analysis-progress-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.analysis-snake,
.advice-snake {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  overflow: hidden;
  background: #e8eef5;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.analysis-snake span,
.advice-snake span {
  display: block;
  width: 30%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #6c91c2 35%, #456fa8 65%, transparent);
  transform: translateX(-110%);
}
.analysis-progress-card.is-running .analysis-snake,
.advice-panel-loading .advice-snake {
  opacity: 1;
}
.analysis-progress-card.is-running .analysis-snake span,
.advice-panel-loading .advice-snake span {
  animation: snake-travel 1.9s ease-in-out infinite;
}
.analysis-progress-card h3 {
  margin: 5px 0 0;
}
.analysis-progress-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.analysis-progress-card #analyze-primary-status {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.analysis-progress-card .analysis-progress-message {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.analysis-error-details {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
}
.analysis-error-details summary {
  cursor: pointer;
  font-weight: 700;
}
.analysis-error-details p {
  margin-top: 5px;
}
.progress-track {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: #e9eeeb;
}
.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brand-primary);
  transition: width 0.4s ease;
}
.analysis-progress-card.is-running .progress-track span {
  position: relative;
  overflow: hidden;
  background: var(--brand-primary);
}
.analysis-progress-card.is-running .progress-track span::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 55%), transparent);
  content: "";
  transform: translateX(-100%);
  animation: progress-shimmer 1.7s ease-in-out infinite;
}
.company-workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(540px, 1.5fr);
  gap: 18px;
  align-items: start;
}
.company-list-panel,
.company-detail-panel {
  min-width: 0;
}
.company-list-panel {
  padding: 18px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.company-detail-panel {
  padding: 24px;
  min-height: 420px;
}
.company-list-heading > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.company-list-heading h3 {
  margin: 0;
}
.company-list-heading p {
  margin: 8px 0 12px;
}
.priority-tools {
  margin-bottom: 14px;
}
.search-field input {
  padding: 11px 12px;
  font-size: 12px;
}
.filter-details {
  margin-top: 9px;
}
.prioritized-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.filter-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.priority-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.priority-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    opacity 0.25s ease;
  animation: result-arrive 0.35s ease both;
}
.priority-card:hover {
  border-color: var(--brand-primary-border);
  box-shadow: 0 7px 20px rgb(52 76 102 / 8%);
  transform: translateY(-1px);
}
.priority-card-name {
  font-size: 14px;
  font-weight: 750;
}
.priority-card-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}
.priority-card-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
}
.priority-card-reasoning {
  display: -webkit-box;
  margin: 9px 0 11px;
  overflow: hidden;
  color: #4f5e57;
  font-size: 11px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.priority-cards-pending {
  margin-top: 8px;
}
.priority-card-placeholder {
  min-height: 92px;
  cursor: default;
}
.priority-card-placeholder:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}
.priority-card-progress {
  border-color: #cfddf2;
  background: #fbfdff;
  box-shadow: 0 7px 22px rgb(48 86 136 / 7%);
}
.priority-card-neutral {
  background: #fbfcfb;
}
.priority-card-attention {
  border-color: #efd9b8;
  background: #fffdf9;
}
.status-pill-activity {
  width: 18px;
  height: 3px;
  margin-right: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(63 96 145 / 18%);
}
.status-pill-activity span {
  display: block;
  width: 55%;
  height: 100%;
  border-radius: inherit;
  background: currentColor;
  transform: translateX(-110%);
  animation: snake-travel 1.5s ease-in-out infinite;
}
.priority-card-action {
  width: 100%;
  min-height: 35px;
  padding: 7px 10px;
}
.rating-badge,
.status-pill {
  padding: 5px 9px;
  border: 1px solid transparent;
}
.rating-strong {
  background: #e8f4ed;
  color: #1e6a49;
}
.rating-medium {
  background: #fff4df;
  color: #8a5b13;
}
.rating-weak,
.rating-unknown {
  background: #f3f1ef;
  color: #766c66;
}
.tone-ok {
  border-color: var(--success-border);
  background: var(--success-soft);
  color: var(--success);
}
.tone-progress {
  border-color: #cfddf2;
  background: #edf3fb;
  color: #3f6091;
}
.tone-attention {
  border-color: #efd0ca;
  background: #fff0ee;
  color: var(--danger);
}
.tone-neutral {
  border-color: var(--line);
  background: var(--soft);
  color: var(--muted);
}

.analyzed-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.analyzed-nav .analysis-controls {
  margin: 0;
}
.metric-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}
.analysis-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
#analyzed-lead-select {
  width: auto;
  max-width: 260px;
  margin: 0;
}
.analysis-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.analysis-status-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.analysis-summary {
  margin-bottom: 20px;
}
.analysis-summary h2 {
  margin-bottom: 10px;
  font-size: 29px;
  letter-spacing: -0.9px;
}
.analysis-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.company-tabs {
  display: flex;
  gap: 5px;
  margin: 0 -4px 20px;
  padding: 4px;
  border-radius: 10px;
  background: var(--soft);
}
.company-tab {
  flex: 1;
  min-height: 36px;
  padding: 7px 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.company-tab:hover {
  color: var(--ink);
}
.company-tab[aria-selected="true"] {
  background: white;
  color: var(--brand-primary);
  box-shadow: 0 1px 5px rgb(52 76 102 / 10%);
}
.company-tab-panel {
  min-height: 230px;
}
.analysis-block {
  padding: 19px 0;
  border-top: 1px solid var(--line);
}
.analysis-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.analysis-block h3 {
  margin-bottom: 10px;
}
.analysis-block h4 {
  margin: 14px 0 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.company-confirmation,
.company-analysis-stale {
  margin: 18px 0;
  padding: 20px;
  border: 1px solid #d8d0bf;
  border-radius: 14px;
  background: #fffaf0;
}

.company-confirmation h3,
.company-analysis-stale h3 {
  margin: 4px 0 6px;
}

.company-candidate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.company-candidate-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.company-candidate-card h4,
.company-candidate-card p {
  margin: 0 0 8px;
}

.company-candidate-cvr {
  font-weight: 700;
}

.company-confirmation-error {
  color: var(--danger, #9b2c2c);
  font-weight: 600;
}

.company-analysis-stale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 700px) {
  .company-analysis-stale {
    align-items: stretch;
    flex-direction: column;
  }
}
.analysis-block p,
.analysis-block li {
  font-size: 12px;
  line-height: 1.65;
}
.analysis-block ul,
.analysis-block ol {
  padding-left: 19px;
}
.analysis-collapsible summary {
  display: flex;
  align-items: center;
}
.analysis-collapsible summary h3 {
  margin: 0;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.company-fact {
  padding: 12px;
  border-radius: 9px;
  background: var(--soft);
}
.company-fact span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}
.company-fact strong,
.company-fact a {
  font-size: 12px;
  overflow-wrap: anywhere;
}

.account-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0 !important;
  list-style: none;
}
.contact-card {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card:last-child {
  border: 0;
}
.contact-card-name {
  font-size: 13px;
  font-weight: 750;
}
.contact-card-title {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.contact-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.swot-editor {
  padding: 0;
  border: 0;
  background: transparent;
}
.swot-editor-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
}
.swot-editor-heading h3 {
  margin: 0;
}
.swot-intro {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 11px;
}
.swot-status-note {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.swot-status-approved {
  color: var(--success);
}
.swot-status-stale {
  color: var(--warning);
}
.swot-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.swot-card {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
}
.swot-card-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
}
.swot-card-heading h4 {
  margin: 0;
  color: var(--ink);
  font-size: 10px;
}
.swot-card-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 800;
}
.swot-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.swot-point {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 6px;
  align-items: start;
}
.swot-point textarea {
  min-height: 54px;
  resize: vertical;
  padding: 9px 10px;
  font-size: 11px;
  line-height: 1.5;
}
.swot-remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #9ca6a1;
  font-size: 17px;
}
.swot-remove:hover {
  background: #fff0ee;
  color: var(--danger);
}
.swot-add {
  margin-top: 9px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 750;
}
.swot-empty-state,
.swot-approval-help {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
}
.swot-approval-help {
  margin-top: 13px;
  color: var(--warning);
}
.swot-editor > .button {
  margin-top: 14px;
}

.advice-panel {
  position: relative;
  overflow: hidden;
  animation: result-arrive 0.35s ease both;
}
.advice-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.advice-heading h3 {
  margin: 5px 0 0;
}
.advice-ready-status {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.advice-panel-error {
  padding: 17px;
  border: 1px solid #efd9b8;
  border-radius: 11px;
  background: #fffdf9;
}
.advice-panel-error h3 {
  margin: 6px 0 12px;
}
.advice-skeleton {
  max-width: 600px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}
.advice-skeleton span {
  display: block;
  height: 10px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eeeb;
}
.advice-skeleton span::after {
  display: block;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 75%), transparent);
  content: "";
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}
.advice-skeleton .skeleton-title {
  width: 54%;
  height: 16px;
  margin-top: 0;
}
.advice-skeleton .skeleton-line-short {
  width: 72%;
}
.pitch-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 15px;
  align-items: stretch;
}
.pitch-card {
  position: relative;
  min-width: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #d8e1dc;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 24px rgb(52 76 102 / 7%);
  animation: result-arrive 0.4s ease both;
}
.pitch-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand-primary);
  content: "";
}
.pitch-card:only-child {
  max-width: 620px;
}
.pitch-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}
.pitch-card-number {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 800;
}
.pitch-card-label {
  margin: 0;
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.pitch-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  text-transform: none;
}
.pitch-card-rationale {
  max-width: 58ch;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #edf0ee;
}
.pitch-card-rationale .metric-label {
  display: block;
  margin-bottom: 7px;
}
.pitch-card-rationale p {
  margin: 0;
  color: #46554e;
  font-size: 12px;
  line-height: 1.65;
}

@keyframes snake-travel {
  0% {
    transform: translateX(-110%);
  }
  55% {
    transform: translateX(235%);
  }
  100% {
    transform: translateX(340%);
  }
}
@keyframes progress-shimmer {
  to {
    transform: translateX(100%);
  }
}
@keyframes skeleton-shimmer {
  to {
    transform: translateX(210%);
  }
}
@keyframes result-arrive {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.evidence-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 !important;
  list-style: none;
}
.evidence-type {
  display: inline-block;
  margin-right: 5px;
  padding: 3px 6px;
  border-radius: 5px;
  background: var(--soft);
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}
.evidence-fact {
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
}
.evidence-sources {
  color: #929c97;
  font-size: 9px;
}
.source-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.source-badges span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
}
.source-used {
  border-color: var(--success-border) !important;
  background: var(--success-soft);
  color: var(--success);
}
.source-unused {
  color: #a5aea9;
}
.provenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 17px;
}
.provenance-card {
  padding: 12px;
  border-radius: 9px;
  background: var(--soft);
}
.provenance-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
}
.provenance-card span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.single-analysis-details {
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.analysis-lead-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.analysis-lead-label select {
  width: auto;
  margin: 0;
}
.batch-summary-ok {
  color: var(--success);
}
.batch-summary-warning {
  color: var(--warning);
}
dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 26px 80px rgb(19 39 31 / 25%);
}
dialog::backdrop {
  background: rgb(13 28 22 / 36%);
  backdrop-filter: blur(3px);
}
.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.dialog-heading h2 {
  margin: 0;
}
/* --- History sidebar: a quiet, compact analysis-session list beside the
   main workspace (ChatGPT-style history as a layout/interaction reference
   only — no branding, icons or colors copied from it). */
.app-shell {
  display: flex;
  align-items: flex-start;
}
.app-shell main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  margin: 0;
}
.history-sidebar {
  flex: 0 0 252px;
  width: 252px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 12px 13px 14px;
  background: linear-gradient(180deg, #f1f5f8 0%, #f7f9fa 48%, #f3f6f8 100%);
  border-right: 1px solid #d7e0e7;
  overflow-y: auto;
}
.history-sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 2px 5px 11px;
}
.sidebar-logo {
  display: block;
  height: auto;
  width: auto;
  max-width: 166px;
  max-height: 46px;
  object-fit: contain;
}
.sidebar-product-label {
  padding-left: 2px;
  color: #657585;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.history-new-button {
  width: 100%;
  justify-content: flex-start;
  font-weight: 600;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}
.history-new-button:hover:not(:disabled) {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
}
.history-search {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px 9px 36px;
  border-color: #d2dce4;
  background-color: rgb(255 255 255 / 82%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23697987' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px 50%;
  background-size: 15px;
  font-size: 12.5px;
}
.history-status {
  min-height: 1em;
  color: var(--muted);
  font-size: 0.85em;
  padding: 0 4px;
}
.history-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}
.history-group-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin: 0;
  min-height: 34px;
  padding: 5px 7px 5px 3px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #667786;
  cursor: pointer;
  border-radius: 6px;
}
.history-group-toggle:hover,
.history-group-toggle:focus-visible {
  background: var(--brand-primary-soft);
}
.history-group-chevron {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  transition: transform 120ms ease;
  color: var(--brand-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
.history-group-toggle[aria-expanded="true"] .history-group-chevron {
  transform: rotate(90deg);
}
.history-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.history-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 7px 9px 7px 11px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.history-item:hover,
.history-item:focus-visible {
  background: rgb(255 255 255 / 72%);
}
.history-item[aria-current="true"] {
  padding-left: 8px;
  background: var(--brand-primary-soft);
  border-color: var(--brand-primary-border);
  border-left: 3px solid var(--brand-primary);
}
.history-item-title {
  color: #263746;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.history-item-meta {
  color: #71808d;
  font-size: 10.5px;
  margin-top: 2px;
}
.sidebar-profile {
  position: relative;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #d5dfe6;
}
.profile-menu-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: none;
  background: transparent;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}
.profile-menu-button:hover,
.profile-menu-button:focus-visible {
  background: var(--brand-primary-soft);
}
.profile-initials {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}
.profile-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.profile-name {
  color: #293b4a;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-email {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-menu-chevron {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}
.profile-menu {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 6px;
  right: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 4px;
  z-index: 5;
}
.profile-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 8px 10px;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.profile-menu-item:hover,
.profile-menu-item:focus-visible {
  background: var(--brand-primary-soft);
}
.sidebar-toggle-button {
  display: none;
}
.sidebar-scrim {
  display: none;
}
@media (max-width: 980px) {
  .sidebar-toggle-button {
    display: inline-flex;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 25;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid #d1dce5;
    border-radius: 9px;
    background: rgb(255 255 255 / 94%);
    color: var(--brand-primary-hover);
    box-shadow: 0 5px 18px rgb(35 58 76 / 12%);
    backdrop-filter: blur(10px);
  }
  .history-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    height: 100vh;
    box-shadow: var(--shadow);
    transform: translateX(-100%);
    transition: transform 180ms ease;
  }
  .history-sidebar.is-open {
    transform: translateX(0);
  }
  .sidebar-scrim:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 29;
    background: rgb(13 28 22 / 36%);
  }
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
footer strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  main {
    padding-inline: 24px;
  }
  .setup-grid,
  .company-workspace,
  .company-selection-list {
    grid-template-columns: 1fr;
  }
  .company-list-panel {
    max-height: none;
  }
  .company-detail-panel {
    min-height: 320px;
  }
}
@media (max-width: 640px) {
  .auth-screen {
    padding: 16px;
  }
  .auth-card {
    padding: 28px 22px;
  }
  main {
    padding-inline: 14px;
  }
  .start-screen {
    padding-top: 68px;
  }
  h1 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }
  .start-copy {
    margin-bottom: 30px;
  }
  .card,
  .company-detail-panel {
    padding: 19px;
  }
  .action-bar,
  .results-heading,
  .analysis-progress-card {
    align-items: stretch;
    flex-direction: column;
  }
  .action-controls {
    align-items: stretch;
    flex-direction: column;
  }
  .ready-hint {
    max-width: none;
    text-align: left;
  }
  .action-buttons {
    justify-content: flex-end;
  }
  .results-heading {
    align-items: flex-start;
  }
  .analysis-progress-card .button {
    width: 100%;
  }
  .swot-card-grid,
  .pitch-card-grid,
  .criteria-grid,
  .company-facts,
  .provenance-grid {
    grid-template-columns: 1fr;
  }
  .analyzed-nav {
    align-items: stretch;
    flex-direction: column;
  }
  #analyzed-lead-select {
    flex: 1;
    max-width: none;
  }
  .prioritized-filters {
    grid-template-columns: 1fr;
  }
  .preview-heading {
    align-items: flex-start;
  }
  .company-selection-heading,
  .company-selection-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .company-selection-summary {
    white-space: normal;
  }
  .company-selection-search {
    width: 100%;
  }
  .quick-selection .button {
    flex: 1 1 calc(33.333% - 8px);
  }
  .sheet-control {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
