:root {
  --bg: #f5f8fc;
  --panel: #ffffff;
  --panel-2: #eef3fb;
  --line: #d7e2f0;
  --text: #0f172a;
  --muted: #5b6b82;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --sky: #38bdf8;
  --indigo: #4f46e5;
  --gold: #c2410c;
  --max: 1180px;
  --header-h: 68px;
  --table-head-h: 34px;
  /*--grad: linear-gradient(135deg, #2563eb 0%, #38bdf8 52%, #6366f1 100%);*/
  --grad: #4656e7;
  --grad-btn: linear-gradient(135deg, #2563eb, #4f46e5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c3cede transparent;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #c3cede transparent;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #c3cede;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9aabc0;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  margin: 0;
  background:
    radial-gradient(720px 380px at 88% -8%, rgba(56, 189, 248, 0.28), transparent 58%),
    radial-gradient(640px 420px at 6% 12%, rgba(37, 99, 235, 0.16), transparent 52%),
    radial-gradient(520px 280px at 70% 38%, rgba(99, 102, 241, 0.1), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-deep);
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

p {
  margin: 0;
}

.ico {
  display: block;
  flex-shrink: 0;
}

.flag-lt {
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
  border-radius: 2px;
}

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--panel) 78%, transparent);
  backdrop-filter: blur(16px);
}

.header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
}

.header-toggle:hover {
  color: var(--blue);
  background: var(--panel-2);
}

.header-toggle-close {
  display: none;
}

.header-backdrop {
  display: none;
}

.header.is-open .header-toggle-bars {
  display: none;
}

.header.is-open .header-toggle-close {
  display: block;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.brand-logo {
  display: block;
  height: 28px;
  width: auto;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
}

.header-nav a:not(.btn):hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--grad-btn);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.22);
  cursor: pointer;
}

.btn:hover {
  color: #fff;
  filter: brightness(1.06);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-ghost:hover {
  color: var(--blue);
  background: var(--panel-2);
}

.hero {
  padding: 48px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 12px 6px 8px;
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, #fff 70%, #dbeafe);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(30px, 4.6vw, 46px);
}

.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  max-width: 46ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.ai-panel {
  position: relative;
  overflow: hidden;
  width: min(100%, 340px);
  padding: 18px 22px 20px;
  border: 1px solid #d9e2f0;
  border-radius: 12px;
  background: #fff;
  background-size: auto, 40px 40px;
}

.ai-waves {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

.ai-waves .wave {
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
}

.ai-waves .wave-a {
  stroke: #60a5fa;
  animation: wave-drift 7s ease-in-out infinite;
}

.ai-waves .wave-b {
  stroke: #818cf8;
  animation: wave-drift 9s ease-in-out infinite reverse;
}

.ai-waves .wave-c {
  stroke: #38bdf8;
  animation: wave-drift 6s ease-in-out infinite 0.4s;
}

.ai-panel-body {
  position: relative;
}

.ai-panel-body span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-panel-body span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
  animation: pulse 1.8s ease-in-out infinite;
}

.ai-panel-body b {
  display: block;
  margin: 10px 0 6px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(44px, 6vw, 64px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.ai-panel-body small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.ai-panel-body small.stat-positions {
  margin-top: 8px;
  font-size: 13px;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.05); }
}

@keyframes grid-drift {
  to { background-position: 0 0, 40px 0; }
}

@keyframes wave-drift {
  0%,
  100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-28px) translateY(7px); }
}

@media (prefers-reduced-motion: reduce) {
  .ai-panel,
  .ai-waves .wave,
  .ai-panel-body span i,
  .partners-viewport {
    animation: none;
    width: 100%;
  }

  .partners-viewport .partners-list[aria-hidden="true"] {
    display: none;
  }

  .partners-list {
    flex: 1 1 auto;
    width: 100%;
  }
}

