:root {
  --brand-cyan: #00bfff;
  --brand-indigo: #471aff;
  --brand-ink: #0f172a;
  --brand-muted: #64748b;
  --brand-line: rgba(148, 163, 184, 0.22);
  --brand-line-strong: rgba(15, 23, 42, 0.08);
  --brand-surface: rgba(255, 255, 255, 0.82);
  --brand-surface-soft: rgba(248, 250, 252, 0.94);
  --brand-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  --brand-shadow-lg: 0 28px 60px rgba(15, 23, 42, 0.14);
  --brand-radius: 24px;
  --brand-radius-lg: 30px;
}

.theme-body {
  min-height: 100vh;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top left, rgba(0, 191, 255, 0.16) 0, transparent 24%),
    radial-gradient(circle at top right, rgba(71, 26, 255, 0.12) 0, transparent 28%),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 20%, #f8fafc 100%);
  -webkit-font-smoothing: antialiased;
}

.theme-body header,
.theme-body .header {
  position: sticky;
  top: 10px;
  z-index: 20;
  margin: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.theme-body header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.76);
}

.theme-body header .header-inner,
.theme-body .header .header-inner {
  gap: 16px;
  padding: 14px 4px;
  position: relative;
}

.theme-body .logo {
  color: var(--brand-ink);
}

.theme-body .logo-mark {
  background: #10172a;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.theme-body .burger {
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.theme-body .burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}

.theme-body .burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.theme-body .burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.theme-body .burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.theme-body header nav,
.theme-body .nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.theme-body header nav a,
.theme-body .nav a {
  margin-left: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: #475569;
  transition:
    background 0.15s ease-out,
    color 0.15s ease-out,
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out;
}

.theme-body header nav a:hover,
.theme-body .nav a:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--brand-ink);
  transform: translateY(-1px);
}

.theme-body .nav-pill,
.theme-body .policy-link,
.theme-body .messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: rgba(255, 255, 255, 0.84);
}

.theme-body .nav-pill-max,
.theme-body .policy-link-max {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-indigo) 100%);
  box-shadow: 0 14px 28px rgba(71, 26, 255, 0.24);
}

.theme-body .nav-pill-tg,
.theme-body .policy-link-tg,
.theme-body .messenger-link-telegram {
  background: #f3fbff;
  border-color: rgba(34, 158, 217, 0.18);
  color: #0f3d66;
}

.theme-body footer {
  margin: 0 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.theme-body footer .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.theme-body .btn,
.theme-body .nav-pill,
.theme-body .policy-link,
.theme-body .messenger-link,
.theme-body .floating-cta-btn {
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out,
    color 0.15s ease-out;
}

.theme-body .btn:hover,
.theme-body .nav-pill:hover,
.theme-body .policy-link:hover,
.theme-body .messenger-link:hover,
.theme-body .floating-cta-btn:hover {
  transform: translateY(-1px);
}

.theme-body .btn-max {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-indigo) 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(71, 26, 255, 0.26);
}

.theme-body .btn-telegram {
  border-color: rgba(34, 158, 217, 0.2);
  background: #f3fbff;
  color: #0f3d66;
  box-shadow: 0 10px 20px rgba(34, 158, 217, 0.12);
}

.theme-body .btn-max:hover {
  box-shadow: 0 20px 36px rgba(71, 26, 255, 0.32);
}

.theme-body .btn-telegram:hover {
  box-shadow: 0 14px 26px rgba(34, 158, 217, 0.18);
}

.site-note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

.site-footer-card {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

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

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pay-pill {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 11px;
  background: rgba(248, 250, 252, 0.96);
  color: #374151;
}

.visual-band {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 252, 0.94) 100%);
  box-shadow: var(--brand-shadow-lg);
}

.visual-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.14) 0, transparent 30%),
    radial-gradient(circle at top left, rgba(71, 26, 255, 0.1) 0, transparent 24%);
  pointer-events: none;
}

.visual-band > * {
  position: relative;
  z-index: 1;
}

.visual-band-dark {
  border-color: rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.18) 0, transparent 34%),
    linear-gradient(160deg, #10172a 0%, #131f39 68%, #10253f 100%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.visual-band-dark::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08) 0, transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(0, 191, 255, 0.18) 0, transparent 30%);
}

