:root {
  --uart-purple: #5200ff;
  --uart-purple-dark: #3d00c2;
  --uart-magenta: #fb50ff;
  --uart-yellow: #ffe924;
  --uart-pink: #ff6aa0;
  --uart-orange: #fea048;
  --uart-black: #0a0a0a;
  --uart-white: #ffffff;
  --uart-bg: #f5f5f7;
  --uart-grey: #6b6b76;
  --uart-border: #e7e7ec;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--uart-bg);
  color: var(--uart-black);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand, .btn {
  font-family: "Unbounded", "Inter", sans-serif;
}

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

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

/* --- top bar --- */
.topbar {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  color: var(--uart-purple);
  letter-spacing: 0.02em;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.open-app-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--uart-black);
  color: var(--uart-white);
  white-space: nowrap;
}

/* Меню языков. Кнопка — код текущего языка, по нажатию под ней открывается
   список всех языков с названиями на своём языке. */
.lang-menu { position: relative; }
.lang-menu summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--uart-black);
  padding: 6px 12px; border-radius: 999px; border: 1.5px solid var(--uart-border);
}
.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu summary::after {
  content: ""; width: 6px; height: 6px; margin-left: 2px; margin-top: -3px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform .15s ease;
}
.lang-menu[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.lang-menu summary:focus-visible { outline: 2px solid var(--uart-purple); outline-offset: 2px; }
.lang-menu ul {
  position: absolute; right: 0; top: calc(100% + 6px); z-index: 20;
  margin: 0; padding: 6px; list-style: none; min-width: 150px;
  background: var(--uart-white); border: 1px solid var(--uart-border);
  border-radius: 14px; box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}
.lang-menu li a {
  display: block; padding: 10px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--uart-black);
}
.lang-menu li a:hover { background: var(--uart-border); }
.lang-menu li a.active { color: var(--uart-purple); }

/* --- hero / cover --- */
.hero {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--uart-purple) 0%, var(--uart-magenta) 100%);
  height: 160px;
  position: relative;
  overflow: hidden;
}

.hero img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .spark {
  position: absolute;
  top: 18px;
  left: 24px;
  width: 22px;
  height: 22px;
  background: var(--uart-yellow);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  opacity: 0.9;
  animation: uart-spark-twinkle 2.4s ease-in-out infinite;
  transform-origin: center;
}

/* Placeholder motion for the brand mark until the animated logo export from
   Figma is wired in — swap this for the real asset when available. */
.brand {
  animation: uart-brand-glow 3.2s ease-in-out infinite;
}

@keyframes uart-spark-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50% { transform: scale(1.3) rotate(18deg); opacity: 1; }
}

@keyframes uart-brand-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(82, 0, 255, 0)); }
  50% { filter: drop-shadow(0 0 8px rgba(82, 0, 255, 0.45)); }
}

@media (prefers-reduced-motion: reduce) {
  .hero .spark, .brand { animation: none; }
}

.profile-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: -48px;
  padding: 0;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid var(--uart-bg);
  background: var(--uart-white);
  object-fit: cover;
  flex-shrink: 0;
}

.avatar.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--uart-yellow);
  color: var(--uart-black);
  font-weight: 700;
  font-size: 34px;
}

/* Имя и иконки соцсетей — одной строкой. flex-wrap на случай длинного
   имени: на узком экране иконки переносятся под него, а не выдавливают
   имя за край. */
.name-block {
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.name-block .socials {
  margin-top: 0;
  padding: 0;
  gap: 6px;
}

.name-block .socials a.ico {
  width: 32px;
  height: 32px;
}

.name-block .socials a.ico svg {
  width: 16px;
  height: 16px;
}

.display-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.bio {
  margin-top: 14px;
  padding: 0 4px;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.socials {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 4px;
}

.socials a {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--uart-white);
  border: 1px solid var(--uart-border);
}

/* Иконочный вариант: круглая кнопка со значком сети вместо подписи. */
.socials a.ico {
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--uart-black);
}

.socials a.ico svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  display: block;
}

/* --- action buttons --- */
.actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.actions .btn {
  /* Ровно как на стейдже, и это решение владельца, а не недосмотр.
     Я менял это правило дважды за день, гоняясь за подписью, которая при
     min-width: 0 вылезает за края овала на узком экране. Оба раза ценой
     было то, что видно всегда: кнопки уезжали друг под друга. Стейдж
     показывает, как должно быть, и разница между ним и продом должна
     остаться ровно одна — «Забрать» вместо «Купить».
     Если подпись где-то вылезет, лечить надо подпись, а не раскладку. */
  flex: 1 1 140px;
  min-width: 0;
  white-space: nowrap;
}