.board {
  padding: 4px 0 80px;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.board-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.board-suggestion {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}

.board-suggestion:hover {
  color: #000;
  text-decoration-thickness: 1.5px;
}

.board-suggestion.is-on {
  font-weight: 700;
}

.toolbar-left {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.toolbar-right {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
}

.robot-pick {
  position: relative;
  flex: 0 0 auto;
}

.robot-pick-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
}

.robot-pick-toggle:hover,
.robot-pick-toggle[aria-expanded="true"] {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  color: var(--blue);
}

.robot-pick-toggle.is-on {
  background: color-mix(in srgb, var(--blue) 12%, #fff);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--blue) 35%, white);
}

.robot-pick .multi-menu {
  top: calc(100% + 6px);
  z-index: 9;
}

.compare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.compare-btn:hover {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  color: var(--blue);
}

.board-toggle {
  flex-wrap: nowrap;
}

.snapshot-pick {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.snapshot-pick[hidden] {
  display: none;
}

.snapshot-pick select {
  width: auto;
  min-width: 180px;
  min-height: 44px;
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-wrap .ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.search,
select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
}

.search {
  padding-left: 42px;
}

.search:focus,
select:focus {
  outline: 2px solid color-mix(in srgb, var(--blue) 55%, white);
  outline-offset: 1px;
}

.metric {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.metric button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.metric button.is-on {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.table-wrap {
  overflow: visible;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.06);
}

.table-scroll {
  min-width: 0;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

th,
td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

td small {
  color: var(--muted);
  font-size: 11px;
}

th {
  position: sticky;
  z-index: 4;
  background: #f6f9fd;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 1px 0 var(--line);
}

thead tr:first-child th {
  top: var(--header-h);
  height: var(--table-head-h);
}

thead tr.filters th {
  top: calc(var(--header-h) + var(--table-head-h));
  z-index: 5;
}

thead tr.filters th:has(.multi-toggle[aria-expanded="true"]) {
  z-index: 8;
}

.sort {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.sort::after {
  content: "↕";
  opacity: 0.35;
  font-size: 9px;
}

.sort.is-asc::after {
  content: "↑";
  opacity: 1;
  color: var(--blue);
}

.sort.is-desc::after {
  content: "↓";
  opacity: 1;
  color: var(--blue);
}

.sort.is-on {
  color: var(--text);
}

.multi {
  position: relative;
}

.multi-toggle {
  width: 100%;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.multi-toggle.is-on {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  color: var(--blue);
}

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

.multi-menu label[hidden],
.multi-group[hidden],
.multi-empty[hidden] {
  display: none;
}

.multi-menu {
  position: absolute;
  z-index: 6;
  top: calc(100% + 6px);
  left: 0;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-height: 300px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.multi-search {
  flex-shrink: 0;
  padding: 8px 8px 6px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.filters .multi-search input,
.multi-search input {
  width: 100%;
  min-height: 32px;
  padding: 0 10px 0 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f9fd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%235b6b82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3-3'/%3E%3C/svg%3E") no-repeat 9px center;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  text-align: left;
}

.filters .multi-search input:focus,
.multi-search input:focus {
  outline: 2px solid color-mix(in srgb, var(--blue) 45%, white);
  outline-offset: 0;
  border-color: color-mix(in srgb, var(--blue) 40%, var(--line));
  background-color: #fff;
}

.multi-search input::-webkit-search-cancel-button {
  appearance: none;
}

.multi-list {
  overflow: auto;
  padding: 6px;
}

.multi-empty {
  margin: 0;
  padding: 10px 8px;
  color: var(--muted);
  font-size: 12px;
}

.multi-group {
  padding: 8px 8px 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.multi-menu label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.multi-menu label:hover,
.multi-menu .multi-option:hover {
  background: #f4f8ff;
}

.multi-menu .multi-option {
  display: block;
  width: 100%;
  padding: 6px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.multi-menu .multi-option.is-on {
  background: #f4f8ff;
  color: var(--blue);
}

.multi-menu input {
  width: 13px;
  height: 13px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.filters th {
  padding: 6px 8px 8px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.filters input:not([type="checkbox"]),
.filters select {
  width: 100%;
  min-width: 0;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  box-shadow: none;
}

.robot-ico {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.multi.is-end .multi-menu {
  left: auto;
  right: 0;
}

.multi-menu label .robot-ico {
  width: 14px;
  height: 14px;
}

.city-col {
  display: none;
}

table.is-cities .city-col {
  display: table-cell;
}

.filters input:focus,
.filters select:focus {
  outline: 2px solid color-mix(in srgb, var(--blue) 55%, white);
  outline-offset: 0;
}

.filters-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.filters-clear:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--blue) 35%, var(--line));
}

.filters-clear[hidden] {
  display: none;
}

.filters .num input {
  width: 84px;
  margin-left: auto;
  text-align: right;
}

td.num,
th.num {
  text-align: right;
  font-family: "IBM Plex Mono", monospace;
  overflow: visible;
}

.delta {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.delta.up {
  color: #047857;
}

.delta.down {
  color: #b42318;
}

.score-tip {
  position: relative;
  display: inline-block;
  text-align: right;
}

.score-tip-hit {
  display: inline-block;
  cursor: help;
}

.score-tip-card {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 8;
  min-width: 168px;
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  color: var(--text);
  text-align: left;
  white-space: nowrap;
}

.score-tip-card::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  left: 0;
  height: 8px;
}

.score-tip:hover .score-tip-card,
.score-tip:focus-within .score-tip-card {
  display: block;
}

.score-tip-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.score-tip-row b {
  margin-left: auto;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

tbody tr:hover,
tbody tr:has(.score-tip:hover) {
  position: relative;
  z-index: 3;
}

.rank {
  width: 44px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.rank span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2em;
}

.rank.gold span,
.rank.silver span,
.rank.bronze span {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.rank.gold span {
  color: #b45309;
  border: 1.5px solid #e8b84a;
}

.rank.silver span {
  color: #64748b;
  border: 1.5px solid #94a3b8;
}

.rank.bronze span {
  color: #9a3412;
  border: 1.5px solid #c47a4a;
}

.name {
  font-size: 13px;
  font-weight: 600;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.brand-link:hover {
  color: var(--blue);
}

.brand-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.18s ease;
}

.brand-link:hover .brand-chevron,
.brand-link[aria-expanded="true"] .brand-chevron {
  color: var(--blue);
}

.brand-link[aria-expanded="true"] .brand-chevron {
  transform: rotate(180deg);
}

tr.is-open td {
  background: #f7faff;
  border-bottom-color: transparent;
}

.brand-presence-row td {
  padding: 0 10px 12px;
  background: #f7faff;
  white-space: normal;
}

.brand-presence {
  padding: 12px 14px 14px;
  border: 1px solid color-mix(in srgb, var(--blue) 16%, var(--line));
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.05);
}

.brand-presence-title {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-presence-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.brand-presence-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-presence-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.brand-presence-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.bp-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.bp-info {
  min-width: 0;
}

.bp-industry {
  font-size: 13px;
  font-weight: 600;
}

.bp-info small,
.bp-alias {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.bp-scores {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  white-space: nowrap;
}

.industry-link {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.industry-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.stats-btn {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.stats-btn:hover,
.stats-btn:focus-visible {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  color: var(--blue);
  outline: none;
}

.stats-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  width: min(440px, calc(100vw - 28px));
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.stats-drawer.is-open {
  pointer-events: auto;
  transform: translateX(0);
}

.stats-drawer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 48px rgba(15, 23, 42, 0.12);
}

.stats-drawer-close {
  position: absolute;
  top: 14px;
  z-index:999;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
}

.stats-drawer-head {
  flex-shrink: 0;
  z-index: 2;
  overflow: visible;
  padding: 22px 52px 12px 22px;
}

.stats-drawer-head h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.stats-drawer-head h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-drawer-head p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stats-drawer-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 0 22px 8px;
}

.stats-drawer-scroll h3 {
  margin: 18px 0 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats-drawer-scroll h3:first-child {
  margin-top: 4px;
}

.stats-drawer-cta {
  flex-shrink: 0;
  padding: 12px 22px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.stats-drawer-cta[hidden] {
  display: none;
}

.stats-drawer-cta .report-cta {
  margin-top: 0;
}

.stats-drawer-cta .report-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .stats-drawer {
    transition: none;
  }
}

.method-tip {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.method-tip-btn {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.method-tip-btn:hover,
.method-tip.is-open .method-tip-btn {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  color: var(--blue);
}

.method-tip-card {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 6;
  width: min(320px, calc(100vw - 72px));
  padding: 12px 14px 14px;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
  white-space: normal;
}

.method-tip.is-open .method-tip-card,
.method-tip:hover .method-tip-card,
.method-tip:focus-within .method-tip-card {
  display: block;
}

.method-tip-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.method-tip-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.method-tip-scores {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.score-method {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.score-group {
  margin-top: 16px;
}

.score-group > header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.score-group > header h3 {
  margin: 0;
}

.score-group > header b,
.score-child h4 b {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.score-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.score-child {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.score-child h4 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.hit-industry {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.stats-loading,
.stats-empty,
.stats-more {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.prompt-hits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prompt-hits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  white-space: normal;
}

.prompt-hits li:last-child {
  border-bottom: 0;
}

.hit-pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eef3fb;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.hit-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
}

.hit-pts {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.prompt-hits .badge {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 1px;
}

.prompt-hits .badge.lt {
  background: #dbeafe;
  color: #1d4ed8;
}

.prompt-hits .badge.global {
  background: #ede9fe;
  color: #5b21b6;
}

.prompt-hits .badge.chatgpt {
  background: #dcfce7;
  color: #166534;
}

.prompt-hits .badge.gemini {
  background: #ffedd5;
  color: #c2410c;
}

.competitor-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.competitor-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.competitor-list li:last-child {
  border-bottom: 0;
}

.competitor-list b {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.competitor-list b small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
}

.prompt-hits li.is-teaser,
.competitor-list li.is-teaser {
  position: relative;
  overflow: hidden;
}

.prompt-hits li.is-teaser::after,
.competitor-list li.is-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 42%, #fff 88%);
  pointer-events: none;
}

.report-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  border-radius: 16px;
  background:
    radial-gradient(220px 80px at 100% 0%, rgba(56, 189, 248, 0.18), transparent 70%),
    #f8fbff;
}

.report-cta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.report-cta-row > div {
  min-width: 0;
  flex: 1 1 auto;
}

.report-cta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.report-cta strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.report-cta p.report-cta-fast {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 0;
  padding: 6px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, #0f766e 14%, white);
  color: #0f766e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.report-cta-fast b {
  font-weight: 800;
}

.order-page {
  padding: 36px 0 64px;
}

.order-aside {
  width: 100%;
  margin: 40px 0 0;
}

.order-card {
  position: relative;
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.06);
}

.order-card-price {
  position: absolute;
  top: 22px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  line-height: 1;
}

.order-card-price s {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.order-card-price s[hidden] {
  display: none;
}

.order-card-price b {
  color: #0f766e;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

#order-step-1 h1 {
  padding-right: 92px;
}

.order-card[hidden] {
  display: none;
}

.order-card .eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-card h1 {
  margin: 0 0 22px;
  font-size: 32px;
}

.order-card h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.order-card > p:not(.subscribe-msg) {
  margin: 10px 0 22px;
  color: var(--muted);
}

.order-card > .subscribe-msg {
  margin: 14px 0 0;
}

.order-price {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 0 0 22px;
}

.order-price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.order-price-was {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.order-price-was[hidden] {
  display: none;
}

.order-price b {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.order-price > span {
  color: var(--muted);
  font-size: 14px;
  padding-bottom: 4px;
}

.order-price s {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: color-mix(in srgb, #64748b 70%, transparent);
}

.order-price-was em {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: color-mix(in srgb, #0f766e 12%, white);
  color: #0f766e;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-price.is-sale b,
.order-price.is-discount b {
  color: #0f766e;
}

.cta-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
  gap: 2px;
  padding-top: 1px;
  text-align: right;
}

.cta-price s {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.cta-price b {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0f766e;
}

.order-code-wrap {
  position: relative;
  display: block;
}

.order-code-wrap input {
  padding-right: 40px;
}

.order-code-spin {
  position: absolute;
  top: 50%;
  right: 14px;
  display: none;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid color-mix(in srgb, var(--blue) 30%, white);
  border-top-color: var(--blue);
  border-radius: 50%;
}

.order-code-spin.is-on {
  display: block;
  animation: order-code-spin 0.7s linear infinite;
}

.order-code-hint {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.order-code-hint.is-ok {
  color: #166534;
}

.order-code-hint.is-err {
  color: #991b1b;
}

.order-vs {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.order-vs-lead {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.order-vs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-vs-chips[hidden] {
  display: none;
}

.order-vs-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 6px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  text-align: left;
}

.order-vs-chip b {
  font-weight: 600;
}

.order-vs-chip small {
  color: var(--muted);
}

.order-vs-chip-actions {
  display: inline-flex;
  gap: 2px;
}

.order-vs-chip button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--muted);
  font: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.order-vs-chip .order-vs-edit:hover {
  color: var(--blue-deep);
}

.order-vs-chip .order-vs-remove:hover {
  color: #991b1b;
}

.order-vs .btn-ghost {
  justify-self: start;
}

.order-vs-card .search-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.modal-card.order-vs-card {
  overflow: visible;
}

.order-vs-card .field:focus-within {
  position: relative;
  z-index: 3;
}

.order-vs-card .company-results {
  z-index: 30;
}

.order-vs-card .company-results button {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-vs-card .company-results button span {
  display: inline;
  margin: 0;
  line-height: 1.2;
}

.modal .order-vs-card input.search {
  padding-left: 42px;
  background: #fff;
}

.order-vs-card .btn {
  width: 100%;
}

.order-niches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.order-niches[hidden] {
  display: none;
}

.order-niches button {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.order-niches button:hover,
.order-niches button.is-on {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  background: color-mix(in srgb, var(--blue) 10%, #fff);
}

@keyframes order-code-spin {
  to {
    transform: rotate(360deg);
  }
}

.order-form .field input,
.order-form .field textarea {
  width: 100%;
  max-width: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
}

.order-form .field textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.order-form .field input:focus,
.order-form .field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--blue) 55%, white);
  outline-offset: 1px;
}

.field-req {
  color: #dc2626;
  font-style: normal;
  font-weight: 700;
}

.field-hint {
  margin-top: -4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.field-error {
  color: #b42318;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.field-error[hidden] {
  display: none;
}

.field.is-invalid .field-optional,
.field.is-invalid .field-hint {
  display: none;
}

.order-form .field.is-invalid input,
.order-form .field.is-invalid textarea {
  border-color: #f0b4b0;
  background: #fff8f8;
}

.order-form .field.is-invalid input:focus,
.order-form .field.is-invalid textarea:focus {
  outline-color: #f0b4b0;
}

.order-form .field .order-code-wrap input {
  padding-right: 40px;
}

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

.order-step-2 {
  width: min(1040px, 100%);
  margin: 0 auto;
  animation: order-step-in 0.4s ease;
}

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

@keyframes order-step-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.order-box {
  width: 100%;
  margin: 0;
}

.order-box h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.order-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.order-back:hover {
  color: var(--blue);
}

.order-summary-box {
  background:
    radial-gradient(220px 90px at 100% 0%, rgba(56, 189, 248, 0.16), transparent 70%),
    #fff;
}

.order-summary {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
}

.order-summary th,
.order-summary td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.order-summary th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-summary th:nth-child(2),
.order-summary td:nth-child(2),
.order-summary th:nth-child(3),
.order-summary td:nth-child(3) {
  text-align: right;
  white-space: nowrap;
}

.order-summary td strong {
  display: block;
}

.order-summary td small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.order-summary td s {
  display: block;
  color: #94a3b8;
  font-size: 13px;
  text-decoration: line-through;
}

.order-summary td s[hidden] {
  display: none;
}

.order-totals {
  margin: 0 0 18px;
}

.order-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.order-totals .is-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.order-summary-box .btn {
  width: 100%;
  justify-content: center;
}

.order-buyer {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.order-buyer legend {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.order-buyer-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-buyer-choices label {
  cursor: pointer;
}

.order-buyer-choices input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-buyer-choices span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.order-buyer-choices input:checked + span {
  border-color: var(--blue);
  background: color-mix(in srgb, var(--blue) 8%, white);
  color: var(--blue-deep);
}

.order-billing[hidden] {
  display: none;
}

.order-privacy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 18px;
}

.order-privacy .check {
  margin: 0;
}

.order-privacy .check span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.order-privacy .field-error {
  padding-left: 25px;
}

.order-privacy.is-invalid .check input {
  outline: 1px solid #b42318;
  outline-offset: 1px;
}

.order-summary-box .subscribe-msg {
  margin: 0 0 14px;
}

.order-cart-empty {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.order-cart-empty h1 {
  margin: 0 0 10px;
}

.order-cart-empty p {
  margin: 0 0 18px;
  color: var(--muted);
}

.order-cart-empty .btn {
  display: inline-flex;
}

.order-cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.order-transfer {
  max-width: 560px;
  margin: 0 auto;
}

.order-transfer h1 {
  margin: 0 0 10px;
}

.order-transfer > p {
  margin: 0 0 18px;
  color: var(--muted);
}

.order-transfer .order-totals {
  margin: 0 0 18px;
}

.order-form input[readonly] {
  background: #f7f8fb;
  color: var(--muted);
}

.order-plan-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8f7ff;
  cursor: pointer;
}

.order-plan-option[hidden] {
  display: none !important;
}

.order-plan-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--indigo);
}

.order-plan-option span {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}

.order-plan-option small {
  color: var(--muted);
  font-size: 12px;
}

.order-plan-option em {
  flex: 0 0 auto;
  color: var(--text);
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
}

.order-plan-option:has(input:checked) {
  border-color: color-mix(in srgb, var(--indigo) 42%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--indigo) 18%, transparent);
}

.order-form[hidden] {
  display: none !important;
}

.industry-suggest {
  position: relative;
  display: block;
  font-weight: 400;
}

.industry-suggest-list {
  position: absolute;
  z-index: 6;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 240px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.industry-suggest-list button {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.industry-suggest-list button:last-child {
  border-bottom: 0;
}

.industry-suggest-list button:hover,
.industry-suggest-list button.is-on {
  background: #f4f8ff;
}

.industry-suggest-list button span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.order-form .btn {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
}

.order-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .report-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.name span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.bar {
  width: 80px;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #e4ebf5;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--grad);
}

.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.pager div {
  display: flex;
  gap: 8px;
}

.disclaimer {
  max-width: 72ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.board-error-link {
  display: inline;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.board-error-link:hover,
.board-error-link:focus-visible {
  color: var(--text);
}

.partners {
  margin: 8px 0 0;
  padding: 28px 0 32px;
}

.partners-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partners-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 80px, #000 calc(100% - 80px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 80px, #000 calc(100% - 80px), transparent);
}

.partners-frame::before,
.partners-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.partners-frame::before {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, #000 20%, transparent);
  mask-image: linear-gradient(to right, #000 20%, transparent);
}

.partners-frame::after {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, #000 20%, transparent);
  mask-image: linear-gradient(to left, #000 20%, transparent);
}

.partners-viewport {
  display: flex;
  width: 200%;
  animation: partners-marquee 32s linear infinite;
}

.partners-list {
  display: flex;
  flex: 0 0 50%;
  width: 50%;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners-list li {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 56px;
  padding: 0 12px;
}

.partners-list img {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(160px, 100%);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.partners-item-stack img {
  height: 54px;
  max-width: min(120px, 100%);
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.empty[hidden] {
  display: none;
}

.empty {
  padding: 36px 16px;
  color: var(--muted);
  text-align: center;
}

.empty-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
}

.empty-spin {
  width: 14px;
  height: 14px;
  border: 2px solid color-mix(in srgb, var(--blue) 22%, white);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: order-code-spin 0.7s linear infinite;
}

.empty-link {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.empty-link:hover {
  color: var(--blue-deep);
}

.cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 8px 0 40px;
  padding: 28px;
  border: 1px solid #dae2f0;
  border-radius: 6px;
  background: #fff;
}

.cta h2 {
  font-size: 32px;
}

.cta h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta.is-solo {
  grid-template-columns: 1fr;
}

.watch {
  margin-bottom: 40px;
}

.watch-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px 36px;
  align-items: center;
  position: relative;
  padding: 28px;
  border: 1px solid #dae2f0;
  border-radius: 6px;
  background: #fff;
}

.watch-price {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  padding: 7px 12px 8px;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, #fff 88%, #dbeafe);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.watch-price b {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.watch-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.watch-price.is-sale {
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  padding: 8px 12px 9px;
  border-radius: 14px;
}

.watch-price s {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: color-mix(in srgb, #64748b 75%, transparent);
}

.watch-price s[hidden] {
  display: none;
}

.watch-card:has(.watch-preview) {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
}

.watch-card h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.4vw, 32px);
}

.watch-card h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.watch-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.watch-card .cta-actions {
  margin-top: 0;
}

.watch-card .watch-points {
  margin: 0 0 20px;
}

.watch-preview {
  display: block;
  color: inherit;
  text-decoration: none;
}

.watch-preview-frame {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--blue) 16%, var(--line));
  border-radius: 18px;
  background: #f1f5f9;
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(4px);
  transform-origin: 70% 60%;
  transition: transform 0.28s ease;
}

.watch-preview:hover .watch-preview-frame {
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(0);
}

.watch-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 620;
  object-fit: cover;
  object-position: top center;
}

.watch-points {
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.watch-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.watch-points li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.watch-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.watch-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-video-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(37, 99, 235, 0.42), transparent 56%),
    linear-gradient(135deg, #0f172a 0%, #1d4ed8 52%, #0e7490 100%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.watch-video-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.watch-video-play .ico {
  margin-left: 3px;
}

.watch-video-page {
  margin: 8px 0 28px;
}

.ad {
  padding: 22px;
  border: 1px dashed color-mix(in srgb, var(--blue) 28%, var(--line));
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.ad-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.ad p {
  margin: 0 0 16px;
}

.ad .btn {
  box-shadow: none;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}

.modal-card h2 {
  font-size: 28px;
  padding-right: 32px;
}

.modal-card h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-card > p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
}

.compare-card {
  display: flex;
  flex-direction: column;
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  padding: 0;
}

.compare-card.is-pick {
  overflow: visible;
}

.compare-head {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  padding: 28px 28px 8px;
  background: #fff;
}

.compare-head h2 {
  margin: 0;
}

.compare-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.compare-head p[hidden] {
  display: none;
}

.compare-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 4px 28px 20px;
}

.compare-card.is-pick .compare-body {
  overflow: visible;
}

.compare-foot {
  flex-shrink: 0;
  z-index: 3;
  padding: 12px 28px 20px;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.06);
}

.compare-foot[hidden] {
  display: none;
}

.compare-pickers {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.compare-side {
  position: relative;
  z-index: 1;
}

.compare-side:focus-within {
  z-index: 5;
}

.compare-card .company-results {
  z-index: 30;
}

.compare-card .company-results button {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.compare-card .company-results button span {
  display: inline;
  margin: 0;
  line-height: 1.2;
}

.compare-hit-name {
  min-width: 0;
  color: var(--text);
  font-size: 14px;
}

.compare-hit-meta {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.compare-vs {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-side .field {
  margin-bottom: 10px;
}

.compare-card .btn {
  width: 100%;
  justify-content: center;
}

.compare-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 56px 16px;
  color: var(--muted);
}

.compare-loading[hidden],
#compare-pick[hidden],
#compare-result[hidden] {
  display: none;
}

.compare-spin {
  width: 36px;
  height: 36px;
  border: 3px solid color-mix(in srgb, var(--blue) 18%, white);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: order-code-spin 0.7s linear infinite;
}

.compare-loading p {
  margin: 0;
  font-size: 15px;
}

.compare-sticky {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: -4px -28px 18px;
  padding: 10px 28px 14px;
  background: #fff;
}

.compare-summary {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.compare-summary.is-a,
.compare-summary.is-b {
  border-color: color-mix(in srgb, var(--blue) 28%, var(--line));
  background: color-mix(in srgb, var(--blue) 7%, white);
}

.compare-mains,
.compare-only {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 22px;
}

.compare-card h3 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-mains p,
.compare-empty {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.compare-main-row {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.compare-main-row + .compare-main-row {
  margin-top: 12px;
}

.compare-main-row .compare-order {
  margin-top: 0;
}

.compare-order {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.compare-order:hover {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  background: color-mix(in srgb, var(--blue) 10%, #fff);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 22px;
}

.compare-table th,
.compare-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.compare-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.compare-table th:nth-child(2),
.compare-table th:nth-child(3),
.compare-table td:nth-child(2),
.compare-table td:nth-child(3) {
  text-align: right;
  white-space: nowrap;
}

.compare-table small,
.compare-only small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.compare-table td.is-win {
  color: #0f766e;
  font-weight: 700;
}

.compare-only ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-only li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.compare-card .btn-ghost {
  margin: 0;
  background: #fff;
  color: var(--text);
}

.modal .field input,
.modal .field select,
.modal .field textarea {
  width: 100%;
  max-width: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
}

.modal .field textarea {
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.modal .field input:focus,
.modal .field select:focus,
.modal .field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--blue) 55%, white);
  outline-offset: 1px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
}

.check input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.cookie-bar[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-bar {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 16;
  width: min(400px, calc(100vw - 40px));
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.cookie-bar p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .btn {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
  box-shadow: none;
}

.cookie-policy {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
}

.cookie-modal {
  z-index: 22;
}

.cookie-opt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  cursor: pointer;
}

.cookie-opt strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.cookie-opt small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.cookie-opt input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.cookie-opt:has(input:disabled) {
  background: #f3f5f8;
  cursor: default;
}

.cookie-modal .cookie-actions {
  margin-top: 18px;
}

.subscribe {
  padding: 0 0 80px;
}

.subscribe-card {
  padding: 32px;
  border: 1px solid #dae2f0;
  border-radius: 6px;
  background: #fff;
}

.subscribe-card h2 {
  font-size: 32px;
}

.subscribe-card h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subscribe-card > p {
  max-width: 62ch;
  margin: 12px 0 22px;
  color: var(--muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.field[hidden] {
  display: none;
}

.field-optional {
  margin-top: -4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.field input[type="email"] {
  width: 100%;
  max-width: 420px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
}

.field input[type="email"]:focus {
  outline: 2px solid color-mix(in srgb, var(--blue) 55%, white);
  outline-offset: 1px;
}

.company-picker .search-wrap {
  width: 100%;
}

.company-picker .search-wrap .search {
  font-weight: 400;
}

.sub-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.sub-type {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.sub-type:has(input:checked) {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  background: linear-gradient(180deg, #f8fbff, #fff);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.sub-type input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.sub-type strong {
  display: block;
  font-size: 14px;
}

.sub-type small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.company-picker {
  position: relative;
  margin-bottom: 18px;
}

.company-results {
  position: absolute;
  z-index: 5;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 240px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.company-results button {
  display: flex;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.company-results button:last-child {
  border-bottom: 0;
}

.company-results button:hover,
.company-results button.is-on {
  background: #f4f8ff;
}

.company-results button span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.company-chosen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 8px;
}

.company-chosen button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--grad-btn);
  color: #fff;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.subscribe-msg {
  margin-top: 12px;
  font-size: 14px;
}

.subscribe-msg.is-ok {
  color: #047857;
}

.subscribe-msg.is-err {
  color: #b42318;
}

.legal {
  padding: 48px 0 80px;
}

.legal-card {
  max-width: 760px;
  padding: 8px 0 0;
}

.legal-card .eyebrow {
  margin-bottom: 14px;
}

.legal-card h1 {
  font-size: clamp(32px, 5vw, 48px);
}

.legal-card h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-card .lead {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.legal-card h2 {
  margin: 32px 0 10px;
  font-size: 22px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.legal-card li + li {
  margin-top: 6px;
}

.legal-card .cta-actions {
  margin-top: 28px;
}

.legal-card .btn {
  margin-top: 8px;
}

.legal-card .btn:not(.btn-ghost) {
  color: #fff;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer .disclaimer {
  margin: 0;
  max-width: none;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-row a {
  color: #888;
}

.footer strong {
  color: var(--text);
}

@media (max-width: 900px) {
  html.is-nav-open,
  html.is-nav-open body {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body {
    padding-top: var(--header-h);
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    backdrop-filter: none;
  }

  .cookie-modal,
  #board-error-modal,
  #compare-modal {
    z-index: 90;
  }

  .header-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  html.is-nav-open .header-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    z-index: 40;
    background: rgba(15, 23, 42, 0.22);
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 16px;
    border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
    background: #fff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  }

  .header.is-open .header-nav {
    display: flex;
  }

  .header-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }

  .header-nav a:last-child {
    border-bottom: 0;
  }

  .header-nav a[aria-current="page"] {
    color: var(--blue);
  }

  .table-wrap {
    overflow: hidden;
  }

  .table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #9aabc0 #eef3fb;
  }

  .table-scroll::-webkit-scrollbar {
    height: 8px;
  }

  .table-scroll::-webkit-scrollbar-track {
    background: #eef3fb;
    border-radius: 99px;
    margin: 0 10px 6px;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    background: #9aabc0;
    border-radius: 99px;
  }

  .table-scroll table {
    width: max-content;
    min-width: 780px;
  }

  .table-scroll #search {
    min-width: 240px;
  }

  .table-scroll th:nth-child(2),
  .table-scroll td:nth-child(2) {
    min-width: 220px;
  }

  .table-scroll th:nth-child(4),
  .table-scroll td:nth-child(4) {
    min-width: 150px;
  }

  .table-scroll th,
  .table-scroll thead tr:first-child th,
  .table-scroll thead tr.filters th {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
  }

  html.is-stats-open,
  html.is-stats-open body {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .stats-drawer {
    left: 0;
    width: 100%;
    z-index: 80;
    transform: translateY(110%);
  }

  .stats-drawer.is-open {
    transform: none;
  }

  .stats-drawer-panel {
    height: 100%;
    height: 100dvh;
    border-left: 0;
    box-shadow: none;
  }

  .stats-drawer-close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
  }

  .stats-drawer-head {
    position: relative;
    padding-top: max(22px, calc(env(safe-area-inset-top) + 12px));
  }

  .stats-drawer .method-tip {
    position: static;
  }

  .stats-drawer .method-tip-card {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    top: calc(100% + 6px);
    z-index: 8;
  }

  .stats-drawer-scroll {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .stats-drawer-cta {
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .toolbar,
  .cta,
  .watch-card,
  .watch-card:has(.watch-preview),
  .sub-types {
    grid-template-columns: 1fr;
  }

  .watch-preview-frame,
  .watch-preview:hover .watch-preview-frame {
    transform: none;
  }

  .watch-card:has(.watch-price) {
    row-gap: 16px;
  }

  .watch-price {
    position: static;
    justify-self: start;
    margin: 0;
  }

  .hero-visual {
    justify-content: stretch;
  }

  .ai-panel {
    width: 100%;
  }

  .footer-row,
  .pager {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 12px 0;
  }

  .brand-presence-list li {
    grid-template-columns: 36px minmax(0, 1fr) auto;
  }

  .bp-scores {
    grid-column: 2;
    white-space: normal;
  }

  .toolbar {
    display: flex;
    flex-direction: column;
  }

  .toolbar-left,
  .toolbar-right {
    flex-wrap: wrap;
    margin-left: 0;
    width: 100%;
  }

  .compare-pickers,
  .compare-mains,
  .compare-only {
    grid-template-columns: 1fr;
  }

  .compare-order {
    white-space: normal;
  }

  .compare-vs {
    margin: 0;
    text-align: center;
  }

  .snapshot-pick,
  .snapshot-pick select {
    width: 100%;
  }

  .partners-frame {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
    mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
  }

  .partners-frame::before,
  .partners-frame::after {
    width: 56px;
  }

  .partners-viewport {
    width: 400%;
  }

  .partners-list li {
    flex: 0 0 calc(100% / 6);
  }
}

.catalog-hero {
  padding: 72px 0 28px;
}

.catalog-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalog-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--muted);
}

.catalog-crumb a {
  color: var(--text);
}

.catalog-crumb-sep {
  color: var(--line);
}

.catalog-cta {
  margin: 20px 0 0;
}

.catalog-children {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.catalog-children a,
.catalog-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  font-size: 13px;
  text-decoration: none;
}

.catalog-children a:hover,
.catalog-links a:hover {
  border-color: color-mix(in srgb, var(--blue) 35%, var(--line));
  transform: translateY(-1px);
}

.catalog-page .board-suggestions {
  display: none;
}

.catalog-seo {
  padding: 48px 0 88px;
  color: var(--text);
}

.catalog-seo .wrap {
  max-width: 760px;
}

.catalog-seo p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.catalog-seo p:last-child {
  margin-bottom: 0;
}

.catalog-seo a {
  color: var(--blue);
}

.catalog-index {
  padding-bottom: 80px;
}

.catalog-groups {
  padding: 12px 0 40px;
}

.catalog-group {
  margin-bottom: 40px;
}

.catalog-group h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.catalog-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.catalog-links a {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.catalog-more {
  margin: 14px 0 0;
}

.catalog-more a {
  color: var(--blue);
}