.visual-band-dark,
.visual-band-dark p,
.visual-band-dark .visual-title,
.visual-band-dark .visual-copy,
.visual-band-dark .flow-step,
.visual-band-dark .chart-value {
  color: #f8fafc;
}

.visual-band-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.visual-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(71, 26, 255, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: #334155;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-band-dark .visual-kicker {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.88);
}

.visual-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

.visual-copy {
  max-width: 60ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #516276;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.metric-card-strong {
  border-color: rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.2) 0, transparent 34%),
    linear-gradient(160deg, #10172a 0%, #13213f 68%, #10304f 100%);
  color: #f8fafc;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: #6b7b8f;
}

.metric-card-strong .metric-label {
  color: rgba(248, 250, 252, 0.76);
}

.metric-value {
  display: block;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--brand-ink);
  margin-bottom: 8px;
}

.metric-card-strong .metric-value {
  color: #f8fafc;
}

.metric-meta {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  color: #516276;
}

.metric-card-strong .metric-meta {
  color: rgba(248, 250, 252, 0.74);
}

.flow-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: #0f172a;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.flow-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #5b6a7e;
  background: rgba(255, 255, 255, 0.5);
}

.visual-band-dark .flow-step {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.visual-band-dark .flow-arrow {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.76);
}

.diagram-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.diagram-card {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.diagram-orbit {
  position: relative;
  min-height: 280px;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at center, rgba(71, 26, 255, 0.08) 0, rgba(255, 255, 255, 0.92) 52%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  overflow: hidden;
}

.orbit-ring {
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(71, 26, 255, 0.18);
  border-radius: 999px;
}

.orbit-core,
.orbit-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  font-size: 12px;
  line-height: 1.35;
}

.orbit-core {
  top: 50%;
  left: 50%;
  min-width: 108px;
  min-height: 108px;
  padding: 16px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-indigo) 100%);
  color: #ffffff;
  border-color: transparent;
  font-weight: 700;
}