.btn-primary { background: var(--uart-purple); color: var(--uart-white); }
.btn-primary:hover { background: var(--uart-purple-dark); }
.btn-outline { background: transparent; color: var(--uart-black); border: 1.5px solid var(--uart-black); }

/* Кнопка оплаты приходит с сервера выключенной и включается галочкой
   согласия. Раз она может быть выключенной — это должно быть видно, иначе
   человек жмёт и не понимает, почему ничего не происходит. */
.btn:disabled {
  background: var(--uart-border);
  color: var(--uart-grey);
  cursor: not-allowed;
}
.btn:disabled:hover { background: var(--uart-border); }

/* --- согласие с условиями на странице оплаты --- */
.terms-accept {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--uart-grey);
  cursor: pointer;
}
.terms-accept input {
  /* Палец попадает в квадратик 13 пикселей плохо, а промах здесь стоит
     покупки: кнопка оплаты без галочки выключена. */
  width: 20px;
  height: 20px;
  margin: 0;
  flex: none;
  accent-color: var(--uart-purple);
  cursor: pointer;
}
.terms-accept a { color: var(--uart-purple); }

/* --- products --- */
.section-title {
  margin: 36px 0 14px;
  padding: 0 4px;
  font-size: 18px;
  font-weight: 700;
}

/* Horizontal swipeable slider instead of a stacked grid — an author with
   many products (see config.MAX_PRODUCTS_PER_AUTHOR) would otherwise turn
   their page into a very long vertical scroll, especially on the narrow
   viewport most visitors arrive in (Telegram's in-app browser). Native
   scroll-snap needs no JS: works with touch swipe on mobile, and the
   visible scrollbar below lets desktop visitors drag it too. */
.products-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 14px;
  margin: 0 -2px;
}

.products-slider::-webkit-scrollbar { height: 6px; }
.products-slider::-webkit-scrollbar-track { background: transparent; }
.products-slider::-webkit-scrollbar-thumb {
  background: var(--uart-border);
  border-radius: 999px;
}

/* A lone product (see web/templates/profile.html) skips the slider
   entirely — nothing to swipe to — and goes back to a single full-width
   block, the same as before .products-slider existed. */
.products-single {
  display: block;
}

