﻿    :root {
      --bg: #f8f9fb;
      --surface: rgba(255, 255, 255, 0.86);
      --surface-strong: #ffffff;
      --surface-soft: #fbfcfd;
      --surface-muted: #f1f3f6;
      --border: rgba(15, 23, 42, 0.085);
      --border-strong: rgba(15, 23, 42, 0.15);
      --line: rgba(15, 23, 42, 0.075);
      --line-soft: rgba(15, 23, 42, 0.042);
      --text: #111827;
      --muted: #6b7280;
      --muted-strong: #475569;
      --blue: #1d4ed8;
      --green: #0f766e;
      --amber: #a16207;
      --ink: #172033;
      --shadow: 0 1px 1px rgba(15, 23, 42, 0.025), 0 18px 42px rgba(15, 23, 42, 0.04);
      --shadow-soft: 0 1px 1px rgba(15, 23, 42, 0.018), 0 10px 24px rgba(15, 23, 42, 0.03);
      --body: "Geist", "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
      --display: "Geist", "Aptos Display", "Aptos", "Segoe UI Variable Display", "Segoe UI", sans-serif;
      --mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      --radius: 10px;
      --max: 1288px;
    }

    * {
      box-sizing: border-box;
    }

    [hidden] {
      display: none !important;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.026) 1px, transparent 1px),
        radial-gradient(circle at 18% 0%, rgba(29, 78, 216, 0.045), transparent 34rem),
        radial-gradient(circle at 88% 4%, rgba(15, 118, 110, 0.032), transparent 30rem),
        linear-gradient(180deg, #ffffff 0, var(--bg) 620px);
      background-size: 72px 72px, 72px 72px, auto, auto, auto;
      color: var(--text);
      font-family: var(--body);
      font-size: 14px;
      line-height: 1.5;
      font-optical-sizing: auto;
      font-feature-settings: "rlig" 1, "calt" 1, "tnum" 1;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      top: 58px;
      bottom: 0;
      width: max(24px, calc((100vw - var(--max)) / 2));
      pointer-events: none;
      background: repeating-linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.032) 0,
        rgba(15, 23, 42, 0.032) 1px,
        transparent 1px,
        transparent 8px
      );
      opacity: 0.72;
    }

    body::before {
      left: 0;
    }

    body::after {
      right: 0;
    }

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

    ::selection {
      background: rgba(29, 78, 216, 0.14);
      color: var(--text);
    }

    .shell {
      width: min(calc(100% - 48px), var(--max));
      margin: 0 auto;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .button {
        transition: none;
      }
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(18px) saturate(1.08);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 58px;
      gap: 20px;
      padding: 0 24px;
      border-right: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 12px;
      color: #111827;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .brand-mark {
      width: 16px;
      height: 16px;
      flex: none;
      border: 1px solid rgba(95, 144, 223, 0.18);
      border-radius: 5px;
      background: linear-gradient(180deg, #6f9ce5 0%, #5f90df 100%);
      box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.1),
        0 6px 14px rgba(95, 144, 223, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    .topnav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      min-width: 0;
      flex: 1;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 14px;
    }

    .nav-trigger,
    .nav-link-main {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      color: #344054;
      font-size: 12px;
      font-weight: 520;
      white-space: nowrap;
      transition: background-color 140ms ease, color 140ms ease;
    }

    .nav-trigger:hover,
    .nav-trigger:focus-visible,
    .nav-link-main:hover,
    .nav-link-main:focus-visible {
      background: rgba(15, 23, 42, 0.04);
      color: #111827;
      outline: none;
    }

    .nav-caret {
      width: 12px;
      height: 12px;
      stroke: currentColor;
      stroke-width: 2;
      transition: transform 140ms ease;
    }

    .nav-dropdown:hover .nav-caret,
    .nav-dropdown:focus-within .nav-caret {
      transform: rotate(180deg);
    }

    .dropdown-panel {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      z-index: 30;
      min-width: 260px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.96)),
        #ffffff;
      box-shadow: 0 20px 54px rgba(15, 23, 42, 0.09);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 8px);
      transition: opacity 140ms ease, transform 140ms ease;
    }

    .nav-dropdown:hover .dropdown-panel,
    .nav-dropdown:focus-within .dropdown-panel {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .dropdown-kicker {
      margin: 2px 4px 8px;
      color: #667085;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .brand-menu {
      width: 310px;
    }

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

    .brand-link {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 36px;
      padding: 0 9px;
      border-radius: 10px;
      color: #111827;
      font-size: 12px;
      font-weight: 520;
      transition: background-color 140ms ease;
    }

    .brand-link:hover,
    .brand-link:focus-visible {
      background: rgba(29, 78, 216, 0.045);
      outline: none;
    }

    .brand-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--blue), var(--green));
      box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.055);
    }

    .dropdown-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 38px;
      margin-top: 8px;
      padding: 0 10px;
      border-radius: 10px;
      background: rgba(29, 78, 216, 0.065);
      color: var(--blue);
      font-size: 12px;
      font-weight: 600;
    }

    .solutions-menu {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      width: 520px;
    }

    .solution-card {
      display: block;
      min-width: 0;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.66);
      transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
    }

    .solution-card:hover,
    .solution-card:focus-visible {
      border-color: rgba(29, 78, 216, 0.18);
      background: rgba(29, 78, 216, 0.045);
      transform: translateY(-1px);
      outline: none;
    }

    .solution-card strong {
      display: block;
      color: #111827;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.25;
    }

    .solution-card span {
      display: block;
      margin-top: 4px;
      color: #667085;
      font-size: 12px;
      line-height: 1.35;
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      white-space: nowrap;
    }

    .topbar-link {
      color: #1d4ed8;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.2;
      transition: color 140ms ease;
    }

    .topbar-link:hover,
    .topbar-link:focus-visible {
      color: #1e40af;
      text-decoration: underline;
      outline: none;
    }

    .dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: var(--border-strong);
    }

    .product-head {
      padding: 0;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.18);
    }

    .product-head-grid {
      position: relative;
      isolation: isolate;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      gap: 28px;
      align-items: start;
      min-height: 312px;
      padding: 30px 24px 28px;
      border-right: 1px solid var(--line);
      border-left: 1px solid var(--line);
      overflow: hidden;
    }

    .product-head-grid::before,
    .product-head-grid::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .product-head-grid > * {
      position: relative;
      z-index: 1;
    }

    .product-head-grid::before {
      background:
        linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
        linear-gradient(180deg, var(--line-soft) 1px, transparent 1px);
      background-size: 64px 64px;
      opacity: 0.7;
      mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    }

    .product-head-grid::after {
      left: 42%;
      background:
        radial-gradient(circle, rgba(15, 23, 42, 0.16) 1px, transparent 1.3px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
      background-size: 12px 12px, auto;
      opacity: 0.34;
      mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    }

    .breadcrumb {
      margin-bottom: 10px;
      color: var(--muted);
      font-size: 12px;
    }

    .breadcrumb ol {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .breadcrumb li {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      gap: 6px;
    }

    .breadcrumb a {
      color: var(--muted-strong);
      font-weight: 520;
    }

    .breadcrumb a:hover,
    .breadcrumb a:focus-visible {
      color: var(--blue);
      outline: none;
    }

    .breadcrumb-current {
      max-width: 360px;
      overflow: hidden;
      color: var(--muted);
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .breadcrumb-separator {
      color: var(--border-strong);
    }

    .product-title {
      max-width: 800px;
      margin: 0;
      font-family: var(--display);
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 500;
      letter-spacing: -0.06em;
      line-height: 1.03;
      color: #111827;
    }

    .lead {
      max-width: 790px;
      margin: 15px 0 0;
      color: #344054;
      font-size: 15px;
      line-height: 1.55;
    }

    .method-note {
      max-width: 820px;
      margin: 15px 0 0;
      padding: 12px 14px;
      border: 1px solid rgba(29, 78, 216, 0.12);
      border-left: 2px solid rgba(29, 78, 216, 0.58);
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.68);
      color: #526071;
      font-size: 13px;
      line-height: 1.5;
    }

    .meta-chip,
    .report-meta-chip,
    .nav-link,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid var(--border);
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: none;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .head-aside {
      display: grid;
      gap: 8px;
      padding-top: 32px;
    }

    .meta-chip {
      min-height: 30px;
      padding: 7px 10px;
      color: #334155;
      font-size: 12px;
      line-height: 1.2;
      box-shadow: none;
    }

    .report-meta-chip {
      min-height: 32px;
      padding: 7px 10px;
      color: #344054;
      font-size: 12px;
      line-height: 1.2;
    }

    .head-aside .report-meta-chip {
      display: grid;
      align-items: center;
      gap: 4px;
      min-height: 54px;
      padding: 10px 12px;
    }

    .report-meta-chip span {
      color: #667085;
    }

    .report-meta-chip strong {
      color: #111827;
      font-weight: 560;
      font-variant-numeric: tabular-nums;
    }

    .meta-chip code {
      color: #0f172a;
      font-family: var(--mono);
      font-size: 12px;
    }

    .summary-body {
      padding: 18px;
      overflow: visible;
    }

    .summary-panel {
      overflow: visible;
      z-index: 6;
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.76);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 10px 30px rgba(15, 23, 42, 0.03);
      overflow: visible;
    }

    .kpi {
      position: relative;
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 12px;
      min-height: 146px;
      padding: 16px 14px 15px;
      border: 0;
      border-right: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
      justify-items: center;
      text-align: center;
    }

    .kpi:last-child {
      border-right: 0;
    }

    .kpi::before {
      content: none;
    }

    .kpi-has-popover {
      cursor: help;
    }

    .kpi-has-popover::after {
      content: "";
      position: absolute;
      bottom: 100%;
      left: 0;
      right: 0;
      height: 16px;
    }

    .kpi-has-popover:hover,
    .kpi-has-popover:focus-within {
      z-index: 6;
    }

    .kpi-label {
      margin: 0;
      width: 100%;
      color: #667085;
      font-size: 11px;
      font-weight: 520;
      line-height: 1.25;
      text-transform: uppercase;
      letter-spacing: 0;
      text-align: center;
    }

    .kpi-body {
      width: 100%;
      min-height: 92px;
      display: grid;
      align-content: center;
      justify-items: center;
      gap: 10px;
    }

    .kpi-stat .kpi-body {
      gap: 6px;
    }

    .kpi-value {
      margin: 0;
      color: var(--text);
      font-size: 20px;
      font-family: var(--display);
      font-weight: 560;
      line-height: 1.08;
      font-variant-numeric: tabular-nums;
      text-align: center;
    }

    .kpi-ring {
      --ring-size: 68px;
      width: var(--ring-size);
      height: var(--ring-size);
      margin: 0 auto;
      border-radius: 999px;
      background:
        conic-gradient(#1d4ed8 calc(var(--kpi-fill) * 1%), rgba(29, 78, 216, 0.14) 0);
      display: grid;
      place-items: center;
    }

    .kpi-ring.competition {
      background:
        conic-gradient(#172033 calc(var(--kpi-fill) * 1%), rgba(23, 32, 51, 0.12) 0);
    }

    .kpi-ring-inner {
      width: calc(var(--ring-size) - 12px);
      height: calc(var(--ring-size) - 12px);
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset;
    }

    .kpi-ring-inner strong {
      color: var(--text);
      font-family: var(--display);
      font-size: 19px;
      font-weight: 560;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .kpi-note {
      margin: 0;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.35;
      font-variant-numeric: tabular-nums;
      text-align: center;
      white-space: nowrap;
    }

    .kpi-popover {
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      width: min(248px, calc(100vw - 36px));
      padding: 12px 13px;
      border: 1px solid rgba(20, 31, 45, 0.14);
      border-radius: 14px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
      box-shadow: 0 16px 38px rgba(15, 23, 42, 0.11);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 8px);
      transition: opacity 150ms ease, transform 150ms ease;
      text-align: left;
      z-index: 8;
    }

    .kpi-popover::before {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 50%;
      width: 12px;
      height: 12px;
      border-right: 1px solid rgba(20, 31, 45, 0.14);
      border-bottom: 1px solid rgba(20, 31, 45, 0.14);
      background: #ffffff;
      transform: translateX(-50%) rotate(45deg);
    }

    .kpi-has-popover:hover .kpi-popover,
    .kpi-has-popover:focus-within .kpi-popover {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .kpi-popover-title {
      margin: 0;
      color: #111827;
      font-family: var(--display);
      font-size: 13px;
      font-weight: 560;
      line-height: 1.25;
    }

    .kpi-popover-copy {
      margin: 5px 0 0;
      color: #526071;
      font-size: 12px;
      line-height: 1.45;
    }

    body.has-floating-kpi-popovers .kpi-has-popover:hover .kpi-popover,
    body.has-floating-kpi-popovers .kpi-has-popover:focus-within .kpi-popover {
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
    }

    body.has-floating-kpi-popovers .kpi-popover.is-floating {
      position: fixed;
      top: var(--kpi-popover-top, 0px);
      left: var(--kpi-popover-left, 0px);
      right: auto;
      bottom: auto;
      width: min(248px, calc(100vw - 28px));
      transform: translateY(8px);
      z-index: 80;
    }

    body.has-floating-kpi-popovers .kpi-popover.is-floating::before {
      left: var(--kpi-popover-arrow-left, 50%);
      right: auto;
      bottom: -6px;
      transform: translateX(-50%) rotate(45deg);
    }

    body.has-floating-kpi-popovers .summary-panel .kpi:first-child .kpi-popover.is-floating,
    body.has-floating-kpi-popovers .summary-panel .kpi:last-child .kpi-popover.is-floating {
      left: var(--kpi-popover-left, 0px);
      right: auto;
      bottom: auto;
      transform: translateY(8px);
    }

    body.has-floating-kpi-popovers .summary-panel .kpi:first-child .kpi-popover.is-floating::before,
    body.has-floating-kpi-popovers .summary-panel .kpi:last-child .kpi-popover.is-floating::before {
      left: var(--kpi-popover-arrow-left, 50%);
      right: auto;
      transform: translateX(-50%) rotate(45deg);
    }

    body.has-floating-kpi-popovers .kpi-has-popover.is-popover-open .kpi-popover.is-floating,
    body.has-floating-kpi-popovers .kpi-has-popover:focus-within .kpi-popover.is-floating {
      opacity: 1;
      pointer-events: none;
      transform: translateY(0);
    }

    .summary-panel .kpi:first-child .kpi-popover {
      left: 12px;
      transform: translate(0, 8px);
    }

    .summary-panel .kpi:first-child .kpi-popover::before {
      left: 34px;
      transform: rotate(45deg);
    }

    .summary-panel .kpi:first-child:hover .kpi-popover,
    .summary-panel .kpi:first-child:focus-within .kpi-popover {
      transform: translate(0, 0);
    }

    .summary-panel .kpi:last-child .kpi-popover {
      left: auto;
      right: 12px;
      transform: translate(0, 8px);
    }

    .summary-panel .kpi:last-child .kpi-popover::before {
      left: auto;
      right: 34px;
      transform: rotate(45deg);
    }

    .summary-panel .kpi:last-child:hover .kpi-popover,
    .summary-panel .kpi:last-child:focus-within .kpi-popover {
      transform: translate(0, 0);
    }

    .report-conclusion {
      margin-top: 16px;
      padding: 18px 20px;
      border: 1px solid rgba(29, 78, 216, 0.13);
      border-left: 2px solid rgba(29, 78, 216, 0.68);
      border-radius: 14px;
      background:
        radial-gradient(circle at 98% 0%, rgba(29, 78, 216, 0.07), transparent 14rem),
        rgba(255, 255, 255, 0.76);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
    }

    .panel[id],
    .report-conclusion[id],
    .cta-panel[id] {
      scroll-margin-top: var(--anchor-offset, 92px);
    }

    .report-conclusion h2,
    .locked-panel h2 {
      margin: 0;
      color: #111827;
      font-family: var(--display);
      font-size: 17px;
      font-weight: 560;
      letter-spacing: -0.01em;
      line-height: 1.25;
    }

    .report-conclusion p {
      max-width: 940px;
      margin: 8px 0 0;
      color: #3d4654;
      font-size: 14px;
      line-height: 1.55;
    }

    .report-followup-cta {
      margin-top: 12px;
      padding: 16px 18px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(29, 78, 216, 0.045), rgba(255, 255, 255, 0.72) 48%),
        rgba(255, 255, 255, 0.72);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
    }

    .report-followup-cta p {
      margin: 0;
      color: #445065;
      font-size: 13px;
      line-height: 1.55;
    }

    .report-followup-cta .button-row {
      margin-top: 12px;
      justify-content: flex-start;
    }

    .nav-band {
      display: none;
      border-bottom: 1px solid var(--line);
      background: rgba(247, 248, 250, 0.82);
      backdrop-filter: blur(10px);
    }

    .nav-scroll {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 10px 24px;
      border-right: 1px solid var(--line);
      border-left: 1px solid var(--line);
      scrollbar-width: none;
    }

    .nav-scroll::-webkit-scrollbar {
      display: none;
    }

    .nav-link {
      flex: none;
      padding: 8px 10px;
      color: #344054;
      font-size: 12px;
      font-weight: 520;
      box-shadow: none;
      transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      border-color: var(--border-strong);
      background: #ffffff;
      color: var(--blue);
      outline: none;
    }

    .nav-link.is-active {
      border-color: rgba(29, 78, 216, 0.22);
      background: #ffffff;
      color: var(--blue);
      box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.08);
    }

    .report-layout {
      position: relative;
      isolation: isolate;
      display: grid;
      grid-template-columns: 274px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
      padding: 24px 24px 48px;
      border-right: 1px solid var(--line);
      border-left: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.28);
      overflow: visible;
    }

    .report-layout::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle, rgba(15, 23, 42, 0.12) 1px, transparent 1.25px),
        linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
        linear-gradient(180deg, var(--line-soft) 1px, transparent 1px);
      background-size: 14px 14px, 72px 72px, 72px 72px;
      opacity: 0.18;
      mask-image: linear-gradient(180deg, #000, transparent 92%);
    }

    .report-layout > * {
      position: relative;
      z-index: 1;
    }

    .report {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 26px;
      min-width: 0;
      padding: 0;
    }

    .report-sidebar {
      position: sticky;
      top: 78px;
      display: grid;
      gap: 14px;
    }

    .sidebar-card {
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
      overflow: hidden;
    }

    .sidebar-heading {
      margin: 0;
      display: block;
      padding: 13px 13px 10px;
      border-bottom: 1px solid var(--line);
      color: #111827;
      font-family: var(--display);
      font-size: 13px;
      font-weight: 560;
      line-height: 1.25;
    }

    .sidebar-nav {
      display: grid;
      padding: 6px;
    }

    .sidebar-nav a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 8px 8px 8px 14px;
      border-radius: 6px;
      color: #344054;
      font-size: 12px;
      font-weight: 520;
      line-height: 1.25;
      transition: background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
    }

    .sidebar-nav a::before {
      content: "";
      position: absolute;
      left: 6px;
      top: 50%;
      width: 3px;
      height: 18px;
      border-radius: 999px;
      background: var(--blue);
      opacity: 0;
      transform: translateY(-50%) scaleY(0.66);
      transition: opacity 140ms ease, transform 140ms ease;
    }

    .sidebar-nav a::after {
      content: "→";
      color: #98a2b3;
      font-size: 12px;
    }

    .sidebar-nav a:hover,
    .sidebar-nav a:focus-visible {
      background: rgba(29, 78, 216, 0.045);
      color: var(--blue);
      outline: none;
    }

    .sidebar-nav a.is-active {
      background: rgba(29, 78, 216, 0.06);
      color: var(--blue);
      box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.08);
    }

    .sidebar-nav a.is-active::before {
      opacity: 1;
      transform: translateY(-50%) scaleY(1);
    }

    .sidebar-nav a.is-active::after {
      color: var(--blue);
    }

    .sidebar-facts {
      display: grid;
      gap: 0;
    }

    .sidebar-fact {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
      padding: 9px 12px;
      border-bottom: 1px solid var(--line);
      color: #667085;
      font-size: 12px;
      line-height: 1.35;
    }

    .sidebar-fact:last-child {
      border-bottom: 0;
    }

    .sidebar-fact strong {
      color: #111827;
      font-weight: 560;
      text-align: right;
      white-space: nowrap;
    }

    .sidebar-cta {
      padding: 12px;
    }

    .sidebar-cta .sidebar-heading {
      padding: 0;
      border-bottom: 0;
    }

    .sidebar-cta p {
      margin: 0 0 10px;
      color: #526071;
      font-size: 12px;
      line-height: 1.45;
    }

    .sidebar-cta-note {
      color: #1d4ed8;
      font-weight: 520;
    }

    .sidebar-cta .button {
      width: 100%;
    }

    .panel {
      position: relative;
      border: 1px solid var(--border);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
      overflow: hidden;
    }

    .panel::before {
      content: none;
    }

    .panel.span-4 {
      grid-column: span 12;
    }

    .panel.span-5 {
      grid-column: span 12;
    }

    .panel.span-6 {
      grid-column: span 12;
    }

    .panel.span-7 {
      grid-column: span 12;
    }

    .panel.span-8 {
      grid-column: span 12;
    }

    .panel.span-12 {
      grid-column: span 12;
    }

    .panel-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 17px 14px;
      border-bottom: 1px solid var(--line);
      border-radius: 14px 14px 0 0;
      background: rgba(255, 255, 255, 0.52);
    }

    .panel-title {
      margin: 0;
      font-size: 16px;
      font-family: var(--display);
      font-weight: 560;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .panel-subtitle {
      max-width: 680px;
      margin: 4px 0 0;
      color: #667085;
      font-size: 12px;
      line-height: 1.45;
    }

    .chart-help {
      position: relative;
      z-index: 8;
      flex: none;
      padding-bottom: 10px;
      margin-bottom: -10px;
    }

    .chart-help-trigger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-width: 28px;
      height: 28px;
      padding: 0 4px 0 10px;
      border: 1px solid rgba(29, 78, 216, 0.18);
      border-radius: 999px;
      background:
        linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(255, 255, 255, 0.86)),
        #ffffff;
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
      color: #1d4ed8;
      cursor: help;
      font-family: var(--display);
      font-size: 13px;
      font-weight: 680;
      line-height: 1;
    }

    .chart-help-trigger span {
      color: #344054;
      font-size: 11.5px;
      font-weight: 620;
      white-space: nowrap;
    }

    .chart-help-trigger b {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: rgba(29, 78, 216, 0.08);
      color: #1d4ed8;
      font-size: 12px;
      font-style: normal;
      line-height: 1;
    }

    .chart-help-trigger:hover,
    .chart-help-trigger:focus-visible {
      border-color: rgba(29, 78, 216, 0.36);
      color: #123ea3;
      outline: none;
    }

    .chart-help-popover {
      position: absolute;
      top: calc(100% + 9px);
      right: 0;
      width: min(292px, calc(100vw - 42px));
      padding: 12px 13px 12px;
      border: 1px solid rgba(15, 23, 42, 0.1);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.13);
      color: #344054;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-4px);
      transition: opacity 130ms ease, transform 130ms ease;
    }

    .chart-help-popover::before {
      position: absolute;
      right: 0;
      bottom: 100%;
      width: 100%;
      height: 12px;
      content: "";
    }

    .chart-help:hover .chart-help-popover,
    .chart-help:focus-within .chart-help-popover {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .chart-help-popover strong {
      display: block;
      margin-bottom: 7px;
      color: #111827;
      font-size: 12px;
      font-weight: 680;
    }

    .chart-help-popover ul {
      display: grid;
      gap: 5px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .chart-help-popover li {
      position: relative;
      padding-left: 12px;
      color: #475467;
      font-size: 11.5px;
      line-height: 1.4;
    }

    .chart-help-popover li::before {
      position: absolute;
      top: 0.62em;
      left: 0;
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: #1d4ed8;
      content: "";
    }

    .chart-help-popover a {
      display: inline-flex;
      margin-top: 9px;
      color: #1d4ed8;
      font-size: 11.5px;
      font-weight: 620;
      text-decoration: none;
    }

    .chart-help-popover a:hover,
    .chart-help-popover a:focus-visible {
      color: #123ea3;
      outline: none;
    }

    .panel-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
      gap: 6px;
    }

    .range-control {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0;
      padding: 2px;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: none;
    }

    .range-button {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      min-height: 28px;
      padding: 0 8px;
      border: 0;
      border-radius: 6px;
      background: transparent;
      color: #3d4654;
      cursor: pointer;
      font: inherit;
      font-size: 11px;
      font-weight: 520;
      line-height: 1;
      white-space: nowrap;
    }

    .range-button.active {
      background: rgba(29, 78, 216, 0.065);
      color: var(--blue);
      box-shadow: 0 0 0 1px rgba(29, 78, 216, 0.12) inset;
    }

    .range-button.locked {
      color: #7a8596;
    }

    .range-button:hover,
    .range-button:focus-visible {
      background: rgba(20, 31, 45, 0.045);
      outline: none;
    }

    .lock-icon {
      width: 11px;
      height: 11px;
      flex: none;
      stroke: currentColor;
    }

    .range-popover {
      position: absolute;
      top: calc(100% + 9px);
      right: 0;
      z-index: 30;
      width: 252px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
        #ffffff;
      box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-3px);
      transition: opacity 140ms ease, transform 140ms ease;
    }

    .range-popover::before {
      content: "";
      position: absolute;
      top: -6px;
      right: 18px;
      width: 10px;
      height: 10px;
      border-left: 1px solid rgba(20, 31, 45, 0.14);
      border-top: 1px solid rgba(20, 31, 45, 0.14);
      background: #ffffff;
      transform: rotate(45deg);
    }

    .range-control.is-hover .range-popover,
    .range-control.is-open .range-popover {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .popover-title {
      margin: 0;
      color: var(--text);
      font-size: 13px;
      font-family: var(--display);
      font-weight: 560;
      line-height: 1.25;
    }

    .popover-copy {
      margin: 4px 0 9px;
      color: #667085;
      font-size: 12px;
      line-height: 1.35;
    }

    .popover-cta {
      min-height: 32px;
      width: 100%;
      padding: 0 10px;
      font-size: 12px;
    }

    .badge {
      padding: 5px 8px;
      font-size: 11px;
      font-weight: 520;
      line-height: 1.2;
      white-space: nowrap;
      box-shadow: none;
    }

    .badge.blue {
      border-color: rgba(29, 78, 216, 0.16);
      background: rgba(29, 78, 216, 0.055);
      color: #1e40af;
    }

    .badge.green {
      border-color: rgba(8, 121, 93, 0.22);
      background: rgba(15, 118, 110, 0.06);
      color: #087456;
    }

    .badge.amber {
      border-color: rgba(179, 83, 9, 0.22);
      background: rgba(161, 98, 7, 0.06);
      color: #92400e;
    }

    .chart-wrap {
      position: relative;
      isolation: isolate;
      z-index: 1;
      overflow: visible;
      padding: 8px 20px 13px;
      background:
        radial-gradient(circle, rgba(15, 23, 42, 0.13) 1px, transparent 1.25px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.024) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(248, 250, 252, 0.1));
      background-size: 14px 14px, 56px 56px, 56px 56px, auto;
    }

    .chart {
      display: block;
      width: 100%;
      height: 322px;
    }

    .chart.compact {
      height: 300px;
    }

    .chart text {
      font-family: var(--body);
    }

    .chart-line,
    .chart-lines {
      pointer-events: none;
    }

    .chart-dot {
      cursor: pointer;
      filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.1));
      pointer-events: none;
      transition: r 120ms ease, filter 120ms ease;
    }

    .chart-hitbox {
      cursor: crosshair;
      outline: none;
    }

    .chart-dot:focus-visible {
      outline: none;
      filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.35));
    }

    .chart-guide,
    .chart-point {
      opacity: 0;
      pointer-events: none;
      transition: opacity 120ms ease;
    }

    .chart-guide {
      stroke: rgba(15, 23, 42, 0.18);
      stroke-dasharray: 4 4;
      stroke-width: 1;
    }

    .chart-point {
      fill: #ffffff;
      stroke-width: 2;
      filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.1));
    }

    .chart.is-active .chart-guide,
    .chart.is-active .chart-point {
      opacity: 1;
    }

    .chart-tooltip {
      --tooltip-offset-y: calc(-100% - 12px);
      position: absolute;
      z-index: 24;
      min-width: 168px;
      max-width: 260px;
      padding: 9px 10px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
      color: #111827;
      font-size: 12px;
      line-height: 1.35;
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, var(--tooltip-offset-y));
      transition: opacity 120ms ease;
    }

    .chart-tooltip.is-visible {
      opacity: 1;
      pointer-events: auto;
    }

    .tooltip-date {
      display: block;
      margin-bottom: 6px;
      color: #667085;
      font-size: 11px;
      font-weight: 520;
    }

    .tooltip-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 4px;
      color: #344054;
      font-size: 12px;
    }

    .tooltip-row strong {
      color: #111827;
      font-weight: 560;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .tooltip-row-locked {
      justify-content: flex-start;
    }

    .tooltip-price-locked {
      margin: 8px 0 0;
      color: #111827;
      font-size: 12px;
      font-weight: 560;
      line-height: 1.45;
    }

    .tooltip-swatch {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      flex: none;
    }

    .tooltip-cta-block {
      margin-top: 8px;
      padding-top: 8px;
      border-top: 1px dashed var(--line);
    }

    .tooltip-cta-copy {
      margin: 0;
      color: #667085;
      font-size: 11px;
      line-height: 1.45;
    }

    .tooltip-cta-link {
      display: inline-flex;
      align-items: center;
      margin-top: 6px;
      color: var(--blue);
      font-size: 11.5px;
      font-weight: 560;
      text-decoration: none;
    }

    .tooltip-cta-link:hover,
    .tooltip-cta-link:focus-visible {
      color: #123ea3;
      outline: none;
    }

    .chart-interpretation {
      margin: 0;
      padding: 14px 17px 16px;
      border-top: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(29, 78, 216, 0.055), rgba(255, 255, 255, 0.42) 46%),
        rgba(255, 255, 255, 0.42);
    }

    .chart-interpretation h3 {
      margin: 0;
      color: #1e40af;
      font-family: var(--display);
      font-size: 12px;
      font-weight: 560;
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .chart-interpretation-body {
      display: grid;
      gap: 9px;
      margin-top: 8px;
    }

    .interpretation-summary {
      display: grid;
      gap: 8px;
      max-width: 900px;
    }

    .interpretation-insights {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      align-items: center;
    }

    .interpretation-insight {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin: 0;
      max-width: 100%;
      padding: 6px 9px 6px 8px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-left: 2px solid var(--insight-color, #1d4ed8);
      border-radius: 999px;
      background:
        linear-gradient(90deg, color-mix(in srgb, var(--insight-color, #1d4ed8) 8%, #ffffff), rgba(255, 255, 255, 0.84)),
        #ffffff;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
      color: #344054;
      font-size: 11.5px;
      line-height: 1.35;
    }

    .interpretation-insight-label {
      color: #667085;
      font-size: 10px;
      font-weight: 720;
      letter-spacing: 0.045em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .interpretation-insight strong {
      color: var(--insight-color, #1d4ed8);
      font-family: var(--display);
      font-size: 15px;
      font-weight: 680;
      letter-spacing: -0.035em;
      line-height: 1;
      white-space: nowrap;
    }

    .interpretation-insight-detail {
      color: #111827;
      font-size: 11.5px;
      font-weight: 560;
      white-space: nowrap;
    }

    .interpretation-insight-period {
      color: #667085;
      font-size: 11px;
      font-weight: 520;
      white-space: nowrap;
    }

    .chart-interpretation p {
      margin: 0;
      max-width: 780px;
      color: #344054;
      font-size: 13px;
      line-height: 1.45;
    }

    .demand-interpretation-text {
      white-space: pre-line;
    }

    .line-insights {
      max-width: 850px;
      margin-top: 1px;
      padding-top: 8px;
      border-top: 1px dashed rgba(148, 163, 184, 0.36);
    }

    .line-insights ul {
      display: grid;
      gap: 5px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .line-insights li {
      position: relative;
      padding-left: 13px;
      color: #344054;
      font-size: 12.5px;
      line-height: 1.45;
    }

    .line-insights li::before {
      position: absolute;
      top: 0.72em;
      left: 0;
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: #94a3b8;
      content: "";
    }

    @media (max-width: 760px) {
      .interpretation-insight {
        border-radius: 12px;
        white-space: normal;
      }

      .interpretation-insight-detail,
      .interpretation-insight-period {
        white-space: normal;
      }

      .panel-head {
        gap: 10px;
      }

      .chart-help-popover {
        right: -4px;
      }

      .chart-help-trigger {
        width: 28px;
        padding: 0;
      }

      .chart-help-trigger span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
      }
    }

    .legend {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 8px 2px 0;
      color: #3d4654;
      font-size: 12px;
      font-weight: 520;
    }

    .legend-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .swatch {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      flex: none;
    }

    .table-wrap {
      overflow-x: auto;
    }

    table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
      font-variant-numeric: tabular-nums;
    }

    th,
    td {
      padding: 10px 12px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    tr:last-child td {
      border-bottom: 0;
    }

    th {
      color: #667085;
      background: rgba(248, 250, 252, 0.58);
      font-size: 11px;
      font-weight: 520;
      text-transform: uppercase;
      letter-spacing: 0;
      white-space: nowrap;
    }

    td {
      color: #344054;
      font-size: 13px;
    }

    td strong {
      display: block;
      color: #111827;
      font-weight: 560;
    }

    td small {
      display: block;
      margin-top: 2px;
      color: #667085;
      font-size: 12px;
      line-height: 1.35;
    }

    tbody tr {
      transition: background-color 140ms ease;
    }

    tbody tr:hover {
      background: rgba(15, 23, 42, 0.025);
    }

    .status {
      display: inline-flex;
      align-items: center;
      min-width: 72px;
      justify-content: center;
      padding: 3px 7px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 520;
      line-height: 1.25;
      white-space: nowrap;
    }

    .status.exact {
      background: rgba(15, 118, 110, 0.075);
      color: var(--green);
    }

    .status.high {
      background: rgba(29, 78, 216, 0.075);
      color: var(--blue);
    }

    .status.adjacent {
      background: rgba(161, 98, 7, 0.075);
      color: var(--amber);
    }

    .source-matrix {
      border-top: 0;
      background: transparent;
    }

    .source-grid-head,
    .side-row {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.75fr) minmax(220px, 0.9fr);
      gap: 18px;
      align-items: center;
    }

    .source-grid-head {
      padding: 11px 17px 10px;
      border-bottom: 1px solid var(--line);
      background: rgba(248, 250, 252, 0.62);
    }

    .source-grid-head span {
      color: #667085;
      font-size: 11px;
      font-weight: 520;
      line-height: 1.2;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .source-grid-head span:not(:first-child) {
      padding-left: 6px;
    }

    .side-list {
      display: grid;
    }

    .side-row {
      padding: 12px 17px;
      border-bottom: 1px solid var(--line);
      background: transparent;
      transition: background-color 140ms ease;
    }

    .side-row:hover {
      background: rgba(15, 23, 42, 0.025);
    }

    .side-row:last-child {
      border-bottom: 0;
    }

    .source-meta {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      min-width: 0;
    }

    .source-favicon {
      width: 20px;
      height: 20px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.88);
      object-fit: cover;
      flex: none;
    }

    .side-row strong {
      display: block;
      color: #111827;
      font-size: 13px;
      font-weight: 560;
      line-height: 1.3;
    }

    .source-meta span {
      display: block;
      margin-top: 2px;
      color: #667085;
      font-size: 12px;
      line-height: 1.35;
    }

    .source-signal {
      display: grid;
      gap: 6px;
      min-width: 0;
    }

    .source-signal-label {
      display: none;
      color: #667085;
      font-size: 10px;
      font-weight: 520;
      line-height: 1.2;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .source-signal-body {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      align-items: center;
      min-width: 0;
      padding: 4px 0 4px 6px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .source-sparkline {
      width: 100%;
      height: 32px;
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.78), rgba(241, 245, 249, 0.56));
      overflow: visible;
    }

    .source-sparkline path,
    .source-sparkline circle {
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      vector-effect: non-scaling-stroke;
    }

    .source-sparkline path {
      stroke-width: 2.15;
    }

    .source-sparkline circle {
      fill: currentColor;
      stroke: rgba(255, 255, 255, 0.9);
      stroke-width: 1.5;
    }

    .source-sparkline-price {
      color: #1d4ed8;
    }

    .source-sparkline-price path {
      stroke: currentColor;
    }

    .source-sparkline-demand {
      color: #08795d;
    }

    .source-sparkline-demand path {
      stroke: currentColor;
    }

    .source-signal-value {
      color: #111827;
      font-size: 12px;
      font-weight: 560;
      white-space: nowrap;
    }

    .source-signal-empty-state {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 0 10px;
      border: 1px dashed rgba(15, 23, 42, 0.14);
      border-radius: 999px;
      background: rgba(248, 250, 252, 0.52);
      color: #667085;
      font-size: 11px;
      font-weight: 520;
      line-height: 1.2;
      justify-self: center;
    }

    .source-empty-icon {
      width: 14px;
      height: 14px;
      color: currentColor;
      flex: none;
    }

    .source-signal-empty-state span {
      display: inline;
      margin-top: 0;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
    }

    .list-footer {
      display: flex;
      justify-content: center;
      padding: 12px 14px 14px;
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.38);
    }

    .show-more-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.62);
      color: #111827;
      cursor: pointer;
      font: inherit;
      font-size: 12px;
      font-weight: 520;
      box-shadow: none;
      transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
    }

    .show-more-button:hover,
    .show-more-button:focus-visible {
      border-color: var(--border-strong);
      background: var(--surface-muted);
      transform: translateY(-1px);
      outline: none;
    }

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

    .similar-item {
      position: relative;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      gap: 8px;
      min-width: 0;
      padding: 12px;
      border-right: 1px solid var(--line);
      background: transparent;
      transition: background-color 140ms ease;
    }

    .similar-item:hover {
      background: rgba(15, 23, 42, 0.025);
    }

    .similar-item:last-child {
      border-right: 0;
    }

    .similar-item h3 {
      margin: 0;
      font-size: 14px;
      font-family: var(--display);
      font-weight: 560;
      line-height: 1.3;
      letter-spacing: 0;
    }

    .similar-title {
      position: relative;
      min-width: 0;
    }

    .similar-title-link {
      position: relative;
      display: block;
      overflow: hidden;
      color: #111827;
      text-decoration: none;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .similar-title-link::after {
      content: attr(data-full-title);
      position: absolute;
      left: 0;
      top: calc(100% + 10px);
      z-index: 8;
      width: max-content;
      max-width: min(30rem, calc(100vw - 56px));
      padding: 9px 11px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
      color: #111827;
      font-size: 12px;
      font-weight: 520;
      line-height: 1.45;
      white-space: normal;
      opacity: 0;
      pointer-events: none;
      transform: translateY(4px);
      transition: opacity 140ms ease, transform 140ms ease;
    }

    .similar-title-link:hover::after,
    .similar-title-link:focus-visible::after {
      opacity: 1;
      transform: translateY(0);
    }

    .similar-item h3 a {
      color: #111827;
      text-decoration: none;
    }

    .similar-item h3 a:hover,
    .similar-item h3 a:focus-visible {
      color: var(--blue);
      outline: none;
    }

    .similar-item p {
      margin: 0;
      color: #667085;
      font-size: 12px;
      line-height: 1.4;
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .mini-metrics {
      display: flex;
      flex-wrap: nowrap;
      gap: 6px;
      align-items: center;
      margin-top: auto;
    }

    .mini-metrics .badge {
      white-space: nowrap;
    }

    .faq-list {
      display: grid;
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
    }

    .faq-item:last-child {
      border-bottom: 0;
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 14px;
      color: #111827;
      cursor: pointer;
      font-family: var(--display);
      font-size: 14px;
      font-weight: 560;
      line-height: 1.35;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      color: #667085;
      font-size: 16px;
      font-weight: 520;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-item p {
      margin: 0;
      padding: 0 14px 14px;
      color: #526071;
      font-size: 13px;
      line-height: 1.5;
    }

    .faq-item a {
      color: #1d4ed8;
      font-weight: 520;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
      transition: color 140ms ease;
    }

    .faq-item a:hover,
    .faq-item a:focus-visible {
      color: #1e40af;
      outline: none;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
      padding: 18px 20px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background:
        radial-gradient(circle at 88% 0%, rgba(29, 78, 216, 0.07), transparent 17rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.74));
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
      grid-column: span 12;
    }

    .locked-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
      padding: 18px 20px;
      border: 1px solid rgba(17, 24, 39, 0.12);
      border-radius: 16px;
      background:
        radial-gradient(circle at 94% 0%, rgba(17, 24, 39, 0.075), transparent 16rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.76));
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
      grid-column: span 12;
    }

    .locked-panel p {
      margin: 5px 0 0;
      color: #526071;
      font-size: 13px;
      line-height: 1.45;
    }

    .locked-list {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      max-width: 760px;
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
    }

    .locked-list li {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 9px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.7);
      color: #344054;
      font-size: 12px;
      line-height: 1.2;
    }

    .cta-panel h2 {
      margin: 0;
      font-size: 18px;
      font-family: var(--display);
      font-weight: 560;
      letter-spacing: 0;
      line-height: 1.25;
    }

    .cta-panel p {
      max-width: 760px;
      margin: 4px 0 0;
      color: #526071;
      font-size: 13px;
      line-height: 1.45;
    }

    .button-row {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 13px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.7);
      color: var(--text);
      font-size: 12px;
      font-weight: 520;
      box-shadow: none;
      transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
    }

    .button.primary {
      border-color: #111827;
      background: #111827;
      color: #ffffff;
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
    }

    .button:hover,
    .button:focus-visible {
      border-color: var(--border-strong);
      background: var(--surface-muted);
      transform: translateY(-1px);
      outline: none;
    }

    .button.primary:hover,
    .button.primary:focus-visible {
      border-color: #020617;
      background: #020617;
    }

    body.not-found-page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .not-found-main {
      flex: 1 0 auto;
      display: grid;
      align-items: center;
      padding: 64px 0;
    }

    .not-found-shell {
      width: min(calc(100% - 48px), 1040px);
      margin: 0 auto;
    }

    .not-found-panel {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(280px, 340px);
      gap: 42px;
      align-items: center;
      padding: 44px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background:
        radial-gradient(circle at 92% 12%, rgba(29, 78, 216, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.82));
      box-shadow: var(--shadow);
      overflow: hidden;
      isolation: isolate;
    }

    .not-found-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.028) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(90deg, #000, transparent 82%);
    }

    .not-found-copy {
      min-width: 0;
    }

    .not-found-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      margin: 0 0 18px;
      padding: 0 11px;
      border: 1px solid rgba(29, 78, 216, 0.16);
      border-radius: 999px;
      background: rgba(29, 78, 216, 0.055);
      color: var(--blue);
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 650;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .not-found-title {
      max-width: 12ch;
      margin: 0;
      color: var(--text);
      font-size: clamp(42px, 7vw, 72px);
      font-weight: 650;
      line-height: 0.94;
      letter-spacing: -0.065em;
      text-wrap: balance;
    }

    .not-found-lead {
      max-width: 620px;
      margin: 22px 0 0;
      color: var(--muted-strong);
      font-size: 17px;
      line-height: 1.72;
      letter-spacing: -0.01em;
    }

    .not-found-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .not-found-actions .button {
      min-height: 42px;
      padding: 0 16px;
      border-radius: 10px;
      font-weight: 620;
    }

    .not-found-note {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    .not-found-note span {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.64);
      white-space: nowrap;
    }

    .not-found-scan {
      position: relative;
      padding: 28px 26px 24px;
      border: 1px solid rgba(15, 23, 42, 0.09);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    }

    .not-found-scan::after {
      content: "";
      position: absolute;
      right: 22px;
      bottom: 20px;
      width: 78px;
      height: 78px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(29, 78, 216, 0.12), transparent 68%);
      pointer-events: none;
    }

    .not-found-scan-label {
      margin: 0 0 14px;
      color: var(--muted);
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 650;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .not-found-code {
      margin: 0;
      color: var(--text);
      font-family: var(--mono);
      font-size: clamp(70px, 10vw, 112px);
      font-weight: 700;
      line-height: 0.86;
      letter-spacing: -0.09em;
    }

    .not-found-barcode {
      height: 42px;
      margin: 24px 0 22px;
      background-image:
        repeating-linear-gradient(90deg, #111827 0 2px, transparent 2px 7px),
        repeating-linear-gradient(90deg, #111827 0 1px, transparent 1px 13px),
        repeating-linear-gradient(90deg, #111827 0 3px, transparent 3px 19px);
      background-blend-mode: darken;
      opacity: 0.82;
    }

    .not-found-scan-list {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .not-found-scan-list li {
      display: flex;
      align-items: baseline;
      gap: 10px;
      color: var(--muted);
      font-size: 12px;
    }

    .not-found-scan-list span {
      min-width: 78px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .not-found-scan-list strong {
      color: var(--text);
      font-weight: 650;
    }

    .footnote {
      padding: 0 0 26px;
      color: #667085;
      font-size: 12px;
      line-height: 1.45;
    }

    .footnote.shell {
      padding-right: 24px;
      padding-left: 24px;
      border-right: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .site-footer {
      padding: 0 0 40px;
    }

    .site-footer-grid {
      display: grid;
      grid-template-columns:
        minmax(0, 1.2fr)
        minmax(140px, 180px)
        minmax(180px, 220px)
        minmax(120px, 160px)
        minmax(180px, 220px);
      gap: 30px 56px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }

    .site-footer-brand {
      display: grid;
      align-content: start;
      gap: 12px;
    }

    .site-footer-brand-link {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .site-footer-meta {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    .site-footer-column {
      display: grid;
      align-content: start;
      gap: 12px;
    }

    .site-footer-column a {
      color: var(--text);
      font-size: 14px;
      line-height: 1.35;
      transition: color 140ms ease, transform 140ms ease;
    }

    .site-footer-column a:hover,
    .site-footer-column a:focus-visible {
      color: var(--blue);
      transform: translateX(1px);
      outline: none;
    }

    .site-footer-soon {
      position: relative;
      display: inline-flex;
      width: fit-content;
    }

    .site-footer-soon-label {
      position: relative;
      display: inline-flex;
      color: var(--text);
      font-size: 14px;
      line-height: 1.35;
      cursor: default;
      outline: none;
    }

    .site-footer-soon-label::after {
      content: attr(data-tooltip);
      position: absolute;
      left: 0;
      bottom: calc(100% + 10px);
      z-index: 30;
      padding: 8px 10px;
      border-radius: 10px;
      background: #111827;
      color: #ffffff;
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateY(4px);
      transition: opacity 140ms ease, transform 140ms ease;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.24);
    }

    .site-footer-soon-label::before {
      content: "";
      position: absolute;
      left: 14px;
      bottom: calc(100% + 5px);
      z-index: 31;
      width: 10px;
      height: 10px;
      background: #111827;
      opacity: 0;
      pointer-events: none;
      transform: rotate(45deg) translateY(4px);
      transform-origin: center;
      transition: opacity 140ms ease, transform 140ms ease;
    }

    .site-footer-soon:hover .site-footer-soon-label::after,
    .site-footer-soon:focus-within .site-footer-soon-label::after,
    .site-footer-soon:hover .site-footer-soon-label::before,
    .site-footer-soon:focus-within .site-footer-soon-label::before {
      opacity: 1;
      transform: translateY(0);
    }

    .site-footer-soon:hover .site-footer-soon-label::before,
    .site-footer-soon:focus-within .site-footer-soon-label::before {
      transform: rotate(45deg) translateY(0);
    }

    .home-main {
      padding-bottom: 34px;
    }

    .home-hero-grid {
      grid-template-columns: minmax(0, 1.16fr) 360px;
      min-height: auto;
      padding-top: 38px;
      padding-bottom: 34px;
    }

    .home-hero-copy {
      max-width: 860px;
    }

    .home-kicker {
      margin-bottom: 14px;
    }

    .home-title {
      max-width: 900px;
    }

    .hero-search {
      max-width: 860px;
      margin-top: 22px;
    }

    .hero-search-label {
      display: block;
      margin-bottom: 8px;
      color: #344054;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .hero-search-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 18px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.92)),
        #ffffff;
      box-shadow: var(--shadow-soft);
    }

    .hero-search-row:focus-within {
      border-color: rgba(29, 78, 216, 0.42);
      box-shadow:
        0 0 0 4px rgba(29, 78, 216, 0.08),
        var(--shadow-soft);
    }

    .hero-search-input {
      width: 100%;
      min-width: 0;
      min-height: 56px;
      padding: 0 16px;
      border: 0;
      background: transparent;
      color: #111827;
      font-family: var(--mono);
      font-size: clamp(20px, 3.2vw, 30px);
      font-weight: 560;
      letter-spacing: -0.04em;
    }

    .hero-search-input::placeholder {
      color: #94a3b8;
    }

    .hero-search-input:focus {
      outline: none;
    }

    .hero-search-submit {
      min-height: 56px;
      padding: 0 18px;
      font-size: 13px;
      white-space: nowrap;
    }

    .hero-search-note {
      margin: 10px 0 0;
      color: #526071;
      font-size: 12px;
      line-height: 1.45;
    }

    .home-suggestion-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
    }

    .home-suggestion-label {
      color: #667085;
      font-size: 12px;
      font-weight: 520;
    }

    .home-hero-aside {
      gap: 14px;
      grid-template-columns: 1fr;
      padding-top: 12px;
    }

    .home-preview-card,
    .home-sample-card {
      padding: 14px;
    }

    .home-preview-card .sidebar-heading {
      padding: 0 0 12px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 12px;
    }

    .home-preview-list {
      display: grid;
      gap: 10px;
    }

    .home-preview-item {
      display: grid;
      gap: 3px;
      padding: 11px 12px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.68);
    }

    .home-preview-item strong {
      color: #111827;
      font-size: 13px;
      font-weight: 560;
      line-height: 1.3;
    }

    .home-preview-item span {
      color: #667085;
      font-size: 12px;
      line-height: 1.4;
    }

    .home-sample-card {
      background:
        radial-gradient(circle at 100% 0%, rgba(29, 78, 216, 0.075), transparent 16rem),
        rgba(255, 255, 255, 0.74);
    }

    .home-sample-eyebrow {
      margin: 10px 0 0;
      color: #667085;
      font-size: 12px;
      font-weight: 520;
      font-variant-numeric: tabular-nums;
    }

    .home-sample-card h2 {
      margin: 4px 0 0;
      color: #111827;
      font-family: var(--display);
      font-size: 20px;
      font-weight: 560;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

    .home-sample-copy {
      margin: 8px 0 0;
      color: #526071;
      font-size: 13px;
      line-height: 1.45;
    }

    .home-sample-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-top: 14px;
    }

    .home-sample-card .report-meta-chip {
      display: grid;
      gap: 4px;
      min-height: 56px;
      padding: 10px 12px;
    }

    .home-sample-card .button {
      width: 100%;
      margin-top: 14px;
    }

    .home-nav-band {
      display: block;
    }

    .home-layout.report-layout {
      display: block;
      padding-top: 24px;
    }

    .home-report {
      gap: 24px;
    }

    .home-panel-body {
      padding: 18px;
    }

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

    .home-step,
    .home-feature,
    .home-entry-card,
    .home-metric-item,
    .home-checklist li,
    .home-alt-card {
      border: 1px solid var(--line);
      border-radius: 14px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(249, 250, 252, 0.72)),
        #ffffff;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
    }

    .home-step {
      padding: 16px;
    }

    .home-step-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 34px;
      min-height: 26px;
      padding: 0 9px;
      border: 1px solid rgba(29, 78, 216, 0.14);
      border-radius: 999px;
      background: rgba(29, 78, 216, 0.055);
      color: #1d4ed8;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .home-step h3 {
      margin: 10px 0 0;
      color: #111827;
      font-family: var(--display);
      font-size: 17px;
      font-weight: 560;
      line-height: 1.25;
    }

    .home-step p {
      margin: 6px 0 0;
      color: #526071;
      font-size: 13px;
      line-height: 1.5;
    }

    .home-feature-grid,
    .home-alt-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .home-feature {
      padding: 15px;
    }

    .home-feature strong,
    .home-entry-card strong,
    .home-metric-item strong,
    .home-checklist strong,
    .home-alt-card strong {
      color: #111827;
      font-size: 14px;
      font-weight: 560;
      line-height: 1.3;
    }

    .home-feature p,
    .home-metric-item p,
    .home-checklist span,
    .home-alt-card span {
      margin: 6px 0 0;
      color: #526071;
      font-size: 13px;
      line-height: 1.5;
    }

    .home-entry-list,
    .home-metric-list,
    .home-checklist {
      display: grid;
      gap: 10px;
    }

    .home-entry-card,
    .home-metric-item,
    .home-alt-card {
      display: grid;
      gap: 5px;
      padding: 14px 15px;
      transition: border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
    }

    .home-entry-card:hover,
    .home-entry-card:focus-visible,
    .home-alt-card:hover,
    .home-alt-card:focus-visible {
      border-color: rgba(29, 78, 216, 0.2);
      background: rgba(29, 78, 216, 0.045);
      transform: translateY(-1px);
      outline: none;
    }

    .home-entry-card span {
      color: #526071;
      font-size: 13px;
      line-height: 1.45;
    }

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

    .home-checklist li {
      display: grid;
      gap: 3px;
      padding: 14px 15px;
    }

    @media (max-width: 1060px) {
      .home-hero-grid {
        grid-template-columns: 1fr;
      }

      .home-hero-aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 0;
      }

      .home-steps {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .home-hero-grid {
        padding-top: 24px;
        padding-bottom: 24px;
      }

      .hero-search-row {
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
      }

      .hero-search-input {
        min-height: 52px;
        font-size: 20px;
      }

      .hero-search-submit {
        width: 100%;
      }

      .home-hero-aside,
      .home-sample-metrics,
      .home-feature-grid,
      .home-alt-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1060px) {
      .topbar-inner {
        flex-wrap: wrap;
        padding: 8px 24px;
      }

      .topnav {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
      }

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

      .nav-band {
        display: block;
      }

      .report-layout {
        display: block;
      }

      .report-sidebar {
        display: none;
      }

      .product-head-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: auto;
      }

      .head-aside {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding-top: 0;
      }

      .kpi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .kpi {
        border-bottom: 1px solid var(--line);
      }

      .kpi:nth-child(3n) {
        border-right: 0;
      }

      .kpi:nth-last-child(-n + 3) {
        border-bottom: 0;
      }

      .kpi-popover {
        width: min(220px, calc(100vw - 28px));
      }

      .panel.span-4,
      .panel.span-5,
      .panel.span-6,
      .panel.span-7,
      .panel.span-8 {
        grid-column: span 12;
      }
    }

    @media (max-width: 980px) {
      .source-grid-head {
        display: none;
      }

      .side-row {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
      }

      .source-signal-label {
        display: block;
      }
    }

    @media (max-width: 760px) {
      .shell {
        width: min(calc(100% - 20px), var(--max));
      }

      .panel-head,
      .locked-panel,
      .cta-panel {
        align-items: flex-start;
      }

      .panel-head,
      .locked-panel,
      .cta-panel {
        flex-direction: column;
      }

      .topbar-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px 10px;
        min-height: auto;
        padding: 10px 16px 9px;
      }

      .topnav {
        grid-column: 1 / -1;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 6px;
        overflow-x: auto;
        padding-top: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .topnav::-webkit-scrollbar {
        display: none;
      }

      .nav-link-main {
        min-height: 30px;
        padding: 0 8px;
        font-size: 12px;
      }

      .topbar-actions {
        grid-column: 2;
        grid-row: 1;
        width: auto;
        align-items: center;
        justify-content: flex-end;
        gap: 7px;
        margin-left: 0;
      }

      .topbar-actions .button {
        width: auto;
        min-height: 34px;
        padding: 0 12px;
        border-radius: 10px;
      }

      .topbar-link {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        font-size: 12px;
      }

      .not-found-main {
        padding: 34px 0 46px;
      }

      .not-found-shell {
        width: min(calc(100% - 24px), 1040px);
      }

      .not-found-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 28px 22px;
        border-radius: 20px;
      }

      .not-found-title {
        max-width: none;
      }

      .not-found-lead {
        font-size: 15.5px;
      }

      .not-found-actions .button {
        width: 100%;
      }

      .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .product-head-grid,
      .nav-scroll,
      .report-layout,
      .footnote.shell {
        padding-right: 16px;
        padding-left: 16px;
      }

      .dropdown-panel {
        left: 0;
        max-width: calc(100vw - 20px);
        transform: translate(0, 8px);
      }

      .nav-dropdown:hover .dropdown-panel,
      .nav-dropdown:focus-within .dropdown-panel {
        transform: translate(0, 0);
      }

      .brand-menu {
        width: min(310px, calc(100vw - 20px));
      }

      .solutions-menu {
        grid-template-columns: 1fr;
        width: min(520px, calc(100vw - 20px));
      }

      .product-head {
        padding-top: 0;
      }

      .product-head-grid {
        padding-top: 22px;
        padding-bottom: 22px;
      }

      .product-title {
        font-size: 30px;
      }

      .kpi-grid,
      .head-aside,
      .similar-grid,
      .locked-panel,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .similar-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .kpi {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .kpi:nth-last-child(-n + 3) {
        border-bottom: 1px solid var(--line);
      }

      .kpi:last-child {
        border-bottom: 0;
      }

      .similar-item:last-child {
        border-bottom: 0;
      }

      .source-signal-body {
        gap: 8px;
      }

      .source-signal-value {
        white-space: normal;
        text-align: right;
      }

      .chart {
        height: 220px;
      }

      .chart.compact {
        height: 210px;
      }

      .button-row {
        justify-content: flex-start;
      }

      .panel-actions {
        justify-content: flex-start;
      }

      .range-popover {
        right: auto;
        left: 0;
        width: min(238px, calc(100vw - 40px));
      }

      .range-popover::before {
        right: auto;
        left: 18px;
      }
    }

    .prime-main {
      padding: 18px 0 40px;
    }

    .prime-surface {
      position: relative;
      margin-top: 22px;
      padding: 38px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.76)),
        #ffffff;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 26px 60px rgba(15, 23, 42, 0.05);
      overflow: hidden;
    }

    .prime-hero-surface {
      margin-top: 0;
      background:
        radial-gradient(circle at 100% 0%, rgba(29, 78, 216, 0.08), transparent 24rem),
        radial-gradient(circle at 0% 100%, rgba(15, 118, 110, 0.055), transparent 22rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.84));
    }

    .prime-hero-surface::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.022) 1px, transparent 1px);
      background-size: 68px 68px;
      opacity: 0.45;
      mask-image: linear-gradient(180deg, #000, transparent 92%);
    }

    .prime-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 430px;
      gap: 44px;
      align-items: center;
    }

    .prime-copy {
      max-width: 760px;
    }

    .prime-eyebrow,
    .prime-section-kicker,
    .prime-use-tag,
    .prime-report-badge,
    .prime-report-pill,
    .prime-report-chip {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 11px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .prime-eyebrow,
    .prime-section-kicker,
    .prime-use-tag,
    .prime-report-badge {
      border: 1px solid rgba(29, 78, 216, 0.15);
      background: rgba(29, 78, 216, 0.06);
      color: #1d4ed8;
    }

    .prime-title,
    .prime-section-head h2,
    .prime-bottom-grid h2 {
      margin: 14px 0 0;
      color: #111827;
      font-family: var(--display);
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 560;
      letter-spacing: -0.07em;
      line-height: 0.98;
    }

    .prime-section-head h2,
    .prime-bottom-grid h2 {
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.02;
    }

    .prime-subtitle,
    .prime-section-head p,
    .prime-bottom-grid p {
      max-width: 700px;
      margin: 18px 0 0;
      color: #475569;
      font-size: 17px;
      line-height: 1.65;
    }

    .prime-search {
      max-width: 760px;
      margin-top: 28px;
    }

    .prime-search-label {
      display: block;
      margin-bottom: 10px;
      color: #344054;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .prime-search-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px;
      border: 1px solid rgba(15, 23, 42, 0.14);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    }

    .prime-search-row:focus-within {
      border-color: rgba(29, 78, 216, 0.3);
      box-shadow:
        0 0 0 4px rgba(29, 78, 216, 0.07),
        0 18px 44px rgba(15, 23, 42, 0.08);
    }

    .prime-search-input {
      width: 100%;
      min-width: 0;
      min-height: 62px;
      padding: 0 18px;
      border: 0;
      background: transparent;
      color: #111827;
      font-family: var(--mono);
      font-size: clamp(20px, 2.8vw, 30px);
      font-weight: 560;
      letter-spacing: -0.04em;
    }

    .prime-search-input::placeholder {
      color: #94a3b8;
    }

    .prime-search-input:focus {
      outline: none;
    }

    .prime-search-submit {
      min-height: 62px;
      padding: 0 18px;
      font-size: 13px;
    }

    .prime-search-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
      color: #667085;
      font-size: 12px;
    }

    .prime-inline-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .prime-inline-proof span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 11px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      color: #344054;
      font-size: 12px;
      font-weight: 520;
    }

    .prime-visual {
      position: relative;
      min-width: 0;
    }

    .prime-visual::before {
      content: "";
      position: absolute;
      inset: 14px 24px -18px 24px;
      border-radius: 30px;
      background: rgba(29, 78, 216, 0.08);
      filter: blur(34px);
      pointer-events: none;
    }

    .prime-report {
      position: relative;
      padding: 22px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 28px;
      background:
        radial-gradient(circle at 100% 0%, rgba(29, 78, 216, 0.11), transparent 14rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.96));
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 28px 56px rgba(15, 23, 42, 0.1);
    }

    .prime-report-top,
    .prime-report-head,
    .prime-chart-copy,
    .prime-bottom-grid,
    .prime-section-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
    }

    .prime-report-pill,
    .prime-report-chip {
      border: 1px solid rgba(17, 24, 39, 0.1);
      background: rgba(255, 255, 255, 0.92);
      color: #0f172a;
    }

    .prime-report-head {
      margin-top: 18px;
    }

    .prime-report-code {
      margin: 0;
      color: #64748b;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      font-variant-numeric: tabular-nums;
    }

    .prime-report-head h2 {
      margin: 8px 0 0;
      color: #0f172a;
      font-family: var(--display);
      font-size: 33px;
      font-weight: 560;
      letter-spacing: -0.06em;
      line-height: 0.98;
    }

    .prime-report-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .prime-stat,
    .prime-chart-card,
    .prime-feature-card,
    .prime-use-card {
      border: 1px solid var(--line);
      border-radius: 20px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.74)),
        #ffffff;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset;
    }

    .prime-stat {
      padding: 14px;
    }

    .prime-stat span,
    .prime-proof-item span,
    .prime-chart-copy span {
      display: block;
      color: #64748b;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .prime-stat strong,
    .prime-proof-item strong,
    .prime-chart-copy b {
      display: block;
      margin-top: 6px;
      color: #0f172a;
      font-size: 18px;
      font-family: var(--display);
      font-weight: 560;
      line-height: 1.15;
    }

    .prime-chart-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .prime-chart-card {
      padding: 14px;
    }

    .prime-chart-card svg {
      display: block;
      width: 100%;
      height: 72px;
      margin-top: 10px;
    }

    .prime-report-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .prime-report-footer span {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: #334155;
      font-size: 11px;
      font-weight: 520;
    }

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

    .prime-proof-item {
      min-width: 0;
      padding-left: 18px;
      border-left: 1px solid var(--line);
    }

    .prime-proof-item:first-child {
      padding-left: 0;
      border-left: 0;
    }

    .prime-feature-surface,
    .prime-use-surface {
      padding-top: 34px;
      padding-bottom: 34px;
    }

    .prime-section-head {
      margin-bottom: 22px;
    }

    .prime-section-head > div,
    .prime-bottom-grid > div:first-child {
      min-width: 0;
    }

    .prime-feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .prime-feature-card {
      position: relative;
      min-height: 170px;
      padding: 20px;
    }

    .prime-feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 20px;
      right: 20px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(29, 78, 216, 0.6), rgba(15, 118, 110, 0.16));
    }

    .prime-feature-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 30px;
      min-height: 30px;
      border-radius: 999px;
      background: rgba(29, 78, 216, 0.06);
      color: #1d4ed8;
      font-size: 11px;
      font-weight: 700;
    }

    .prime-feature-card h3,
    .prime-use-card h3 {
      margin: 14px 0 0;
      color: #111827;
      font-family: var(--display);
      font-size: 24px;
      font-weight: 560;
      letter-spacing: -0.04em;
      line-height: 1.08;
    }

    .prime-feature-card p,
    .prime-use-card p {
      margin: 9px 0 0;
      color: #526071;
      font-size: 14px;
      line-height: 1.55;
    }

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

    .prime-use-card {
      padding: 22px;
    }

    .prime-bottom-grid {
      align-items: center;
    }

    .prime-bottom-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
      white-space: nowrap;
    }

    @media (max-width: 1100px) {
      .prime-hero-grid,
      .prime-section-head,
      .prime-bottom-grid {
        display: grid;
        grid-template-columns: 1fr;
      }

      .prime-visual {
        max-width: 560px;
      }

      .prime-proof-grid,
      .prime-use-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .prime-surface {
        margin-top: 16px;
        padding: 22px 18px;
        border-radius: 24px;
      }

      .prime-title {
        font-size: 34px;
      }

      .prime-subtitle,
      .prime-section-head p,
      .prime-bottom-grid p {
        font-size: 15px;
      }

      .prime-search-row {
        flex-direction: column;
        align-items: stretch;
      }

      .prime-search-input,
      .prime-search-submit {
        min-height: 56px;
      }

      .prime-search-submit {
        width: 100%;
      }

      .prime-report-head,
      .prime-bottom-grid {
        display: grid;
      }

      .prime-proof-grid,
      .prime-feature-grid,
      .prime-use-grid,
      .prime-chart-grid,
      .prime-report-stats {
        grid-template-columns: 1fr;
      }

      .prime-proof-item {
        padding-left: 0;
        padding-top: 14px;
        border-left: 0;
        border-top: 1px solid var(--line);
      }

      .prime-proof-item:first-child {
        padding-top: 0;
        border-top: 0;
      }

        .prime-bottom-actions {
        justify-content: flex-start;
      }
    }

    .home-premium {
      background:
        radial-gradient(circle at 12% 0%, rgba(29, 78, 216, 0.05), transparent 34rem),
        radial-gradient(circle at 100% 18%, rgba(15, 118, 110, 0.045), transparent 32rem),
        linear-gradient(180deg, #fbfcfe 0, #f3f6fa 100%);
    }

    .home-premium::before,
    .home-premium::after {
      display: none;
    }

    .home-premium .topbar {
      background: rgba(251, 252, 254, 0.82);
      border-bottom-color: rgba(15, 23, 42, 0.06);
      backdrop-filter: blur(18px) saturate(1.08);
    }

    .home-premium .topbar-inner {
      border-right-color: transparent;
      border-left-color: transparent;
    }

    .luxe-main {
      padding: 34px 0 80px;
    }

    .luxe-hero,
    .luxe-rail,
    .luxe-editorial,
    .luxe-usecase,
    .luxe-cta {
      margin-top: 52px;
    }

    .luxe-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) 420px;
      gap: clamp(36px, 5vw, 74px);
      align-items: center;
    }

    .luxe-copy {
      min-width: 0;
      max-width: 760px;
    }

    .luxe-kicker,
    .luxe-chip {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 11px;
      border-radius: 999px;
      border: 1px solid rgba(29, 78, 216, 0.14);
      background: rgba(29, 78, 216, 0.05);
      color: #1d4ed8;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .luxe-chip.is-soft {
      border-color: rgba(15, 23, 42, 0.08);
      background: rgba(255, 255, 255, 0.84);
      color: #111827;
    }

    .luxe-title,
    .luxe-editorial-head h2,
    .luxe-usecase-copy h2,
    .luxe-cta h2 {
      margin: 16px 0 0;
      color: #111827;
      font-family: var(--display);
      font-size: clamp(46px, 6vw, 82px);
      font-weight: 560;
      letter-spacing: -0.075em;
      line-height: 0.94;
    }

    .luxe-editorial-head h2,
    .luxe-usecase-copy h2,
    .luxe-cta h2 {
      font-size: clamp(30px, 3.2vw, 46px);
      line-height: 1;
    }

    .luxe-subtitle {
      max-width: 640px;
      margin: 22px 0 0;
      color: #526071;
      font-size: 18px;
      line-height: 1.68;
    }

    .luxe-search {
      max-width: 760px;
      margin-top: 34px;
    }

    .luxe-search-label {
      display: block;
      margin-bottom: 10px;
      color: #344054;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .luxe-search-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px;
      border: 1px solid rgba(15, 23, 42, 0.1);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.96) inset,
        0 18px 44px rgba(15, 23, 42, 0.06);
    }

    .luxe-search-row:focus-within {
      border-color: rgba(29, 78, 216, 0.25);
      box-shadow:
        0 0 0 4px rgba(29, 78, 216, 0.07),
        0 18px 44px rgba(15, 23, 42, 0.06);
    }

    .luxe-search-input {
      width: 100%;
      min-width: 0;
      min-height: 62px;
      padding: 0 18px;
      border: 0;
      background: transparent;
      color: #111827;
      font-family: var(--mono);
      font-size: clamp(20px, 2.8vw, 30px);
      font-weight: 560;
      letter-spacing: -0.04em;
    }

    .luxe-search-input::placeholder {
      color: #97a6ba;
    }

    .luxe-search-input:focus {
      outline: none;
    }

    .luxe-search-submit {
      min-height: 62px;
      padding: 0 18px;
      font-size: 13px;
      white-space: nowrap;
    }

    .luxe-search-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 11px;
      color: #667085;
      font-size: 12px;
    }

    .luxe-proofline {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .luxe-proofline span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 11px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.74);
      color: #334155;
      font-size: 12px;
      font-weight: 520;
    }

    .luxe-panel {
      position: relative;
      padding: 22px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 30px;
      background:
        radial-gradient(circle at 100% 0%, rgba(29, 78, 216, 0.07), transparent 15rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 252, 0.94));
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.96) inset,
        0 26px 64px rgba(15, 23, 42, 0.08);
    }

    .luxe-panel-top,
    .luxe-panel-head,
    .luxe-mini-head,
    .luxe-usecase {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
    }

    .luxe-code {
      margin: 0;
      color: #64748b;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      font-variant-numeric: tabular-nums;
    }

    .luxe-panel-head {
      margin-top: 18px;
    }

    .luxe-panel-head h2 {
      margin: 8px 0 0;
      color: #0f172a;
      font-family: var(--display);
      font-size: 38px;
      font-weight: 560;
      letter-spacing: -0.065em;
      line-height: 0.95;
    }

    .luxe-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .luxe-metrics article,
    .luxe-editorial-stat,
    .luxe-usecase-list article {
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.76)),
        #ffffff;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.96) inset;
    }

    .luxe-metrics article {
      padding: 14px;
    }

    .luxe-metrics span,
    .luxe-rail span,
    .luxe-mini-head span,
    .luxe-editorial-stat span,
    .luxe-usecase-list span {
      display: block;
      color: #64748b;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .luxe-metrics strong,
    .luxe-rail strong,
    .luxe-mini-head b {
      display: block;
      margin-top: 6px;
      color: #0f172a;
      font-size: 18px;
      font-family: var(--display);
      font-weight: 560;
      line-height: 1.15;
    }

    .luxe-mini-chart {
      margin-top: 18px;
      padding: 16px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(15, 23, 42, 0.06);
    }

    .luxe-mini-head b {
      margin-top: 0;
      font-size: 20px;
    }

    .luxe-mini-chart svg {
      display: block;
      width: 100%;
      height: 118px;
      margin-top: 12px;
    }

    .luxe-source-line {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .luxe-source-line span {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.76);
      color: #334155;
      font-size: 11px;
      font-weight: 520;
    }

    .luxe-rail {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      padding-top: 26px;
    }

    .luxe-rail article {
      min-width: 0;
      padding-top: 4px;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .luxe-editorial-head {
      max-width: 760px;
    }

    .luxe-editorial-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 30px;
    }

    .luxe-editorial-stat {
      min-height: 190px;
      padding: 22px;
    }

    .luxe-editorial-stat span {
      color: #1d4ed8;
    }

    .luxe-editorial-stat h3 {
      margin: 14px 0 0;
      color: #111827;
      font-family: var(--display);
      font-size: 28px;
      font-weight: 560;
      letter-spacing: -0.05em;
      line-height: 1;
    }

    .luxe-editorial-stat p,
    .luxe-usecase-list p {
      margin: 10px 0 0;
      color: #526071;
      font-size: 14px;
      line-height: 1.6;
    }

    .luxe-usecase {
      align-items: flex-start;
      gap: 42px;
      padding-top: 12px;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .luxe-usecase-copy {
      min-width: 0;
      max-width: 560px;
    }

    .luxe-usecase-list {
      display: grid;
      gap: 12px;
      width: min(100%, 460px);
    }

    .luxe-usecase-list article {
      padding: 18px 18px 17px;
    }

    .luxe-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding-top: 22px;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .luxe-cta > div:first-child {
      min-width: 0;
      max-width: 760px;
    }

    .luxe-cta-actions {
      justify-content: flex-end;
      white-space: nowrap;
    }

    @media (max-width: 1100px) {
      .luxe-hero,
      .luxe-usecase,
      .luxe-cta {
        display: grid;
        grid-template-columns: 1fr;
      }

      .luxe-panel {
        max-width: 560px;
      }

      .luxe-rail,
      .luxe-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .luxe-main {
        padding: 20px 0 52px;
      }

      .luxe-hero,
      .luxe-rail,
      .luxe-editorial,
      .luxe-usecase,
      .luxe-cta {
        margin-top: 34px;
      }

      .luxe-title {
        font-size: 38px;
      }

      .luxe-subtitle {
        font-size: 16px;
      }

      .luxe-search-row {
        flex-direction: column;
        align-items: stretch;
      }

      .luxe-search-input,
      .luxe-search-submit {
        min-height: 56px;
      }

      .luxe-search-submit {
        width: 100%;
      }

      .luxe-panel-head,
      .luxe-usecase,
      .luxe-cta {
        display: grid;
      }

      .luxe-rail,
      .luxe-metrics,
      .luxe-editorial-grid {
        grid-template-columns: 1fr;
      }

      .luxe-cta-actions {
        justify-content: flex-start;
      }
    }

    .products-main {
      padding-bottom: 44px;
    }

    .products-results.shell {
      padding-right: 24px;
      padding-left: 24px;
      border-right: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .products-list-panel {
      overflow: hidden;
    }

    .products-panel-head {
      align-items: flex-end;
    }

    .products-panel-meta {
      display: grid;
      gap: 4px;
      justify-items: end;
      text-align: right;
      flex: none;
    }

    .products-summary,
    .products-page-indicator {
      margin: 0;
      color: #526071;
      font-size: 12px;
      line-height: 1.4;
    }

    .products-summary {
      color: #111827;
      font-weight: 560;
    }

    .products-table {
      min-width: 900px;
    }

    .products-table th,
    .products-table td {
      vertical-align: middle;
    }

    .products-table thead th {
      text-align: left;
    }

    .products-table thead th:nth-child(n + 3) {
      text-align: center;
    }

    .products-table th:first-child,
    .products-table td:first-child {
      padding-left: 17px;
    }

    .products-table th:last-child,
    .products-table td:last-child {
      padding-right: 17px;
    }

    .products-rank {
      width: 54px;
      color: #667085;
      font-size: 12px;
      font-weight: 560;
      white-space: nowrap;
    }

    .products-product-cell {
      min-width: 320px;
    }

    .products-product-link {
      display: block;
    }

    .products-product-link strong {
      display: block;
      color: #111827;
      font-size: 13px;
      font-weight: 560;
      line-height: 1.35;
      transition: color 140ms ease;
    }

    .products-product-link:hover strong,
    .products-product-link:focus-visible strong {
      color: var(--blue);
    }

    .products-product-link:focus-visible {
      outline: none;
    }

    .products-product-link small {
      display: block;
      margin-top: 3px;
      color: #667085;
      font-size: 12px;
      line-height: 1.35;
    }

    .products-product-meta {
      font-family: var(--mono);
      letter-spacing: 0.02em;
    }

    .products-metric-cell,
    .products-sources-cell,
    .products-action-cell {
      text-align: center;
    }

    .products-score {
      display: grid;
      justify-items: center;
      gap: 0;
    }

    .products-score-ring {
      --score-size: 52px;
      width: var(--score-size);
      height: var(--score-size);
      border-radius: 999px;
      background:
        conic-gradient(#1d4ed8 calc(var(--score-fill) * 1%), rgba(29, 78, 216, 0.14) 0);
      display: grid;
      place-items: center;
    }

    .products-score-competition .products-score-ring {
      background:
        conic-gradient(#172033 calc(var(--score-fill) * 1%), rgba(23, 32, 51, 0.12) 0);
    }

    .products-score-ring-inner {
      width: calc(var(--score-size) - 10px);
      height: calc(var(--score-size) - 10px);
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset;
      color: #111827;
      font-family: var(--display);
      font-size: 14px;
      font-weight: 560;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .products-sources-stack {
      display: grid;
      justify-items: center;
      gap: 4px;
    }

    .products-sources-cell strong {
      display: block;
      color: #111827;
      font-size: 13px;
      font-weight: 560;
      line-height: 1.3;
    }

    .products-sources-cell small {
      color: #667085;
      font-size: 11px;
      line-height: 1.3;
      white-space: nowrap;
    }

    .products-open-button {
      min-width: 128px;
      justify-content: center;
    }

    .products-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      padding: 18px 0 0;
    }

    .products-page-link,
    .products-page-dots {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      min-height: 38px;
      padding: 0 12px;
      border: 1px solid var(--border);
      border-radius: 11px;
      background: rgba(255, 255, 255, 0.72);
      color: #344054;
      font-size: 12px;
      font-weight: 560;
      line-height: 1;
      text-decoration: none;
      white-space: nowrap;
      transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease, color 140ms ease;
    }

    .products-page-link:hover,
    .products-page-link:focus-visible {
      border-color: var(--border-strong);
      background: rgba(255, 255, 255, 0.92);
      color: #111827;
      transform: translateY(-1px);
      outline: none;
    }

    .products-page-link.is-current {
      border-color: #111827;
      background: #111827;
      color: #ffffff;
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    }

    .products-page-link.is-disabled {
      color: #98a2b3;
      background: rgba(248, 250, 252, 0.72);
    }

    .products-page-dots {
      min-width: 32px;
      padding: 0 8px;
      color: #98a2b3;
    }

    .cookie-banner {
      position: fixed;
      right: 16px;
      bottom: 16px;
      left: 16px;
      z-index: 80;
      display: flex;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .cookie-banner[hidden] {
      display: none;
    }

    .cookie-banner.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .cookie-banner-inner {
      width: min(100%, 860px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 12px 10px 14px;
      border: 1px solid rgba(15, 23, 42, 0.1);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 16px 42px rgba(15, 23, 42, 0.13);
      backdrop-filter: blur(14px);
      pointer-events: auto;
    }

    .cookie-banner-text {
      margin: 0;
      color: #475569;
      font-size: 12px;
      line-height: 1.45;
    }

    .cookie-banner-text a {
      color: #1d4ed8;
      font-weight: 650;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
    }

    .cookie-banner-text a:hover,
    .cookie-banner-text a:focus-visible {
      color: #1e40af;
      outline: none;
    }

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

    .cookie-banner-button {
      min-height: 32px;
      padding: 0 12px;
      border: 1px solid transparent;
      border-radius: 10px;
      font: inherit;
      font-size: 12px;
      font-weight: 650;
      cursor: pointer;
      transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
    }

    .cookie-banner-button:hover,
    .cookie-banner-button:focus-visible {
      transform: translateY(-1px);
      outline: none;
    }

    .cookie-banner-button-muted {
      border-color: rgba(15, 23, 42, 0.1);
      background: rgba(248, 250, 252, 0.9);
      color: #475569;
    }

    .cookie-banner-button-primary {
      background: #111827;
      color: #ffffff;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
    }

    @media (max-width: 980px) {
      .products-panel-head {
        align-items: flex-start;
      }

      .products-panel-meta {
        justify-items: start;
        text-align: left;
      }
    }

    @media (max-width: 760px) {
      .products-results.shell {
        padding-right: 18px;
        padding-left: 18px;
      }

      .products-panel-head {
        flex-direction: column;
      }

      .products-pagination {
        justify-content: flex-start;
      }

      .cookie-banner {
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        left: 8px;
      }

      .cookie-banner-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        border-radius: 16px;
      }

      .cookie-banner-text {
        font-size: 11.5px;
        line-height: 1.38;
      }

      .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        justify-content: stretch;
      }

      .cookie-banner-button {
        min-height: 38px;
        border-radius: 12px;
      }
    }

    @media (max-width: 390px) {
      .topbar-link {
        display: none;
      }
    }