.orbit-node-top {
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node-right {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.orbit-node-bottom {
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node-left {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.chart-rows {
  display: grid;
  gap: 10px;
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(0, 120px) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.chart-label {
  font-size: 13px;
  line-height: 1.4;
  color: #526377;
}

.visual-band-dark .chart-label {
  color: rgba(248, 250, 252, 0.76);
}

.chart-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  overflow: hidden;
}

.chart-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.chart-fill-cyan {
  background: linear-gradient(90deg, #00bfff 0%, #35a6ff 100%);
}

.chart-fill-indigo {
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
}

.chart-fill-amber {
  background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
}

.chart-fill-rose {
  background: linear-gradient(90deg, #fb7185 0%, #ef4444 100%);
}

.chart-value {
  font-size: 12px;
  line-height: 1.2;
  color: #526377;
}

.visual-band-dark .chart-value {
  color: rgba(248, 250, 252, 0.78);
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.chip-card {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
}

.chip-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.25;
  color: var(--brand-ink);
}

.vin-page .page {
  overflow: clip;
}

.vin-page .container {
  max-width: 1120px;
}

.vin-page .nav,
.report-page .nav {
  display: none;
}

.vin-page .nav.is-open,
.report-page .nav.is-open {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.vin-page .header {
  top: 10px;
}

.vin-page .hero {
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 248, 252, 0.96) 100%);
}

.vin-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 191, 255, 0.16) 0, transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(71, 26, 255, 0.12) 0, transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.vin-page .hero-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 28px;
  padding: 52px 0 34px;
  align-items: stretch;
}

.vin-page .hero-left {
  max-width: 620px;
}

.vin-page .hero-badge {
  gap: 10px;
  margin-bottom: 18px;
}

.vin-page .hero-badge span {
  padding: 6px 12px;
  border: 1px solid rgba(71, 26, 255, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #334155;
}

.vin-page .hero-title {
  max-width: 11ch;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.vin-page .hero-title span {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vin-page .hero-text {
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #475569;
}

.vin-page .hero-cta-card {
  padding: 20px 20px 18px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.18) 0, transparent 34%),
    linear-gradient(160deg, #10172a 0%, #131f39 68%, #10253f 100%);
  color: #f8fafc;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.vin-page .hero-cta-title,
.vin-page .hero-cta-text,
.vin-page .hero-form-meta,
.vin-page .hero-form-meta strong {
  color: inherit;
}

.vin-page .hero-cta-title {
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.78;
}

.vin-page .hero-cta-text {
  color: rgba(248, 250, 252, 0.78);
}

.vin-page .hero-note {
  margin-top: 16px;
  max-width: 54ch;
  color: #64748b;
}

.vin-page .hero-preview {
  height: 100%;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 252, 0.98) 100%);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.vin-page .hero-preview-title,
.vin-page .card h3 {
  color: var(--brand-ink);
}

.vin-page .hero-preview-list li,
.vin-page .card,
.vin-page .blog-card-inner,
.vin-page details,
.vin-page .sources-wrap,
.vin-page .source-pill,
.vin-page .faq-icon {
  border-color: rgba(148, 163, 184, 0.18);
}

.vin-page .card,
.vin-page .blog-card-inner,
.vin-page .sources-wrap,
.vin-page details {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.vin-page .section-title {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.vin-page .section-text {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

.vin-page .blog-card-inner:hover {
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.vin-page .blog-card-link {
  text-decoration: none;
  color: #1d4ed8;
}

.vin-page .cta-inline p,
.vin-page details p {
  color: #64748b;
}

.vin-page .cta {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.18) 0, transparent 34%),
    linear-gradient(160deg, #10172a 0%, #131f39 68%, #10253f 100%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.vin-page .footer {
  background: transparent;
  border-top: none;
}

.vin-page .footer .footer-inner {
  padding-top: 4px;
}

.article-page .nav,
.legal-page .nav,
.dkp-page .nav {
  display: none;
}

.article-page .nav.is-open,
.legal-page .nav.is-open,
.dkp-page .nav.is-open {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.article-page main.container,
.legal-page main.container {
  max-width: 960px;
  padding-top: 28px;
  padding-bottom: 48px;
}

.dkp-page main.container {
  max-width: 1120px;
  padding-top: 28px;
  padding-bottom: 48px;
}

.article-page article,
.legal-page article {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(20px, 4vw, 42px);
  border-radius: var(--brand-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.96) 100%);
  box-shadow: var(--brand-shadow-lg);
}

.article-page article::before,
.legal-page article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.12) 0, transparent 30%),
    radial-gradient(circle at top left, rgba(71, 26, 255, 0.08) 0, transparent 24%);
  pointer-events: none;
}

.article-page article > *,
.legal-page article > * {
  position: relative;
  z-index: 1;
}

.article-page article h1,
.legal-page article h1 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-top: 6px;
  margin-bottom: 18px;
  color: var(--brand-ink);
}

.article-page article h2,
.legal-page article h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

.article-page article h3,
.legal-page article h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
  color: #162033;
}

.article-page article p,
.legal-page article p,
.article-page article ul,
.legal-page article ul,
.article-page article ol,
.legal-page article ol {
  font-size: 15px;
  line-height: 1.72;
  color: #42546b;
}

.article-page article a,
.legal-page article a {
  color: #1d4ed8;
}

.article-page .meta,
.legal-page .meta {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #64748b;
}

.article-page .note,
.legal-page .note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0, 191, 255, 0.14);
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, rgba(71, 26, 255, 0.06) 100%);
  color: #37506a;
}

.article-hero,
.legal-hero,
.dkp-hero,
.report-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.article-eyebrow,
.legal-eyebrow,
.dkp-eyebrow,
.report-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(71, 26, 255, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: #334155;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  text-wrap: balance;
}

.article-lead,
.legal-lead,
.dkp-lead,
.report-lead {
  max-width: 60ch;
  margin: 0;
  font-size: 18px;
  line-height: 1.68;
  color: #475569;
}

.article-pills,
.legal-pills,
.dkp-pills,
.report-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-pill,
.legal-pill,
.dkp-pill,
.report-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(248, 250, 252, 0.92);
  color: #4b5c71;
  font-size: 13px;
  line-height: 1.3;
}