.card {
  background: var(--uart-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--uart-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 220px;
  width: 220px;
  scroll-snap-align: start;
}

.card-full {
  width: 100%;
  flex: 1 1 auto;
}

.card-cover {
  height: 140px;
  background: linear-gradient(135deg, var(--uart-yellow), var(--uart-pink));
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Wraps the cover + title + description in one tap target linking to the
   product page — kept separate from .card-footer below so the "Buy" link
   isn't nested inside this anchor (invalid HTML, breaks tap targets). */
.card-tap {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.card-text { padding: 14px 16px 0; display: flex; flex-direction: column; gap: 6px; flex: 1; }

.card-title { font-weight: 700; font-size: 15px; margin: 0; }

.card-desc {
  color: var(--uart-grey);
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
}

.card-footer {
  padding: 8px 16px 16px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price { font-weight: 700; font-size: 15px; }

.buy-btn {
  background: var(--uart-purple);
  color: var(--uart-white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
}

.empty-state {
  padding: 32px 16px;
  text-align: center;
  color: var(--uart-grey);
  background: var(--uart-white);
  border-radius: var(--radius-md);
  border: 1px dashed var(--uart-border);
}

/* --- footer --- */
.site-footer {
  margin-top: 48px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--uart-grey);
  font-size: 12px;
}

.site-footer .brand { font-size: 13px; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a { text-decoration: underline; text-underline-offset: 2px; }

/* --- terms / privacy --- */
.legal-page {
  margin-top: 28px;
  padding: 0 4px;
}

.legal-updated {
  color: var(--uart-grey);
  font-size: 13px;
  margin: 0 0 20px;
}

.legal-notice {
  background: var(--uart-bg);
  border: 1px dashed var(--uart-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--uart-grey);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 8px;
}

.legal-page .product-detail-desc {
  margin-top: 0;
}

/* --- 404 --- */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

/* --- product page --- */
.product-detail {
  margin-top: 28px;
  padding: 0 4px;
}

.product-detail-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.product-author {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--uart-purple);
}

.product-detail-price {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--uart-purple);
}

.product-detail-desc {
  margin-top: 14px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

/* --- landing page --- */
.landing-hero {
  margin-top: 32px;
  padding: 56px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--uart-purple) 0%, var(--uart-magenta) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.landing-spark {
  position: absolute;
  top: 22px;
  left: 28px;
}

.landing-headline {
  color: var(--uart-white);
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.landing-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto 28px;
}

.landing-cta {
  background: var(--uart-white);
  color: var(--uart-purple);
  display: inline-flex;
}

.landing-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--uart-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--uart-border);
  padding: 22px 20px;
}

.feature-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
}

.feature-desc {
  color: var(--uart-grey);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.landing-footer-cta {
  margin-top: 40px;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--uart-black);
  color: var(--uart-white);
  text-align: center;
}

.landing-footer-cta p {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
}

.landing-footer-btn {
  background: var(--uart-white);
  color: var(--uart-black);
  display: inline-flex;
}

/* --- TonConnect payment page --- */
.ton-pay-card {
  margin-top: 28px;
  background: var(--uart-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--uart-border);
  padding: 28px 24px;
  text-align: center;
}

.ton-amount {
  font-size: 34px;
  font-weight: 800;
  margin: 6px 0 2px;
}

.ton-amount-label {
  color: var(--uart-grey);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ton-connect-root {
  margin: 22px 0 10px;
  display: flex;
  justify-content: center;
}

.ton-pay-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.ton-status {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--uart-bg);
  font-size: 13.5px;
  color: var(--uart-grey);
}

.ton-status.paid {
  background: rgba(82, 0, 255, 0.08);
  color: var(--uart-purple-dark);
  font-weight: 600;
}

/* --- страница поддержки --- */
.support-label {
  font-size: 13px; color: var(--uart-grey); margin: 22px 0 8px;
  text-transform: uppercase; letter-spacing: .05em;
}
.sources { display: flex; flex-direction: column; gap: 8px; padding: 0 4px; }
.src {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding: 12px 16px; border-radius: 14px; cursor: pointer;
  background: transparent; border: 1.5px solid var(--uart-border);
  font-size: 14px; font-weight: 600; color: var(--uart-black); text-align: left;
}
.src em {
  font-style: normal; font-weight: 400; font-size: 12.5px; color: var(--uart-grey);
}
/* Выбранное видно рамкой, а не только цветом: на солнце и на плохом экране
   цветовая разница пропадает первой. */
.src.on {
  border-color: var(--uart-purple); color: var(--uart-purple);
}
/* Сеть ниже своего порога прячется. Правило нужно именно такое: у .src
   стоит display:flex, и он перебивает браузерное [hidden]{display:none},
   как это уже случилось однажды с кнопкой. */
.src[hidden] { display: none; }
/* Сеть, которая видна всегда, но ниже порога не выбирается (Tron). */
.src:disabled { opacity: .45; cursor: default; }
.net-menu .src:disabled:hover { background: transparent; }
/* То же и для кнопки: у .btn стоит display:inline-flex, и без этого правила
   скрытая кнопка остаётся на виду. Это уже ломалось однажды. */
.btn[hidden] { display: none; }
/* Сеть — раскрывающимся списком (решение владельца 16.09): восемь кнопок
   подряд делали страницу длинной. Свёрнутый список выглядит как поле с
   выбранной сетью, раскрытый висит поверх, как меню языков, и не сдвигает
   «Далее» вниз. */
.net-menu { position: relative; margin: 0 4px; }
.net-menu summary {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  border: 1.5px solid var(--uart-border); background: transparent;
  font-size: 14px; font-weight: 600; color: var(--uart-black);
}
.net-menu summary::-webkit-details-marker { display: none; }
.net-menu summary::after {
  content: ""; flex: none; width: 7px; height: 7px; margin: -4px 2px 0 0;
  border-right: 1.5px solid var(--uart-grey); border-bottom: 1.5px solid var(--uart-grey);
  transform: rotate(45deg); transition: transform .15s ease;
}
.net-menu[open] summary { border-color: var(--uart-purple); }
.net-menu[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.net-menu summary:focus-visible { outline: 2px solid var(--uart-purple); outline-offset: 2px; }
.net-menu .sources {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
  gap: 2px; padding: 6px;
  background: var(--uart-white); border: 1px solid var(--uart-border);
  border-radius: 14px; box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}
.net-menu .src { border-color: transparent; }
.net-menu .src:hover { background: var(--uart-bg); }
.net-menu .src.on { border-color: var(--uart-purple); }
/* Сколько дойдёт до автора. Число от маршрутизатора, поэтому стоит рядом с
   выбором, а не в мелком примечании: это главное, что человеку надо знать
   до перевода. */
.support-quote {
  margin: 12px 4px 0; padding: 0; font-size: 13.5px; color: var(--uart-grey);
}
/* Ссылки в согласии обязаны выглядеть ссылками: серым по серому их не
   нажмут, а уведомление, которое нельзя прочитать, уведомлением не является. */
.support-quote a { color: var(--uart-purple); text-decoration: underline; }
.pay-address { padding: 0 4px; margin: 14px 0 0; }
.pay-address code {
  display: block; padding: 14px 16px; border-radius: 14px;
  background: var(--uart-border); color: var(--uart-black);
  font-size: 13px; line-height: 1.5; word-break: break-all;
  font-family: ui-monospace, Menlo, Consolas, monospace;
}

/* Сумма — ползунком (решение владельца 16.09). Число над ним крупное:
   это то, что человек сейчас выбирает, и видно его должно быть с
   расстояния вытянутой руки. */
.amount-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 22px 4px 2px;
}
.amount-head .support-label { margin: 0; }
.amount-value {
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1.2;
  color: var(--uart-purple); font-variant-numeric: tabular-nums;
}
.amount-slider { padding: 4px 4px 0; }
.amount-slider input[type="range"] {
  --fill: 0%;
  -webkit-appearance: none; appearance: none;
  display: block; width: 100%; height: 32px; margin: 0;
  background: transparent; cursor: pointer;
  touch-action: pan-y;
}
.amount-slider input[type="range"]:focus { outline: none; }
.amount-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 6px; border-radius: 999px;
  background: linear-gradient(to right, var(--uart-purple) var(--fill), var(--uart-border) var(--fill));
}
.amount-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; box-sizing: border-box;
  width: 26px; height: 26px; margin-top: -10px; border-radius: 50%;
  background: var(--uart-white); border: 2px solid var(--uart-purple);
  box-shadow: 0 1px 4px rgba(10, 10, 10, .18);
}
.amount-slider input[type="range"]::-moz-range-track {
  height: 6px; border-radius: 999px; background: var(--uart-border);
}
.amount-slider input[type="range"]::-moz-range-progress {
  height: 6px; border-radius: 999px; background: var(--uart-purple);
}
.amount-slider input[type="range"]::-moz-range-thumb {
  box-sizing: border-box; width: 26px; height: 26px; border-radius: 50%;
  background: var(--uart-white); border: 2px solid var(--uart-purple);
  box-shadow: 0 1px 4px rgba(10, 10, 10, .18);
}
/* Фокус с клавиатуры виден: стрелками ползунок ходит по делениям. */
.amount-slider input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px rgba(82, 0, 255, .22);
}
.amount-slider input[type="range"]:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 5px rgba(82, 0, 255, .22);
}
/* Подписи шкалы стоят над своими делениями: центр бегунка ходит от 13px до
   «ширина минус 13px», отсюда поправка в calc. Крайние прижаты к краям,
   чтобы не вылезать за дорожку. */
.amount-scale {
  position: relative; height: 18px; margin-top: 2px;
  font-size: 12px; color: var(--uart-grey); font-variant-numeric: tabular-nums;
}
.amount-scale span {
  position: absolute; top: 0; white-space: nowrap;
  left: calc(13px + (100% - 26px) * var(--at));
  transform: translateX(-50%);
}
.amount-scale span:first-child { left: 0; transform: none; }
.amount-scale span:last-child { left: auto; right: 0; transform: none; }
/* Родная кнопка TonConnect рисует себя сама; здесь только место под неё. */
.ton-connect { display: flex; margin: 22px 4px 0; min-height: 40px; }
/* У .actions стоит display:flex, и он перебивает браузерное [hidden] —
   та же история, что с .src и .btn выше. */
.actions[hidden] { display: none; }

/* «Пожаловаться» на странице товара — тихой строкой. Приглушённый чёрный
   темы, а не белый: фон страницы светлый, и белым строка пропадала бы. */
.report-link {
  display: inline-block;
  margin: 18px 4px 0;
  font-size: 13px;
  color: rgba(10, 10, 10, .45);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 10, .18);
}
.report-link:hover { color: rgba(10, 10, 10, .75); }