.article-actions,
.legal-actions,
.dkp-actions,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.article-hero-grid,
.legal-hero-grid,
.dkp-hero-grid,
.report-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-hero-card,
.legal-hero-card,
.dkp-hero-card,
.report-hero-card {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.article-hero-card strong,
.legal-hero-card strong,
.dkp-hero-card strong,
.report-hero-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.3;
  color: var(--brand-ink);
}

.article-hero-card span,
.legal-hero-card span,
.dkp-hero-card span,
.report-hero-card span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: #526377;
}

.article-page .cta,
.legal-page .cta {
  position: relative;
  overflow: hidden;
  margin: 34px 0;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.18) 0, transparent 34%),
    linear-gradient(160deg, #10172a 0%, #131f39 68%, #10253f 100%);
  color: #f8fafc;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.article-page .cta > *,
.legal-page .cta > * {
  position: relative;
  z-index: 1;
}

.article-page .cta strong,
.legal-page .cta strong,
.article-page .cta div,
.legal-page .cta div {
  color: inherit;
}

.article-page .cta-actions,
.legal-page .cta-actions {
  max-width: 460px;
}

.article-page .cta .btn,
.legal-page .cta .btn {
  box-shadow: none;
}

.article-page .cta .btn-telegram,
.legal-page .cta .btn-telegram {
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.24);
}

.article-page .blog-links,
.legal-page .policy-links {
  margin: 34px 0 0;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--brand-shadow);
}

.article-page .blog-links h3,
.legal-page .policy-links h3 {
  margin-top: 0;
}

.article-page .blog-links a {
  display: block;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--brand-ink);
}

.article-page .blog-links a:last-child {
  margin-bottom: 0;
}

.article-page table {
  width: 100%;
  margin: 18px 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.article-page th,
.article-page td {
  padding: 10px 12px;
  text-align: left;
  border-right: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.article-page th:last-child,
.article-page td:last-child {
  border-right: none;
}

.article-page tr:last-child td {
  border-bottom: none;
}

.article-page th {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(71, 26, 255, 0.06) 100%);
  color: var(--brand-ink);
}

.legal-page .policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-page .policy-link {
  min-height: 44px;
}

.dkp-page .dkp-card {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.96) 100%);
  box-shadow: var(--brand-shadow-lg);
}

.dkp-page .dkp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.12) 0, transparent 30%),
    radial-gradient(circle at top left, rgba(71, 26, 255, 0.08) 0, transparent 24%);
  pointer-events: none;
}

.dkp-page .dkp-card > * {
  position: relative;
  z-index: 1;
}

.dkp-page .dkp-badge {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.12) 0%, rgba(71, 26, 255, 0.08) 100%);
  border: 1px solid rgba(71, 26, 255, 0.14);
  color: #2b1e89;
}

.dkp-page .DkpSection-pfMEr {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 18px 16px 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}

.dkp-page .DkpSection__title-fPGxZ {
  font-size: 20px;
  line-height: 1.15;
  color: var(--brand-ink);
}

.dkp-page .DkpSection__subtitle-yLClL,
.dkp-page .DkpSubjectInfo__caption-Fw4Le {
  color: #596b80;
}

.dkp-page .DkpSubjectInfo__clearFormAction-WID2h {
  color: #1d4ed8;
}

.dkp-page .dkp-sideband {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dkp-page .dkp-note {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.18) 0, transparent 34%),
    linear-gradient(160deg, #10172a 0%, #131f39 68%, #10253f 100%);
  color: #f8fafc;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.dkp-page .dkp-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.dkp-page .dkp-note p,
.dkp-page .dkp-note li {
  color: rgba(248, 250, 252, 0.8);
}

.report-page {
  padding-bottom: 90px;
}

.report-page main {
  padding: 28px 0 40px;
}

.report-page .report-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.report-page .report-title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  color: var(--brand-ink);
}

.report-page .report-subtitle {
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 20px;
}

.report-page .report-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.18) 0, transparent 34%),
    linear-gradient(160deg, #10172a 0%, #131f39 68%, #10253f 100%);
  color: #f8fafc;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.report-page .report-car-title,
.report-page .summary-text,
.report-page .report-notes strong {
  color: #f8fafc;
}

.report-page .report-car-meta,
.report-page .report-notes,
.report-page .report-notes div {
  color: rgba(248, 250, 252, 0.8);
}

.report-page .report-notes {
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: #475569;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.report-page .report-notes strong {
  color: var(--brand-ink);
}

.report-page .report-notes ul {
  color: inherit;
}

.report-page .report-block {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.report-page .report-block h2 {
  margin-bottom: 8px;
  color: var(--brand-ink);
}

.report-page .floating-cta {
  bottom: 18px;
}

.report-page .floating-cta-actions {
  gap: 10px;
}

.report-page .floating-cta-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(71, 26, 255, 0.28);
}

.report-page .floating-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: #0f3d66;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
  .vin-page .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0 28px;
  }

  .vin-page .hero-title {
    max-width: none;
    font-size: clamp(32px, 9vw, 44px);
  }
}

@media (min-width: 900px) {
  .vin-page .nav,
  .report-page .nav,
  .article-page .nav,
  .legal-page .nav,
  .dkp-page .nav {
    display: flex;
  }

  .article-page .burger,
  .legal-page .burger,
  .dkp-page .burger,
  .vin-page .burger,
  .report-page .burger {
    display: none;
  }
}

@media (max-width: 720px) {
  .theme-body header,
  .theme-body .header,
  .theme-body footer {
    margin-left: 8px;
    margin-right: 8px;
  }

  .theme-body header .header-inner,
  .theme-body .header .header-inner {
    flex-wrap: wrap;
  }

  .theme-body header nav,
  .theme-body .nav {
    justify-content: flex-start;
  }

  .article-page article,
  .legal-page article {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .dkp-page .dkp-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .article-page article h1,
  .legal-page article h1,
  .report-page .report-title {
    font-size: 32px;
  }

  .legal-page article h1 {
    font-size: 28px;
  }

  .article-lead,
  .legal-lead,
  .dkp-lead,
  .report-lead {
    font-size: 16px;
  }

  .article-page .cta,
  .legal-page .cta {
    padding: 18px;
  }

  .article-page .cta .btn,
  .legal-page .cta .btn {
    width: 100%;
  }

  .metric-grid,
  .article-hero-grid,
  .legal-hero-grid,
  .dkp-hero-grid,
  .report-hero-grid,
  .chip-grid,
  .diagram-grid,
  .dkp-page .dkp-sideband {
    grid-template-columns: 1fr;
  }

  .chart-row {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* 2026 index alignment */
.theme-body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink, #0b1020);
  background:
    radial-gradient(800px 400px at 8% -10%, rgba(0, 191, 255, 0.08) 0%, transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(71, 26, 255, 0.08) 0%, transparent 55%),
    var(--bg-soft, #f6f7fb);
}

.theme-body header,
.theme-body .header {
  top: 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line, rgba(11, 16, 32, 0.08));
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.theme-body header .header-inner,
.theme-body .header .header-inner {
  gap: 24px;
  padding: 14px 0;
}

.theme-body .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00bfff 0%, #471aff 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(71, 26, 255, 0.35);
}

.theme-body .logo-text-main {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.theme-body .logo-text-sub {
  font-size: 11px;
  color: var(--muted, #5a6479) !important;
  font-weight: 500;
}

.theme-body header nav,
.theme-body .nav {
  padding: 0;
  background: transparent;
  border: 0;
  gap: 4px;
}

.theme-body header nav a,
.theme-body .nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted, #5a6479);
}

.theme-body header nav a:hover,
.theme-body .nav a:hover {
  background: var(--bg-soft, #f6f7fb);
  color: var(--ink, #0b1020);
  box-shadow: none;
  transform: none;
}

.theme-body .nav-pill,
.theme-body .policy-link,
.theme-body .messenger-link {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.theme-body .nav-pill-max,
.theme-body .policy-link-max {
  background: linear-gradient(135deg, #00bfff 0%, #471aff 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(71, 26, 255, 0.24);
}

.theme-body .nav-pill-tg,
.theme-body .policy-link-tg,
.theme-body .messenger-link-telegram {
  background: #ffffff;
  color: var(--ink, #0b1020);
  border: 1px solid var(--line-2, rgba(11, 16, 32, 0.14));
  box-shadow: 0 8px 20px rgba(11, 16, 32, 0.06);
}

.theme-body .btn-max {
  background: linear-gradient(135deg, #00bfff 0%, #471aff 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(71, 26, 255, 0.32);
}

.theme-body .btn-telegram {
  background: #fff;
  color: var(--ink, #0b1020);
  border: 1px solid var(--line-2, rgba(11, 16, 32, 0.14));
  box-shadow: 0 8px 20px rgba(11, 16, 32, 0.06);
}

.theme-body footer {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line, rgba(11, 16, 32, 0.08));
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.theme-body footer .container {
  padding-top: 28px;
  padding-bottom: 24px;
}

.site-footer-card {
  gap: 24px;
}

.article-page main.container,
.legal-page main.container,
.report-page .container,
.dkp-page main.container {
  max-width: var(--container, 1180px);
}

.article-page article,
.legal-page article {
  border-radius: 28px;
  border: 1px solid var(--line, rgba(11, 16, 32, 0.08));
  background: #fff;
  box-shadow: 0 30px 80px rgba(11, 16, 32, 0.1);
}

.article-page article::before,
.legal-page article::before {
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(0, 191, 255, 0.08) 0%, transparent 60%),
    radial-gradient(540px 240px at 100% 0%, rgba(71, 26, 255, 0.08) 0%, transparent 55%);
}

.article-page article h1,
.legal-page article h1,
.report-page .report-title,
.dkp-page h1 {
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.article-page article p,
.legal-page article p,
.article-page article ul,
.legal-page article ul,
.article-page article ol,
.legal-page article ol,
.report-page .report-subtitle,
.report-page .report-notes,
.dkp-page .textbox p {
  color: var(--muted, #5a6479);
}

.article-hero-card,
.legal-hero-card,
.dkp-hero-card,
.report-hero-card,
.metric-card,
.diagram-card,
.chip-card,
.vin-page .card,
.vin-page .blog-card-inner,
.vin-page .sources-wrap,
.vin-page details,
.report-page .report-notes,
.report-page .report-block,
.dkp-page .dkp-card,
.dkp-page .DkpSection-pfMEr {
  background: #fff;
  border: 1px solid var(--line, rgba(11, 16, 32, 0.08));
  box-shadow: 0 20px 48px rgba(11, 16, 32, 0.08);
}

.visual-band {
  border: 1px solid var(--line, rgba(11, 16, 32, 0.08));
  background: #fff;
  box-shadow: 0 30px 80px rgba(11, 16, 32, 0.08);
}

.visual-band::before {
  background:
    radial-gradient(560px 220px at 0% 0%, rgba(0, 191, 255, 0.08) 0%, transparent 60%),
    radial-gradient(580px 240px at 100% 0%, rgba(71, 26, 255, 0.08) 0%, transparent 55%);
}

.report-page .report-card {
  background: #fff;
  color: var(--ink, #0b1020);
  border: 1px solid var(--line, rgba(11, 16, 32, 0.08));
  box-shadow: 0 24px 52px rgba(11, 16, 32, 0.1);
}

.report-page .report-car-title,
.report-page .summary-text {
  color: var(--ink, #0b1020);
}

.report-page .report-car-meta {
  color: var(--muted, #5a6479);
}

.report-page .report-notes strong {
  color: var(--ink, #0b1020);
}

@media (min-width: 901px) {
  .theme-body .nav,
  .theme-body header nav {
    display: flex !important;
  }

  .theme-body .burger {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .theme-body header .header-inner,
  .theme-body .header .header-inner {
    flex-wrap: wrap;
  }

  .theme-body .nav,
  .theme-body header nav {
    display: none;
    order: 10;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line, rgba(11, 16, 32, 0.08));
    box-shadow: 0 18px 42px rgba(11, 16, 32, 0.1);
  }

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

  .theme-body .nav a,
  .theme-body header nav a {
    width: 100%;
  }
}

/* 2026 production pass: shared details + extracted report/dkp styles */

.theme-body .logo-dot {
  color: var(--brand-indigo, #471aff);
}

.article-pill,
.legal-pill,
.dkp-pill,
.report-pill {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.report-page main {
  padding-bottom: 32px;
}

.report-page .report-header a {
  color: inherit;
  text-decoration: none;
}

.report-page .report-header a:hover {
  text-decoration: underline;
}

.report-page .report-top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 18px;
  margin-bottom: 22px;
  align-items: start;
}

.report-page .report-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.report-page .report-car-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.16) 0%, rgba(71, 26, 255, 0.14) 100%);
  color: var(--ink, #0b1020);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 auto;
}

.report-page .report-car-info {
  flex: 1;
  min-width: 0;
}

.report-page .report-car-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.report-page .report-car-meta {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.5;
}

.report-page .report-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.12) 0%, rgba(71, 26, 255, 0.12) 100%);
  color: var(--ink, #0b1020);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.report-page .report-risk-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.report-page .report-risk-row {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 1.68fr) auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.report-page .risk-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink, #0b1020);
  font-weight: 600;
}

.report-page .risk-bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.report-page .risk-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
}

.report-page .risk-high {
  width: 86%;
  background: linear-gradient(90deg, #ef4444 0%, #b91c1c 100%);
}

.report-page .risk-mid {
  width: 62%;
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.report-page .risk-low {
  width: 30%;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.report-page .risk-status {
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: lowercase;
}

.report-page .risk-high-text {
  color: #b91c1c;
}

.report-page .risk-mid-text {
  color: #c2410c;
}

.report-page .risk-low-text {
  color: #15803d;
}

.report-page .report-summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px dashed rgba(148, 163, 184, 0.3);
}

.report-page .summary-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
  flex: 0 0 auto;
  margin-top: 4px;
}

.report-page .summary-text {
  font-size: 13px;
  line-height: 1.6;
}

.report-page .report-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.report-page .tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.report-page .tag-red {
  background: #fef2f2;
  color: #b91c1c;
}

.report-page .tag-amber {
  background: #fffbeb;
  color: #92400e;
}

.report-page .tag-green {
  background: #ecfdf3;
  color: #166534;
}

.report-page .report-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.report-page .floating-cta {
  left: 0;
  width: 100%;
}

.report-page .floating-cta-actions {
  width: min(100%, 440px);
}

.report-page .floating-cta-btn {
  justify-content: center;
  width: 100%;
}

.dkp-page {
  color: var(--ink, #0b1020);
}

.dkp-page main {
  padding: 20px 0 36px;
}

.dkp-page .dkp-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 22px 22px 28px;
}

.dkp-page .dkp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  font-weight: 700;
}

.dkp-page .PageDkp__content-H5HPC {
  margin-top: 12px;
}

.dkp-page .DkpSection-pfMEr {
  padding: 16px 14px 18px;
  margin-bottom: 16px;
}

.dkp-page .DkpSection__header-_KVXR {
  margin-bottom: 10px;
}

.dkp-page .DkpSection__title-fPGxZ {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.dkp-page .DkpSection__subtitle-yLClL {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.dkp-page .DkpSubmitWithAuthSection-QLuhQ {
  margin-top: 16px;
  text-align: right;
}

.dkp-page .DkpSubjectInfo__caption-Fw4Le {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin: 12px 0 8px;
}

.dkp-page .DkpSubjectInfo__clearFormAction-WID2h {
  cursor: pointer;
  color: #2563eb;
  font-size: 13px;
}

.dkp-page .hide {
  display: none;
}

@media (max-width: 840px) {
  .report-page .report-top,
  .report-page .report-sections {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .article-eyebrow,
  .legal-eyebrow,
  .dkp-eyebrow,
  .report-eyebrow {
    display: block;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-pills,
  .legal-pills,
  .dkp-pills,
  .report-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-pill,
  .legal-pill,
  .dkp-pill,
  .report-pill {
    width: 100%;
    box-sizing: border-box;
  }

  .report-page .report-risk-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .report-page .report-card-header {
    flex-wrap: wrap;
  }

  .report-page .report-badge {
    margin-left: 54px;
  }

  .report-page .floating-cta {
    position: static;
    margin-top: 24px;
    padding: 0 0 16px;
    justify-content: flex-start;
    pointer-events: auto;
  }

  .report-page .floating-cta-actions {
    width: 100%;
  }

  .dkp-page .dkp-card {
    padding: 18px 16px 22px;
    border-radius: 24px;
  }

  .dkp-page .DkpSubjectInfo__caption-Fw4Le {
    flex-wrap: wrap;
  }
}
