:root {
  --bg: #07090d;
  --ink: #f7fbff;
  --muted: rgba(232, 238, 242, 0.68);
  --soft: rgba(232, 238, 242, 0.46);
  --panel: rgba(13, 17, 22, 0.82);
  --panel-strong: rgba(9, 12, 17, 0.94);
  --paper: #edf3f7;
  --paper-2: #d9e4ed;
  --paper-ink: #05070a;
  --line: rgba(135, 171, 197, 0.24);
  --cyan: #53d7ff;
  --blue: #2f5dff;
  --violet: #7555ff;
  --lime: #baff62;
  --amber: #ffb84f;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 6% 28%, rgba(49, 91, 255, 0.22), transparent 22%),
    radial-gradient(circle at 96% 4%, rgba(83, 215, 255, 0.14), transparent 20%),
    radial-gradient(circle at 75% 72%, rgba(101, 71, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #07090d 0 100vh, #e7edf2 100vh, #f1f4f6 100%);
  color: var(--ink);
  font-family:
    Arial,
    Helvetica,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(58px, 6.5vw, 128px);
  color: white;
  background: linear-gradient(180deg, rgba(4, 9, 12, 0.82), rgba(4, 9, 12, 0.18), transparent);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-grid;
  place-items: center;
  width: auto;
  min-width: 58px;
  height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(41, 227, 255, 0.42);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(14px, 1.65vw, 26px);
  font-size: 12px;
  font-weight: 800;
}

.nav a {
  color: rgba(247, 251, 255, 0.82);
}

.nav a:hover {
  color: var(--cyan);
}

.hero-poster {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  --mx: 0;
  --my: 0;
  --scroll: 0;
  padding: 104px clamp(22px, 4vw, 58px) 118px;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 82%, rgba(30, 116, 255, 0.46), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(255, 105, 74, 0.34), transparent 20%),
    radial-gradient(circle at 80% 62%, rgba(83, 215, 255, 0.22), transparent 22%),
    radial-gradient(circle at 50% 38%, rgba(117, 85, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #05070b 0%, #0b0f15 100%);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.05), rgba(5, 7, 10, 0.18));
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 7px);
  background-size: 7px 7px, 100% 8px;
}

.poster-shell {
  position: absolute;
  left: clamp(20px, 3.4vw, 52px);
  right: clamp(20px, 3.4vw, 52px);
  top: 84px;
  bottom: 112px;
  z-index: 5;
  overflow: hidden;
  border: 1px solid rgba(234, 248, 255, 0.32);
  border-radius: 22px;
  backdrop-filter: blur(34px) saturate(1.75);
  -webkit-backdrop-filter: blur(34px) saturate(1.75);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 28%, rgba(143, 203, 236, 0.14) 68%, rgba(255, 255, 255, 0.22)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.38), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(94, 211, 255, 0.22), transparent 34%),
    rgba(218, 237, 247, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    inset 0 -50px 95px rgba(18, 42, 64, 0.16),
    inset 0 0 64px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 34px 110px rgba(0, 0, 0, 0.58);
}

.poster-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 0.65px, transparent 0.9px);
  background-size: 92px 92px, 92px 92px, 6px 6px;
}

.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.92;
  background:
    radial-gradient(circle at 8% 18%, rgba(63, 119, 255, 0.2), transparent 26%),
    radial-gradient(circle at 94% 8%, rgba(255, 110, 74, 0.2), transparent 20%),
    radial-gradient(circle at 86% 72%, rgba(80, 218, 255, 0.14), transparent 28%),
    linear-gradient(128deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.12) 14%, transparent 28%),
    linear-gradient(104deg, transparent 0%, rgba(255, 255, 255, 0.28) 43%, rgba(255, 255, 255, 0.06) 50%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 45%, rgba(5, 7, 10, 0.12) 100%);
}

.poster-tag {
  position: absolute;
  z-index: 2;
  color: var(--paper-ink);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.poster-tag small {
  display: inline-block;
  margin-left: 5px;
  color: rgba(5, 7, 10, 0.46);
  font-size: 8px;
  font-weight: 800;
}

.tag-left-top {
  left: 18px;
  top: 16px;
}

.tag-center-top {
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
}

.tag-right-top {
  right: 18px;
  top: 16px;
}

.tag-left-mid {
  left: 28px;
  bottom: 32%;
}

.tag-right-mid {
  right: 30px;
  bottom: 32%;
  text-align: right;
}

.tag-center-mid {
  left: 50%;
  top: 78px;
  transform: translateX(-50%);
  color: rgba(5, 7, 10, 0.52);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
}

.poster-code {
  position: absolute;
  z-index: 2;
  color: rgba(5, 7, 10, 0.42);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.code-left {
  left: 32px;
  bottom: 118px;
}

.code-right {
  right: 32px;
  top: 118px;
}

.poster-barcode {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 5px);
  gap: 3px;
  transform: translateX(-50%);
}

.poster-barcode i {
  display: block;
  width: 4px;
  height: 20px;
  background: #05070a;
}

.poster-barcode i:nth-child(2),
.poster-barcode i:nth-child(5) {
  height: 14px;
}

.poster-barcode small {
  grid-column: 1 / -1;
  color: rgba(5, 7, 10, 0.68);
  font-size: 10px;
  text-align: center;
}

.hero-spline {
  position: absolute;
  left: clamp(20px, 3.4vw, 52px);
  right: clamp(20px, 3.4vw, 52px);
  top: 84px;
  bottom: 48px;
  z-index: 11;
  width: auto;
  height: auto;
  overflow: visible;
  pointer-events: auto;
  border-radius: 22px;
  transform: translate3d(calc(var(--mx) * 8px), calc(var(--my) * 4px), 0);
  transition: transform 160ms linear;
  animation: posterStageIn 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-spline iframe {
  position: absolute;
  left: 52.4%;
  top: 50%;
  width: min(178%, 2280px);
  height: min(172%, 1320px);
  border: 0;
  background: transparent;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -46.5%) scale(1.1);
}

.spline-badge-mask {
  display: block;
  position: absolute;
  right: clamp(28px, 3.6vw, 64px);
  bottom: 18px;
  z-index: 14;
  width: 152px;
  height: 58px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 8%, rgba(49, 91, 255, 0.2), transparent 38%),
    linear-gradient(180deg, #05080d, #070b12);
  pointer-events: none;
}

.hero-type {
  position: absolute;
  left: clamp(340px, 28vw, 430px);
  top: clamp(142px, 15vh, 172px);
  z-index: 10;
  width: min(560px, 45vw);
  min-height: 520px;
  margin: 0;
  padding: 0;
  color: #05070a;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transform: translate3d(calc(var(--mx) * -5px), calc(var(--my) * -3px - var(--scroll) * 36px), 0);
  transition: transform 160ms linear;
  animation: posterTypeIn 760ms cubic-bezier(0.19, 1, 0.22, 1) 80ms both;
  pointer-events: none;
}

.micro-label {
  width: max-content;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: #05070a;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.poster-ghost {
  position: absolute;
  left: clamp(315px, 28vw, 465px);
  top: clamp(34px, 3vw, 54px);
  z-index: -1;
  margin: 0;
  color: rgba(5, 7, 10, 0.095);
  font-size: clamp(76px, 9.4vw, 156px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-type h1 {
  margin: 0;
  color: #05070a;
  font-size: clamp(60px, 5.6vw, 96px);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 46px rgba(255, 255, 255, 0.28);
}

.hero-type h1 span {
  display: block;
}

.hero-type h1 span:first-child {
  margin-left: 0;
}

.hero-type h1 span:last-child {
  margin-left: clamp(58px, 5.6vw, 92px);
}

.hero-copy {
  position: absolute;
  left: clamp(610px, 52vw, 705px);
  top: clamp(84px, 8.4vw, 116px);
  width: min(260px, 22vw);
}

.hero-desc {
  max-width: 100%;
  margin: 0;
  color: rgba(5, 7, 10, 0.68);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 850;
  line-height: 1.6;
}

.hero-meta {
  margin: 18px 0 0;
  color: rgba(47, 93, 255, 0.84);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

@keyframes posterStageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  to {
    opacity: 1;
  }
}

@keyframes posterTypeIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

.dashboard-section {
  width: min(1280px, calc(100vw - 48px));
  margin: 0 auto;
}

.intro-section {
  position: relative;
  width: min(1240px, calc(100vw - 360px));
  min-height: clamp(560px, 38vw, 740px);
  margin: 0 auto;
  padding: clamp(96px, 6vw, 126px) 0 clamp(90px, 5.5vw, 116px);
  text-align: left;
  color: var(--paper-ink);
  isolation: isolate;
}

.intro-section::before {
  content: "PRODUCT\A CONTENT DATA\A SYSTEM";
  position: absolute;
  right: clamp(0px, 1.2vw, 24px);
  top: clamp(84px, 5.5vw, 112px);
  z-index: -1;
  color: rgba(5, 7, 10, 0.052);
  font-size: clamp(62px, 6.8vw, 130px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: right;
  white-space: pre;
  pointer-events: none;
}

.intro-copy {
  position: relative;
  max-width: min(900px, 56vw);
  margin-left: clamp(48px, 5vw, 96px);
}

.intro-kicker-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.3vw, 24px);
}

.section-kicker,
.section-heading span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.intro-section .section-kicker {
  margin: 0;
  color: #1f8fff;
  font-size: clamp(18px, 1.05vw, 22px);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 16px rgba(31, 143, 255, 0.22);
}

.intro-kicker-row span,
.intro-footnote {
  color: rgba(45, 72, 96, 0.52);
  font-size: clamp(10px, 0.68vw, 13px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.intro-section h2 {
  position: relative;
  max-width: none;
  margin: clamp(18px, 1.4vw, 24px) 0 0;
  font-size: clamp(56px, 4.75vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

.intro-section h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.intro-section h2 span:nth-child(2) {
  font-size: 1.08em;
}

.intro-section h2 span:nth-child(3) {
  margin-top: clamp(14px, 1.35vw, 24px);
  font-size: 0.86em;
}

.intro-section h2 span:nth-child(4) {
  margin-top: clamp(8px, 0.85vw, 14px);
  font-size: 0.72em;
  line-height: 1.12;
}

.intro-section p:last-child {
  position: relative;
  max-width: 620px;
  margin: clamp(36px, 3vw, 54px) 0 0;
  padding-left: 0;
  border-left: 0;
  color: rgba(5, 7, 10, 0.66);
  font-size: clamp(15px, 0.92vw, 17px);
  line-height: 1.82;
  font-weight: 800;
}

.intro-footnote {
  display: block;
  margin: clamp(18px, 1.7vw, 30px) 0 0;
  color: rgba(45, 72, 96, 0.42);
}

.dashboard-section {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  margin-bottom: 34px;
  padding: clamp(38px, 4vw, 58px);
  border: 8px solid rgba(247, 251, 255, 0.96);
  border-radius: 24px;
  color: white;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 14% 22%, rgba(186, 255, 98, 0.14), transparent 18%),
    radial-gradient(circle at 74% 22%, rgba(120, 154, 183, 0.35), transparent 28%),
    linear-gradient(120deg, rgba(6, 13, 17, 0.94), rgba(14, 22, 31, 0.84)),
    url("./assets/poster-08.jpg") center / cover;
  background-size: 88px 88px, 88px 88px, auto, auto, auto, cover;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  isolation: isolate;
}

.dashboard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 10, 13, 0.9), rgba(8, 14, 19, 0.46) 50%, rgba(5, 10, 13, 0.78)),
    radial-gradient(circle at 58% 68%, rgba(7, 12, 16, 0.92), transparent 26%);
  pointer-events: none;
}

.dashboard-section::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: -1;
  height: 42%;
  border-radius: 22px;
  background: linear-gradient(180deg, transparent, rgba(6, 10, 14, 0.62));
  pointer-events: none;
}

.dashboard-section:nth-of-type(3) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(186, 255, 98, 0.13), transparent 18%),
    linear-gradient(120deg, rgba(6, 13, 17, 0.94), rgba(14, 22, 31, 0.84)),
    url("./assets/poster-02.jpg") center / cover;
  background-size: 88px 88px, 88px 88px, auto, auto, cover;
}

.dashboard-section:nth-of-type(4) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(186, 255, 98, 0.13), transparent 18%),
    linear-gradient(120deg, rgba(6, 13, 17, 0.94), rgba(14, 22, 31, 0.84)),
    url("./assets/poster-03.jpg") center / cover;
  background-size: 88px 88px, 88px 88px, auto, auto, cover;
}

.dashboard-section:nth-of-type(5) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(186, 255, 98, 0.13), transparent 18%),
    linear-gradient(120deg, rgba(6, 13, 17, 0.94), rgba(14, 22, 31, 0.84)),
    url("./assets/poster-01.jpg") center / cover;
  background-size: 88px 88px, 88px 88px, auto, auto, cover;
}

.dashboard-section:nth-of-type(6) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(186, 255, 98, 0.13), transparent 18%),
    linear-gradient(120deg, rgba(6, 13, 17, 0.94), rgba(14, 22, 31, 0.84)),
    url("./assets/poster-08.jpg") center / cover;
  background-size: 88px 88px, 88px 88px, auto, auto, cover;
}

.section-heading {
  display: grid;
  grid-template-columns: 58px minmax(260px, 560px) minmax(260px, 1fr);
  gap: clamp(18px, 2.3vw, 34px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 70px);
  color: white;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading > span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(186, 255, 98, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lime);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.section-heading > span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(186, 255, 98, 0.86);
  vertical-align: 2px;
}

.section-heading > span::before {
  position: absolute;
  margin: 0;
}

.section-heading p {
  margin: 8px 0 0;
  color: rgba(247, 251, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.board-card,
.ticket-card,
.rank-panel,
.process-banner,
.product-stats article,
.timeline-panel,
.social-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(12, 18, 24, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.2);
}

.board-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, black, transparent 62%);
}

.board-card > *,
.ticket-card > *,
.rank-panel > *,
.process-banner > *,
.product-stats article > *,
.timeline-panel > *,
.social-panel > * {
  position: relative;
  z-index: 1;
}

.board-card,
.ticket-card,
.rank-panel,
.process-banner,
.product-stats article,
.social-panel {
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.board-card:hover,
.ticket-card:hover,
.rank-panel:hover,
.process-banner:hover,
.product-stats article:hover,
.social-panel:hover {
  border-color: rgba(186, 255, 98, 0.56);
  transform: translateY(-4px);
}

.panel-topline,
.signal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-topline b,
.signal-title b {
  color: rgba(247, 251, 255, 0.48);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.card-head span,
.ticket-card span,
.rank-panel > span,
.process-banner span,
.product-stats span,
.social-panel > span,
.risk-panel .eyebrow {
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.card-head b {
  color: var(--soft);
  font-size: 11px;
}

.market-board {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.86fr) minmax(220px, 0.64fr);
  grid-template-areas:
    "lead sources ticket"
    "lead signals signals";
  gap: 16px;
}

.market-lead {
  grid-area: lead;
  min-height: 470px;
  padding: clamp(30px, 3.1vw, 46px);
  background:
    radial-gradient(circle at 68% 42%, rgba(83, 215, 255, 0.22), transparent 30%),
    radial-gradient(circle at 22% 78%, rgba(186, 255, 98, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(6, 12, 16, 0.8);
}

.market-lead h3 {
  max-width: 470px;
  margin: 34px 0 0;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 0.9;
  letter-spacing: 0;
}

.market-lead p,
.competitor-panel p,
.word-panel p {
  color: rgba(247, 251, 255, 0.68);
  line-height: 1.65;
}

.radar-stack {
  position: relative;
  min-height: 150px;
  margin: 28px 0 0;
  border: 1px solid rgba(247, 251, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(255, 255, 255, 0.08) 18.5% 19.5%, transparent 20% 36%, rgba(255, 255, 255, 0.06) 36.5% 37.5%, transparent 38%),
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.08) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.08) 50%, transparent 50.5%);
}

.radar-stack span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #061014;
  background: var(--c);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 26px color-mix(in srgb, var(--c), transparent 54%);
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.mini-kpis strong {
  color: white;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 0.9;
}

.mini-kpis small {
  display: block;
  margin-top: 12px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.source-card {
  grid-area: sources;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(235, 243, 247, 0.92), rgba(210, 226, 235, 0.78)),
    rgba(235, 243, 247, 0.82);
  color: #071014;
}

.source-card .card-head span,
.source-card .card-head b {
  color: rgba(5, 7, 10, 0.58);
}

.source-bars,
.social-bars {
  display: grid;
  gap: 12px;
}

.source-row {
  display: grid;
  grid-template-columns: 86px 1fr 42px;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  font-size: 12px;
  font-weight: 950;
}

.source-row i,
.price-band i,
.social-bars i {
  position: relative;
  content: "";
  height: 10px;
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.1);
  overflow: hidden;
}

.source-row i::before,
.price-band i::before,
.social-bars i::before {
  content: "";
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--c), color-mix(in srgb, var(--c), white 42%));
  transition: width 1050ms cubic-bezier(0.19, 1, 0.22, 1);
}

.dashboard-section.is-visible .source-row i::before,
.dashboard-section.is-visible .price-band i::before,
.dashboard-section.is-visible .social-bars i::before {
  width: var(--progress, var(--v));
}

.source-row span {
  color: rgba(5, 7, 10, 0.52);
  text-align: right;
}

.ticket-card {
  grid-area: ticket;
  min-height: 220px;
  padding: 28px;
  color: #071014;
  background:
    radial-gradient(circle at 100% 0, rgba(7, 16, 20, 1) 0 34px, transparent 35px),
    linear-gradient(135deg, #fbff5f, #f0ef43);
  border-color: rgba(5, 7, 10, 0.08);
}

.ticket-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 58px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(5, 7, 10, 0.34) 0 8px, transparent 8px 14px);
}

.ticket-card span {
  color: rgba(5, 7, 10, 0.62);
}

.ticket-card strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(84px, 8vw, 122px);
  line-height: 0.8;
}

.ticket-card p {
  max-width: 180px;
  color: rgba(5, 7, 10, 0.72);
  font-weight: 900;
  line-height: 1.45;
}

.ticket-card em {
  position: absolute;
  right: 18px;
  bottom: 24px;
  writing-mode: vertical-rl;
  color: rgba(5, 7, 10, 0.42);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.signal-card {
  grid-area: signals;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 106, 44, 0.14), transparent 22%),
    rgba(7, 12, 16, 0.76);
}

.signal-title {
  grid-column: 1 / -1;
}

.signal-row {
  min-height: 118px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-row b,
.risk-row b {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
}

.signal-row span,
.risk-row span {
  color: var(--muted);
  line-height: 1.5;
}

.competition-board {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(260px, 0.64fr);
  grid-template-areas:
    "trend rank"
    "competitors competitors";
  gap: 16px;
}

.trend-panel {
  grid-area: trend;
  min-height: 450px;
  padding: 28px 28px 24px;
  background:
    radial-gradient(circle at 22% 22%, rgba(83, 215, 255, 0.2), transparent 30%),
    radial-gradient(circle at 74% 76%, rgba(186, 255, 98, 0.12), transparent 24%),
    rgba(7, 12, 16, 0.78);
}

.trend-lines {
  width: 100%;
  height: 280px;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.line {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.line.cyan {
  stroke: var(--cyan);
}

.line.lime {
  stroke: var(--lime);
}

.line.violet {
  stroke: var(--violet);
}

.plot {
  fill: #071014;
  stroke-width: 5;
}

.plot.cyan {
  stroke: var(--cyan);
}

.plot.lime {
  stroke: var(--lime);
}

.plot.violet {
  stroke: var(--violet);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.chart-legend span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.chart-legend span:nth-child(1)::before {
  background: var(--cyan);
}

.chart-legend span:nth-child(3)::before {
  background: var(--violet);
}

.trend-insights {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.trend-insights b {
  color: white;
  font-size: 18px;
  line-height: 1.25;
}

.trend-insights span {
  color: var(--muted);
  line-height: 1.55;
}

.rank-panel {
  grid-area: rank;
  min-height: 430px;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 106, 44, 0.18), transparent 26%),
    #f6f1ec;
  color: #071014;
}

.rank-panel > span {
  color: rgba(5, 7, 10, 0.48);
}

.rank-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(5, 7, 10, 0.13);
}

.rank-row b {
  color: var(--blue);
}

.rank-row strong {
  font-size: 22px;
}

.rank-row em {
  color: #ff6b2c;
  font-style: normal;
  font-size: 24px;
  font-weight: 950;
}

.competitor-panel {
  grid-area: competitors;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(7, 11, 15, 0.72);
}

.competitor-panel h3 {
  margin: 18px 0 0;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.95;
}

.competitor-data {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 1fr);
  gap: 20px;
  align-items: stretch;
}

.dot-matrix {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-content: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.dot-matrix i {
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    radial-gradient(circle, var(--lime) 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.08);
}

.dot-matrix i:nth-child(3n) {
  background:
    radial-gradient(circle, var(--cyan) 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.08);
}

.dot-matrix i:nth-child(5n) {
  background:
    radial-gradient(circle, #ff6b2c 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.08);
}

.price-band {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.price-band > span {
  color: rgba(247, 251, 255, 0.52);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-band div {
  display: grid;
  grid-template-columns: 78px 1fr 42px;
  gap: 10px;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.price-band em {
  color: rgba(247, 251, 255, 0.52);
  font-style: normal;
  text-align: right;
}

.product-board {
  display: grid;
  gap: 16px;
}

.process-banner {
  min-height: 220px;
  padding: clamp(30px, 4vw, 54px);
  color: #071014;
  background:
    radial-gradient(circle at 86% 34%, rgba(7, 16, 20, 0.13), transparent 18%),
    linear-gradient(135deg, #fbff67, #f2ef48);
  border-color: rgba(5, 7, 10, 0.08);
}

.process-banner h3 {
  max-width: 900px;
  margin: 20px 0 0;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 1;
}

.process-banner span {
  color: rgba(5, 7, 10, 0.56);
}

.process-banner i {
  position: absolute;
  right: clamp(30px, 5vw, 70px);
  top: 50%;
  width: clamp(56px, 6vw, 88px);
  height: clamp(56px, 6vw, 88px);
  transform: translateY(-50%) rotate(45deg);
}

.process-banner i::before,
.process-banner i::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #071014;
}

.process-banner i::before {
  width: 100%;
  height: 16px;
}

.process-banner i::after {
  width: 16px;
  height: 100%;
}

.product-stats {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.product-stats article {
  min-height: 180px;
  padding: 28px;
}

.product-stats article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.24;
}

.product-stats .stat-blue {
  background:
    linear-gradient(135deg, rgba(83, 215, 255, 0.28), rgba(255, 255, 255, 0.04)),
    rgba(8, 18, 24, 0.74);
}

.product-stats .stat-warm {
  color: #071014;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.4), transparent 24%),
    linear-gradient(135deg, #ff7a38, #ffc34f);
}

.product-stats .stat-warm span,
.product-stats .stat-warm p,
.product-stats .stat-warm strong {
  color: #071014;
}

.product-stats strong {
  display: block;
  margin-top: 20px;
  color: white;
  font-size: clamp(42px, 5vw, 68px);
}

.product-stats p {
  color: var(--muted);
}

.timeline-panel {
  min-height: 390px;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 12.5% 100%,
    linear-gradient(180deg, transparent, rgba(186, 255, 98, 0.06)),
    rgba(7, 11, 15, 0.64);
}

.month-mark {
  display: inline-grid;
  gap: 2px;
  width: 24%;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.month-mark b {
  color: var(--lime);
}

.stage {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  min-height: 62px;
  border-radius: 999px;
  padding: 16px 22px;
  color: #071014;
  background: #f6f1ec;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.stage::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  transform: translateY(-50%);
}

.stage span {
  display: block;
  padding-left: 16px;
  font-weight: 950;
}

.stage em {
  display: block;
  margin-top: 6px;
  padding-left: 16px;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.stage-a {
  --x: 4%;
  --y: 36%;
  --w: 25%;
}

.stage-b {
  --x: 30%;
  --y: 56%;
  --w: 35%;
}

.stage-c {
  --x: 54%;
  --y: 38%;
  --w: 33%;
}

.stage-d {
  --x: 74%;
  --y: 68%;
  --w: 23%;
}

.user-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  grid-template-areas:
    "words social"
    "words risk";
  gap: 16px;
}

.word-panel {
  grid-area: words;
  min-height: 460px;
  padding: 34px;
  background:
    radial-gradient(circle at 26% 32%, rgba(83, 215, 255, 0.18), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(255, 106, 44, 0.14), transparent 28%),
    rgba(7, 12, 16, 0.78);
}

.word-cloud-lite {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 14px 18px;
  min-height: 280px;
  margin-top: 30px;
}

.word-cloud-lite * {
  font-style: normal;
  font-weight: 950;
}

.word-cloud-lite b {
  color: var(--cyan);
  font-size: clamp(42px, 5vw, 70px);
}

.word-cloud-lite strong {
  color: var(--lime);
  font-size: clamp(28px, 3.2vw, 42px);
}

.word-cloud-lite em {
  color: #ff6b2c;
  font-size: clamp(24px, 2.8vw, 36px);
}

.word-cloud-lite i,
.word-cloud-lite span {
  color: #f3f353;
  font-size: clamp(20px, 2vw, 28px);
}

.social-panel {
  grid-area: social;
  min-height: 250px;
  padding: 30px;
  color: #071014;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 106, 44, 0.28), transparent 24%),
    #f6f1ec;
}

.social-panel > span {
  color: rgba(5, 7, 10, 0.48);
}

.social-panel h3 {
  margin: 20px 0 24px;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
}

.social-bars div {
  display: grid;
  grid-template-columns: 62px 1fr 34px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 950;
}

.social-bars i {
  background: rgba(5, 7, 10, 0.1);
}

.social-bars span {
  color: rgba(5, 7, 10, 0.48);
  text-align: right;
}

.risk-panel {
  grid-area: risk;
  display: grid;
  gap: 10px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(8, 13, 18, 0.76);
}

.risk-row {
  display: grid;
  grid-template-columns: minmax(88px, 0.34fr) 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.risk-row b {
  margin-bottom: 0;
}

.risk-row em {
  min-width: 48px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #071014;
  background: var(--lime);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  text-align: center;
}

@media (min-width: 1440px) {
  .site-header {
    padding-left: clamp(84px, 7vw, 150px);
    padding-right: clamp(84px, 7vw, 150px);
  }

  .nav {
    gap: clamp(18px, 1.45vw, 30px);
    margin-right: clamp(72px, 7.5vw, 180px);
  }

  .hero-spline iframe {
    left: 52%;
    width: min(2320px, 156vw);
    height: min(178%, 1320px);
    transform: translate(-50%, -46.5%) scale(1.12);
  }

  .hero-type {
    left: clamp(440px, 22vw, 540px);
    top: clamp(118px, 11vh, 146px);
    width: min(620px, 34vw);
  }

  .hero-type h1 {
    font-size: clamp(84px, 4.7vw, 108px);
    line-height: 1.08;
  }

  .poster-ghost {
    left: clamp(390px, 23vw, 560px);
    font-size: clamp(126px, 7.6vw, 168px);
    line-height: 0.92;
  }

  .hero-copy {
    left: clamp(780px, 45vw, 940px);
    top: clamp(116px, 7vw, 136px);
    width: min(310px, 18vw);
  }
}

@media (min-width: 961px) and (max-width: 1439px) {
  .hero-spline iframe {
    left: 52.4%;
    width: min(184%, 2240px);
    height: min(176%, 1320px);
    transform: translate(-50%, -46.5%) scale(1.1);
  }

  .hero-type {
    left: clamp(330px, 27vw, 410px);
    top: clamp(128px, 14vh, 148px);
    width: min(560px, 45vw);
  }

  .hero-type h1 {
    font-size: clamp(60px, 5.6vw, 96px);
    line-height: 1.1;
  }

  .hero-copy {
    left: clamp(610px, 50vw, 690px);
    top: clamp(92px, 8vw, 116px);
    width: min(260px, 22vw);
  }

  .hero-meta {
    line-height: 1.35;
  }
}

@media (max-width: 960px) {
  .hero-poster {
    padding: 88px 22px 120px;
  }

  .poster-shell {
    left: 12px;
    right: 12px;
    top: 72px;
    bottom: 108px;
    border-radius: 18px;
  }

  .tag-left-mid,
  .tag-right-mid,
  .tag-center-mid {
    display: none;
  }

  .hero-spline {
    left: 12px;
    right: 12px;
    top: 72px;
    bottom: 108px;
    width: auto;
    height: auto;
    border-radius: 18px;
  }

  .hero-type {
    left: clamp(58px, 12vw, 106px);
    top: 116px;
    width: min(64vw, 460px);
    min-height: 430px;
    margin: 0 auto;
    padding: 0;
    transform: none;
  }

  .poster-ghost {
    left: 20vw;
    top: 18px;
    font-size: clamp(62px, 14vw, 106px);
    line-height: 0.92;
  }

  .hero-type h1 {
    font-size: clamp(42px, 9.2vw, 68px);
    line-height: 1.1;
  }

  .hero-type h1 span {
    display: block;
  }

  .hero-type h1 span:last-child {
    margin-left: clamp(34px, 8vw, 64px);
  }

  .hero-copy {
    left: clamp(28px, 8vw, 78px);
    top: clamp(166px, 24vw, 230px);
    width: min(300px, 46vw);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .dashboard-section {
    padding: 28px;
    border-width: 5px;
    border-radius: 18px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .market-board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "sources"
      "ticket"
      "signals";
  }

  .market-lead,
  .trend-panel,
  .word-panel {
    min-height: 360px;
  }

  .market-lead h3 {
    font-size: clamp(42px, 10vw, 68px);
  }

  .signal-card {
    grid-template-columns: 1fr;
  }

  .competition-board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "trend"
      "rank"
      "competitors";
  }

  .competitor-panel,
  .competitor-data {
    grid-template-columns: 1fr;
  }

  .product-stats {
    grid-template-columns: 1fr;
  }

  .process-banner h3 {
    max-width: calc(100% - 82px);
  }

  .timeline-panel {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 24px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 25% 100%,
      rgba(7, 11, 15, 0.64);
  }

  .month-mark {
    width: auto;
    grid-template-columns: 34px 1fr;
    align-items: baseline;
  }

  .stage {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    border-radius: 18px;
  }

  .user-board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "words"
      "social"
      "risk";
  }

  .risk-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .risk-row em {
    width: max-content;
  }

  .intro-section {
    width: min(100vw - 44px, 1180px);
    min-height: auto;
    padding: 86px 0 76px;
  }

  .intro-section::before {
    top: 78px;
    right: -4px;
    font-size: clamp(58px, 15vw, 124px);
    opacity: 0.86;
  }

  .intro-copy {
    max-width: 88vw;
    margin-left: 0;
  }

  .intro-kicker-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .intro-kicker-row span,
  .intro-footnote {
    white-space: normal;
  }

  .intro-section h2 {
    font-size: clamp(42px, 8.6vw, 74px);
    line-height: 1.02;
  }

  .intro-section h2 span {
    white-space: normal;
  }

  .intro-section h2 span:nth-child(2),
  .intro-section h2 span:nth-child(4) {
    margin-left: 0;
  }

  .intro-section h2 span:nth-child(2),
  .intro-section h2 span:nth-child(3),
  .intro-section h2 span:nth-child(4) {
    font-size: 1em;
  }

  .intro-section p:last-child {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.7;
  }

  .intro-footnote {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 18px;
  }

  .nav {
    gap: 10px;
    font-size: 11px;
  }

  .brand {
    min-width: 40px;
    height: 30px;
    padding: 0 9px;
    font-size: 11px;
  }

  .hero-spline {
    left: 12px;
    right: 12px;
    top: 72px;
    bottom: 108px;
    width: auto;
    height: auto;
  }

  .hero-spline iframe {
    width: 230%;
    height: 150%;
    transform: translate(-50%, -45%) scale(0.62);
  }

  .spline-badge-mask {
    display: block;
    position: absolute;
    right: 14px;
    bottom: 108px;
    z-index: 13;
    width: 118px;
    height: 50px;
    background: linear-gradient(90deg, rgba(218, 229, 236, 0), rgba(217, 228, 236, 0.98) 54%, rgba(204, 218, 228, 1));
    pointer-events: none;
  }

  .hero-type {
    left: 38px;
    top: 104px;
    width: min(70vw, 310px);
    min-height: 360px;
    padding: 0;
  }

  .micro-label {
    margin-bottom: 10px;
    font-size: 10px;
    color: rgba(5, 7, 10, 0.84);
  }

  .poster-ghost {
    left: 16vw;
    top: 12px;
    font-size: clamp(48px, 14vw, 76px);
    line-height: 0.92;
  }

  .hero-type h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.1;
    white-space: normal;
  }

  .hero-type h1 span:last-child {
    margin-left: clamp(24px, 8vw, 42px);
  }

  .hero-copy {
    left: 0;
    top: clamp(140px, 42vw, 172px);
    width: min(230px, 56vw);
  }

  .hero-desc {
    max-width: none;
    margin-top: 0;
    color: rgba(5, 7, 10, 0.72);
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-meta {
    margin-top: 12px;
    font-size: 9px;
    line-height: 1.45;
  }

  .poster-tag {
    font-size: 9px;
  }

  .tag-left-top,
  .tag-right-top {
    top: 12px;
  }

  .tag-center-top,
  .poster-barcode {
    display: none;
  }

  .dashboard-section {
    width: min(100vw - 32px, 1180px);
  }

  .intro-section {
    width: min(100vw - 32px, 1180px);
    padding: 68px 0 62px;
  }

  .intro-section::before {
    top: 92px;
    right: -8px;
    font-size: clamp(44px, 17vw, 86px);
    line-height: 0.84;
    color: rgba(5, 7, 10, 0.08);
  }

  .intro-copy {
    max-width: 94vw;
    margin-left: 0;
  }

  .intro-section .section-kicker {
    font-size: 15px;
  }

  .intro-kicker-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .intro-kicker-row span {
    font-size: 9px;
    white-space: normal;
  }

  .intro-section h2 {
    margin-top: 14px;
    font-size: clamp(34px, 10vw, 50px);
    line-height: 1.02;
  }

  .intro-section h2 span {
    white-space: normal;
  }

  .intro-section h2 span:nth-child(2),
  .intro-section h2 span:nth-child(4) {
    margin-left: 0;
  }

  .intro-section h2 span:nth-child(2),
  .intro-section h2 span:nth-child(3),
  .intro-section h2 span:nth-child(4) {
    font-size: 1em;
  }

  .intro-section h2 span:nth-child(3),
  .intro-section h2 span:nth-child(4) {
    margin-top: 4px;
  }

  .intro-section p:last-child {
    max-width: 94%;
    margin-top: 26px;
    margin-left: 0;
    padding-left: 0;
    border-left-width: 0;
    font-size: 15px;
    line-height: 1.66;
  }

  .intro-footnote {
    margin: 14px 0 0;
    font-size: 9px;
    white-space: normal;
  }

}

/* Premium chapter system */
body {
  background:
    linear-gradient(180deg, #05070d 0 100vh, #e9eef4 100vh 100%);
  padding-bottom: clamp(140px, 14vw, 260px);
}

.site-header {
  border-bottom: 1px solid rgba(247, 251, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(3, 6, 10, 0.88), rgba(3, 6, 10, 0.28), transparent);
}

.nav a {
  position: relative;
  transition:
    color 220ms ease,
    opacity 220ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--cyan);
}

.dashboard-section {
  width: min(1360px, calc(100vw - 104px));
  margin-top: 96px;
  margin-bottom: 96px;
  padding: 68px;
  border: 1px solid rgba(247, 251, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(125deg, rgba(9, 18, 24, 0.98), rgba(5, 8, 13, 0.94) 52%, rgba(12, 15, 22, 0.98)),
    url("./assets/poster-08.jpg") center / cover;
  background-size: 96px 96px, 96px 96px, auto, cover;
  box-shadow:
    0 34px 120px rgba(3, 9, 14, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 360ms ease;
}

.dashboard-section::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 13, 0.94), rgba(5, 10, 13, 0.48) 48%, rgba(5, 10, 13, 0.88)),
    linear-gradient(150deg, rgba(83, 215, 255, 0.1), transparent 34%),
    linear-gradient(30deg, transparent 55%, rgba(255, 106, 44, 0.08));
}

.dashboard-section::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  border-radius: 0;
  background:
    linear-gradient(180deg, transparent, rgba(2, 5, 9, 0.78)),
    linear-gradient(90deg, transparent, rgba(186, 255, 98, 0.06), transparent);
}

.dashboard-section > * {
  position: relative;
  z-index: 1;
}

.dashboard-section:nth-of-type(3),
.dashboard-section:nth-of-type(4),
.dashboard-section:nth-of-type(5),
.dashboard-section:nth-of-type(6) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(125deg, rgba(9, 18, 24, 0.98), rgba(5, 8, 13, 0.94) 52%, rgba(12, 15, 22, 0.98)),
    var(--section-image, url("./assets/poster-08.jpg")) center / cover;
  background-size: 96px 96px, 96px 96px, auto, cover;
}

.section-market {
  --section-image: url("./assets/poster-02.jpg");
  --chapter-accent: var(--cyan);
  --chapter-warm: #ff7a38;
}

.section-competition {
  --section-image: url("./assets/poster-03.jpg");
  --chapter-accent: var(--lime);
  --chapter-warm: #765cff;
}

.section-product {
  --section-image: url("./assets/poster-01.jpg");
  --chapter-accent: #f6ff57;
  --chapter-warm: #ff7a38;
}

.section-user {
  --section-image: url("./assets/poster-08.jpg");
  --chapter-accent: #ff7a38;
  --chapter-warm: var(--cyan);
}

.section-heading {
  grid-template-columns: 58px minmax(0, 1fr) minmax(340px, 420px);
  gap: 34px;
  align-items: start;
  margin-bottom: 74px;
}

.section-heading h2 {
  max-width: 780px;
  font-size: 74px;
  line-height: 0.92;
  font-weight: 950;
}

.section-heading > span {
  width: 48px;
  height: 48px;
  border-color: color-mix(in srgb, var(--chapter-accent), transparent 54%);
  border-radius: 16px;
  color: var(--chapter-accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
}

.section-heading > span::before {
  background: var(--chapter-accent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--chapter-accent), transparent 20%);
}

.section-heading p {
  max-width: 390px;
  margin-top: 12px;
  color: rgba(247, 251, 255, 0.68);
  font-size: 15px;
  font-weight: 800;
}

.board-card,
.ticket-card,
.rank-panel,
.process-banner,
.product-stats article,
.timeline-panel,
.social-panel {
  border-color: rgba(247, 251, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.board-card::after,
.rank-panel::after,
.process-banner::after,
.product-stats article::before,
.timeline-panel::after,
.social-panel::after,
.ticket-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(
      340px circle at var(--card-x, 50%) var(--card-y, 50%),
      color-mix(in srgb, var(--chapter-accent, #53d7ff), transparent 58%),
      transparent 64%
    );
  transition: opacity 260ms ease;
}

.board-card:hover::after,
.rank-panel:hover::after,
.process-banner:hover::after,
.product-stats article:hover::before,
.timeline-panel:hover::after,
.social-panel:hover::after,
.ticket-card:hover::before {
  opacity: 0.72;
}

.board-card:hover,
.ticket-card:hover,
.rank-panel:hover,
.process-banner:hover,
.product-stats article:hover,
.social-panel:hover {
  border-color: color-mix(in srgb, var(--chapter-accent), transparent 38%);
  transform: translateY(-8px);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.eyebrow,
.card-head span,
.ticket-card span,
.rank-panel > span,
.process-banner span,
.product-stats span,
.social-panel > span,
.risk-panel .eyebrow {
  color: var(--chapter-accent);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.market-board,
.competition-board,
.product-board,
.user-board {
  gap: 20px;
}

.market-board {
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.82fr) minmax(220px, 0.56fr);
}

.market-lead {
  min-height: 560px;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(83, 215, 255, 0.1), transparent 58%),
    rgba(10, 17, 21, 0.76);
}

.market-lead h3 {
  max-width: 540px;
  margin-top: 46px;
  font-size: 72px;
  line-height: 0.88;
}

.market-lead p {
  max-width: 510px;
  margin-top: 28px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 16px;
  font-weight: 800;
}

.radar-stack {
  min-height: 174px;
  margin-top: 34px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(255, 255, 255, 0.11) 18.5% 19.5%, transparent 20% 36%, rgba(255, 255, 255, 0.07) 36.5% 37.5%, transparent 38%),
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.09) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.09) 50%, transparent 50.5%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
}

.radar-stack span {
  box-shadow:
    0 0 28px color-mix(in srgb, var(--c), transparent 48%),
    0 10px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.market-lead:hover .radar-stack span {
  transform: translate(-50%, -50%) scale(1.05);
}

.mini-kpis {
  margin-top: 34px;
}

.mini-kpis strong {
  font-size: 52px;
}

.source-card {
  min-height: 270px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(247, 251, 255, 0.96), rgba(219, 233, 241, 0.82));
}

.source-row {
  min-height: 44px;
}

.ticket-card {
  min-height: 270px;
  padding: 32px;
  background:
    linear-gradient(135deg, #fbff58, #edf23e);
}

.ticket-card strong {
  margin-top: 30px;
  font-size: 128px;
}

.signal-card {
  min-height: 270px;
  padding: 26px;
}

.signal-row {
  min-height: 136px;
  padding: 22px;
}

.signal-row b {
  font-size: 18px;
}

.competition-board {
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
}

.trend-panel {
  min-height: 500px;
  padding: 34px;
}

.trend-lines {
  height: 310px;
  margin-top: 10px;
}

.line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.dashboard-section.is-visible .line {
  animation: drawChart 1100ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.dashboard-section.is-visible .line.lime {
  animation-delay: 140ms;
}

.dashboard-section.is-visible .line.violet {
  animation-delay: 240ms;
}

.rank-panel {
  min-height: 500px;
  padding: 36px;
}

.rank-row {
  padding: 28px 0;
}

.rank-row strong {
  font-size: 26px;
}

.rank-row em {
  font-size: 30px;
}

.competitor-panel {
  padding: 38px;
}

.competitor-panel h3 {
  font-size: 76px;
}

.competitor-data {
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
}

.dot-matrix {
  padding: 24px;
}

.price-band {
  padding: 26px;
}

.process-banner {
  min-height: 300px;
  padding: 58px;
  background:
    linear-gradient(135deg, #fbff5f, #edf33e 64%, #dbe637);
}

.process-banner h3 {
  max-width: 960px;
  font-size: 68px;
  line-height: 0.96;
}

.process-banner i {
  right: 80px;
}

.product-stats article {
  min-height: 210px;
  padding: 34px;
}

.product-stats strong {
  font-size: 72px;
}

.timeline-panel {
  min-height: 460px;
  padding: 44px;
}

.stage {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.stage:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

.word-panel {
  min-height: 520px;
  padding: 42px;
}

.word-cloud-lite {
  min-height: 320px;
  gap: 18px 22px;
}

.word-cloud-lite b {
  font-size: 74px;
}

.word-cloud-lite strong {
  font-size: 46px;
}

.word-cloud-lite em {
  font-size: 38px;
}

.word-cloud-lite i,
.word-cloud-lite span {
  font-size: 30px;
}

.word-cloud-lite > * {
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.word-panel:hover .word-cloud-lite > * {
  filter: drop-shadow(0 0 18px rgba(83, 215, 255, 0.18));
}

.word-cloud-lite > *:hover {
  transform: translateY(-4px) scale(1.04);
}

.social-panel {
  min-height: 290px;
  padding: 36px;
}

.social-panel h3 {
  font-size: 40px;
  line-height: 1.08;
}

.risk-panel {
  padding: 30px;
}

.risk-row {
  min-height: 74px;
  padding: 20px;
}

.js-ready .dashboard-section {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
}

.js-ready .dashboard-section.is-visible {
  opacity: 1;
  transform: none;
}

.js-ready .dashboard-section .section-heading,
.js-ready .dashboard-section .market-board > *,
.js-ready .dashboard-section .competition-board > *,
.js-ready .dashboard-section .product-board > *,
.js-ready .dashboard-section .user-board > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.19, 1, 0.22, 1);
}

.js-ready .dashboard-section.is-visible .section-heading,
.js-ready .dashboard-section.is-visible .market-board > *,
.js-ready .dashboard-section.is-visible .competition-board > *,
.js-ready .dashboard-section.is-visible .product-board > *,
.js-ready .dashboard-section.is-visible .user-board > * {
  opacity: 1;
  transform: none;
}

.js-ready .dashboard-section.is-visible .market-board > *:nth-child(2),
.js-ready .dashboard-section.is-visible .competition-board > *:nth-child(2),
.js-ready .dashboard-section.is-visible .product-board > *:nth-child(2),
.js-ready .dashboard-section.is-visible .user-board > *:nth-child(2) {
  transition-delay: 90ms;
}

.js-ready .dashboard-section.is-visible .market-board > *:nth-child(3),
.js-ready .dashboard-section.is-visible .competition-board > *:nth-child(3),
.js-ready .dashboard-section.is-visible .product-board > *:nth-child(3),
.js-ready .dashboard-section.is-visible .user-board > *:nth-child(3) {
  transition-delay: 170ms;
}

.js-ready .dashboard-section.is-visible .market-board > *:nth-child(4) {
  transition-delay: 250ms;
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

.js-ready .dashboard-section .section-heading {
  transition-delay: 0ms;
}

.js-ready .dashboard-section.is-visible .section-heading {
  transition-delay: 0ms;
}

.js-ready .dashboard-section.is-visible .market-board > *:nth-child(1),
.js-ready .dashboard-section.is-visible .competition-board > *:nth-child(1),
.js-ready .dashboard-section.is-visible .product-board > *:nth-child(1),
.js-ready .dashboard-section.is-visible .user-board > *:nth-child(1) {
  transition-delay: 70ms;
}

.dashboard-section.is-visible .mini-kpis strong,
.dashboard-section.is-visible .ticket-card strong,
.dashboard-section.is-visible .rank-row em,
.dashboard-section.is-visible .product-stats strong,
.dashboard-section.is-visible .social-bars span {
  animation: countPulse 720ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.dashboard-section.is-visible .mini-kpis strong:nth-child(2),
.dashboard-section.is-visible .product-stats article:nth-child(2) strong,
.dashboard-section.is-visible .social-bars div:nth-child(2) span {
  animation-delay: 120ms;
}

.dashboard-section.is-visible .mini-kpis strong:nth-child(3),
.dashboard-section.is-visible .product-stats article:nth-child(3) strong,
.dashboard-section.is-visible .social-bars div:nth-child(3) span {
  animation-delay: 220ms;
}

@keyframes countPulse {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes sectionGlowFloat {
  0% {
    --float-x: -10px;
    --float-y: -7px;
  }

  50% {
    --float-x: 8px;
    --float-y: 6px;
  }

  100% {
    --float-x: -4px;
    --float-y: 10px;
  }
}

@media (min-width: 1800px) {
  .dashboard-section {
    width: min(1480px, calc(100vw - 220px));
  }
}

@media (max-width: 960px) {
  .dashboard-section {
    width: min(100vw - 44px, 1180px);
    margin-top: 64px;
    margin-bottom: 64px;
    padding: 28px;
    border-radius: 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 46px;
    line-height: 1;
  }

  .section-heading p {
    max-width: 100%;
    font-size: 14px;
  }

  .market-lead,
  .trend-panel,
  .word-panel {
    min-height: auto;
    padding: 28px;
  }

  .market-lead h3,
  .competitor-panel h3 {
    font-size: 44px;
    line-height: 0.96;
  }

  .market-lead p {
    font-size: 15px;
  }

  .ticket-card,
  .source-card,
  .signal-card,
  .rank-panel,
  .competitor-panel,
  .process-banner,
  .social-panel,
  .risk-panel {
    padding: 28px;
  }

  .ticket-card strong {
    font-size: 98px;
  }

  .signal-row {
    min-height: auto;
  }

  .trend-panel {
    min-height: auto;
  }

  .trend-lines {
    height: 230px;
  }

  .trend-insights,
  .competitor-data,
  .price-band div {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    min-height: auto;
  }

  .process-banner {
    min-height: 230px;
  }

  .process-banner h3 {
    max-width: calc(100% - 58px);
    font-size: 38px;
  }

  .process-banner i {
    right: 28px;
    width: 54px;
    height: 54px;
  }

  .product-stats article {
    min-height: 170px;
  }

  .product-stats strong {
    font-size: 56px;
  }

  .timeline-panel {
    min-height: auto;
    padding: 24px;
  }

  .word-cloud-lite {
    min-height: 250px;
  }

  .word-cloud-lite b {
    font-size: 50px;
  }

  .word-cloud-lite strong {
    font-size: 34px;
  }

  .word-cloud-lite em,
  .word-cloud-lite i,
  .word-cloud-lite span {
    font-size: 25px;
  }

  .social-panel h3 {
    font-size: 31px;
  }
}

@media (max-width: 620px) {
  .dashboard-section {
    width: min(100vw - 28px, 1180px);
    padding: 22px;
    border-radius: 18px;
  }

  .section-heading h2 {
    font-size: 39px;
  }

  .market-lead h3,
  .competitor-panel h3 {
    font-size: 40px;
  }

  .source-row {
    grid-template-columns: 82px 1fr 38px;
  }

  .mini-kpis strong {
    font-size: 38px;
  }

  .process-banner h3 {
    font-size: 32px;
  }

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

/* Premium cards v2: chapter-like data posters */
html {
  scroll-padding-top: 112px;
  scroll-behavior: smooth;
}

.dashboard-section {
  scroll-margin-top: 112px;
  --float-x: 0px;
  --float-y: 0px;
  width: min(1420px, calc(100vw - 96px));
  margin-top: clamp(88px, 8vw, 132px);
  margin-bottom: clamp(88px, 8vw, 132px);
  padding: clamp(54px, 5vw, 76px);
  border: 10px solid rgba(247, 251, 255, 0.94);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(247, 251, 255, 0.035) 1px, transparent 1px),
    linear-gradient(118deg, rgba(7, 13, 18, 0.98) 0%, rgba(8, 16, 22, 0.86) 46%, rgba(3, 7, 12, 0.98) 100%),
    var(--section-image, url("./assets/poster-08.jpg")) center / cover;
  background-size: 88px 88px, 88px 88px, auto, cover;
  box-shadow:
    0 42px 120px rgba(4, 10, 16, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dashboard-section:nth-of-type(3),
.dashboard-section:nth-of-type(4),
.dashboard-section:nth-of-type(5),
.dashboard-section:nth-of-type(6) {
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(247, 251, 255, 0.035) 1px, transparent 1px),
    linear-gradient(118deg, rgba(7, 13, 18, 0.98) 0%, rgba(8, 16, 22, 0.86) 46%, rgba(3, 7, 12, 0.98) 100%),
    var(--section-image, url("./assets/poster-08.jpg")) center / cover;
  background-size: 88px 88px, 88px 88px, auto, cover;
}

.dashboard-section::before {
  z-index: 0;
  background:
    radial-gradient(circle at var(--section-x, 50%) var(--section-y, 38%), color-mix(in srgb, var(--chapter-accent), transparent 86%), transparent 26%),
    linear-gradient(90deg, rgba(3, 7, 10, 0.96), rgba(3, 7, 10, 0.42) 50%, rgba(3, 7, 10, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.24));
  transform: translate3d(var(--float-x), var(--float-y), 0) scale(1.03);
  animation: sectionGlowFloat 9s ease-in-out infinite alternate;
}

.dashboard-section::after {
  content: attr(data-chapter);
  position: absolute;
  top: clamp(22px, 2vw, 34px);
  right: clamp(26px, 3vw, 52px);
  left: auto;
  bottom: auto;
  z-index: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: rgba(247, 251, 255, 0.18);
  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
}

.section-heading {
  grid-template-columns: 54px minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(22px, 3vw, 42px);
  margin-bottom: clamp(44px, 4.8vw, 68px);
}

.section-heading > span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border-color: color-mix(in srgb, var(--chapter-accent), transparent 50%);
  color: var(--chapter-accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.section-heading > span::before {
  display: none;
}

.section-heading h2 {
  max-width: none;
  font-size: clamp(54px, 5.2vw, 78px);
  line-height: 0.92;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 410px;
  color: rgba(247, 251, 255, 0.66);
  font-size: 15px;
  line-height: 1.72;
}

.section-entry {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid color-mix(in srgb, var(--chapter-accent), white 18%);
  border-radius: 999px;
  color: #071014;
  background: linear-gradient(135deg, color-mix(in srgb, var(--chapter-accent), white 22%), rgba(247, 251, 255, 0.9));
  box-shadow:
    0 16px 36px color-mix(in srgb, var(--chapter-accent), transparent 72%),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.section-entry::after {
  content: "↗";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: white;
  background: rgba(5, 7, 10, 0.86);
  font-size: 12px;
}

.section-entry:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 48px color-mix(in srgb, var(--chapter-accent), transparent 62%),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.board-card,
.ticket-card,
.rank-panel,
.process-banner,
.product-stats article,
.timeline-panel,
.social-panel {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --hover-lift: 0px;
  border-radius: 12px;
  border-color: rgba(247, 251, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(8, 14, 20, 0.72);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--hover-lift), 0);
  transform-style: preserve-3d;
  will-change: transform, box-shadow, border-color;
  transition:
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.board-card:hover,
.board-card.is-card-hovered,
.ticket-card:hover,
.ticket-card.is-card-hovered,
.rank-panel:hover,
.rank-panel.is-card-hovered,
.process-banner:hover,
.process-banner.is-card-hovered,
.product-stats article:hover,
.product-stats article.is-card-hovered,
.social-panel:hover,
.social-panel.is-card-hovered {
  --hover-lift: -8px;
  box-shadow:
    0 36px 92px rgba(0, 0, 0, 0.32),
    0 0 42px color-mix(in srgb, var(--chapter-accent, #53d7ff), transparent 76%),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.js-ready .dashboard-section.is-visible .board-card,
.js-ready .dashboard-section.is-visible .ticket-card,
.js-ready .dashboard-section.is-visible .rank-panel,
.js-ready .dashboard-section.is-visible .process-banner,
.js-ready .dashboard-section.is-visible .product-stats article,
.js-ready .dashboard-section.is-visible .timeline-panel,
.js-ready .dashboard-section.is-visible .social-panel {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--hover-lift), 0);
}

.js-ready .dashboard-section.is-visible .board-card.is-card-hovered,
.js-ready .dashboard-section.is-visible .ticket-card.is-card-hovered,
.js-ready .dashboard-section.is-visible .rank-panel.is-card-hovered,
.js-ready .dashboard-section.is-visible .process-banner.is-card-hovered,
.js-ready .dashboard-section.is-visible .product-stats article.is-card-hovered,
.js-ready .dashboard-section.is-visible .timeline-panel.is-card-hovered,
.js-ready .dashboard-section.is-visible .social-panel.is-card-hovered {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--hover-lift), 0);
}

.market-board {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr) minmax(210px, 0.5fr);
  grid-template-areas:
    "lead sources ticket"
    "lead signals signals";
  gap: 22px;
}

.market-lead {
  min-height: 590px;
  padding: clamp(36px, 3.7vw, 52px);
  background:
    radial-gradient(circle at 74% 48%, rgba(83, 215, 255, 0.24), transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(255, 122, 56, 0.12), transparent 22%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(7, 16, 21, 0.8);
}

.market-lead h3 {
  max-width: 560px;
  margin-top: clamp(38px, 3.8vw, 58px);
  font-size: clamp(56px, 5.15vw, 78px);
  font-weight: 950;
  line-height: 0.92;
}

.market-lead h3 span {
  display: block;
}

.market-lead p {
  max-width: 520px;
  margin-top: 26px;
  color: rgba(247, 251, 255, 0.7);
}

.radar-stack {
  min-height: 205px;
  border-radius: 16px;
  overflow: hidden;
  background:
    conic-gradient(from 220deg at 50% 50%, transparent 0 56%, rgba(83, 215, 255, 0.26) 58%, transparent 68%),
    radial-gradient(circle at 50% 50%, transparent 0 15%, rgba(255, 255, 255, 0.13) 15.5% 16.5%, transparent 17% 34%, rgba(255, 255, 255, 0.08) 34.5% 35.5%, transparent 36% 50%, rgba(255, 255, 255, 0.06) 50.5% 51.5%, transparent 52%),
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.1) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.1) 50%, transparent 50.5%),
    rgba(255, 255, 255, 0.045);
}

.dashboard-section.is-visible .radar-stack {
  animation: radarSweep 4.8s linear infinite;
}

.dashboard-section.is-visible .source-row:nth-child(2) i::before,
.dashboard-section.is-visible .price-band div:nth-child(3) i::before,
.dashboard-section.is-visible .social-bars div:nth-child(2) i::before {
  transition-delay: 120ms;
}

.dashboard-section.is-visible .source-row:nth-child(3) i::before,
.dashboard-section.is-visible .price-band div:nth-child(4) i::before,
.dashboard-section.is-visible .social-bars div:nth-child(3) i::before {
  transition-delay: 220ms;
}

.dashboard-section.is-visible .source-row:nth-child(4) i::before {
  transition-delay: 320ms;
}

.mini-kpis {
  gap: 18px;
}

.mini-kpis strong {
  font-size: clamp(42px, 4.1vw, 58px);
}

.source-card {
  min-height: 290px;
  padding: 34px;
  color: #071014;
  background:
    radial-gradient(circle at 12% 10%, rgba(83, 215, 255, 0.38), transparent 36%),
    linear-gradient(135deg, rgba(247, 251, 255, 0.98), rgba(202, 220, 230, 0.84));
}

.source-row {
  min-height: 48px;
  grid-template-columns: 98px 1fr 44px;
}

.ticket-card {
  min-height: 290px;
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(7, 16, 20, 1) 0 36px, transparent 37px),
    linear-gradient(135deg, #fbff58, #eff33f 58%, #dce73a);
}

.ticket-card strong {
  margin-top: 34px;
  font-size: clamp(112px, 9vw, 144px);
}

.signal-card {
  min-height: 292px;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 122, 56, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 18, 0.78);
}

.signal-row {
  display: grid;
  align-content: start;
  min-height: 142px;
  padding: 24px;
  border-radius: 10px;
}

.signal-row b {
  font-size: 21px;
}

.competition-board {
  grid-template-columns: minmax(0, 1.48fr) minmax(310px, 0.52fr);
  grid-template-areas:
    "trend rank"
    "competitors competitors";
  gap: 22px;
}

.trend-panel {
  min-height: 535px;
  padding: 38px;
  background:
    radial-gradient(circle at 22% 20%, rgba(83, 215, 255, 0.24), transparent 32%),
    radial-gradient(circle at 76% 82%, rgba(186, 255, 98, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(5, 11, 16, 0.8);
}

.trend-lines {
  height: 325px;
}

.chart-legend {
  margin-top: 2px;
}

.trend-insights {
  grid-template-columns: minmax(210px, 0.8fr) 1fr;
  margin-top: 22px;
  padding-top: 20px;
}

.rank-panel {
  min-height: 535px;
  padding: 38px;
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 122, 56, 0.22), transparent 28%),
    linear-gradient(135deg, #f8f4ef, #e8e2dc);
}

.rank-row {
  grid-template-columns: 44px 1fr auto;
  padding: 31px 0;
}

.rank-row strong {
  font-size: 27px;
}

.rank-row em {
  font-size: 34px;
}

.competitor-panel {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(9, 14, 19, 0.76);
}

.competitor-panel h3 {
  max-width: 390px;
  font-size: clamp(64px, 6vw, 92px);
}

.competitor-panel p {
  max-width: 420px;
}

.competitor-data {
  grid-template-columns: minmax(270px, 0.92fr) minmax(270px, 1fr);
  gap: 24px;
}

.dot-matrix {
  min-height: 170px;
}

.product-board {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "banner stats"
    "timeline timeline";
  gap: 22px;
}

.process-banner {
  grid-area: banner;
  min-height: 380px;
  padding: clamp(42px, 4vw, 58px);
  background:
    radial-gradient(circle at 92% 10%, rgba(7, 16, 20, 0.14), transparent 20%),
    linear-gradient(135deg, #fbff5f 0%, #eef245 62%, #d8e32d 100%);
}

.process-banner h3 {
  max-width: 570px;
  margin-top: 28px;
  font-size: clamp(42px, 3.85vw, 58px);
  font-weight: 950;
  line-height: 0.98;
}

.process-banner h3 span {
  display: block;
  color: #071014;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.process-banner h3 span:nth-child(2) {
  margin-left: clamp(18px, 2vw, 32px);
}

.process-banner h3 span:nth-child(3) {
  margin-top: 4px;
}

.process-banner i {
  right: clamp(38px, 4vw, 62px);
  top: auto;
  bottom: clamp(34px, 3vw, 52px);
  width: clamp(62px, 5.6vw, 86px);
  height: clamp(62px, 5.6vw, 86px);
  transform: rotate(45deg);
}

.product-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "dark dark"
    "blue warm";
  gap: 18px;
}

.product-stats .stat-dark {
  grid-area: dark;
}

.product-stats .stat-blue {
  grid-area: blue;
}

.product-stats .stat-warm {
  grid-area: warm;
}

.product-stats article {
  min-height: 178px;
  padding: 30px;
}

.product-stats strong {
  margin-top: 18px;
  font-size: clamp(56px, 5vw, 78px);
}

.timeline-panel {
  grid-area: timeline;
  min-height: 440px;
  padding: 42px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px) 0 0 / 12.5% 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(186, 255, 98, 0.08)),
    rgba(5, 12, 15, 0.7);
}

.month-mark {
  width: 24%;
  color: rgba(247, 251, 255, 0.82);
}

.stage {
  min-height: 68px;
  padding: 17px 24px;
  background:
    linear-gradient(135deg, #f8f4ef, #ebe5de);
}

.stage-a {
  --x: 4%;
  --y: 38%;
  --w: 28%;
}

.stage-b {
  --x: 30%;
  --y: 58%;
  --w: 36%;
}

.stage-c {
  --x: 56%;
  --y: 40%;
  --w: 34%;
}

.stage-d {
  --x: 74%;
  --y: 70%;
  --w: 23%;
}

.user-board {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  grid-template-areas:
    "words social"
    "words risk";
  gap: 22px;
}

.word-panel {
  min-height: 560px;
  padding: 44px;
  background:
    radial-gradient(circle at 25% 34%, rgba(83, 215, 255, 0.24), transparent 30%),
    radial-gradient(circle at 80% 76%, rgba(255, 122, 56, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(5, 11, 16, 0.78);
}

.word-cloud-lite {
  min-height: 340px;
  gap: 17px 24px;
}

.word-cloud-lite b {
  font-size: clamp(58px, 5.8vw, 86px);
}

.word-cloud-lite strong {
  font-size: clamp(38px, 3.6vw, 52px);
}

.word-cloud-lite em {
  font-size: clamp(30px, 3vw, 42px);
}

.word-cloud-lite i,
.word-cloud-lite span {
  font-size: clamp(25px, 2.3vw, 34px);
}

.social-panel {
  min-height: 295px;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 122, 56, 0.28), transparent 24%),
    linear-gradient(135deg, #f8f4ef, #e9e0d9);
}

.social-panel h3 {
  max-width: 520px;
  font-size: clamp(34px, 3.2vw, 48px);
}

.risk-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(9, 14, 19, 0.78);
}

.risk-row {
  min-height: 82px;
  padding: 22px;
  border-radius: 10px;
}

@keyframes radarSweep {
  to {
    background-position:
      220px 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }
}

@media (min-width: 1800px) {
  .dashboard-section {
    width: min(1540px, calc(100vw - 240px));
    padding: 82px;
  }
}

@media (max-width: 1100px) {
  .dashboard-section {
    width: min(100vw - 44px, 1180px);
    padding: 34px;
    border-width: 6px;
    border-radius: 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(42px, 8vw, 62px);
  }

  .section-heading p {
    max-width: 100%;
  }

  .market-board,
  .competition-board,
  .product-board,
  .user-board {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .market-board > *,
  .competition-board > *,
  .product-board > *,
  .user-board > * {
    grid-area: auto;
  }

  .product-stats {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .product-stats > * {
    grid-area: auto !important;
  }

  .market-lead,
  .trend-panel,
  .process-banner,
  .word-panel {
    min-height: auto;
  }

  .competitor-panel,
  .competitor-data {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 88px;
  }

  .dashboard-section {
    scroll-margin-top: 88px;
    width: min(100vw - 24px, 1180px);
    margin-top: 64px;
    margin-bottom: 64px;
    padding: 22px;
    border-width: 4px;
    border-radius: 20px;
  }

  .dashboard-section::after {
    display: none;
  }

  .section-heading h2 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1;
  }

  .market-lead h3,
  .competitor-panel h3 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .process-banner h3 {
    max-width: calc(100% - 70px);
    font-size: clamp(31px, 9vw, 40px);
  }

  .process-banner h3 span,
  .process-banner h3 span:nth-child(2) {
    display: inline;
    margin-left: 0;
  }

  .signal-card {
    grid-template-columns: 1fr;
  }

  .trend-lines {
    height: 220px;
  }

  .timeline-panel {
    display: grid;
    min-height: auto;
    gap: 12px;
  }

  .month-mark,
  .stage {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
  }

  .stage {
    border-radius: 18px;
  }

  .word-cloud-lite {
    min-height: 250px;
  }

  .word-cloud-lite b {
    font-size: 46px;
  }

  .word-cloud-lite strong {
    font-size: 32px;
  }

  .word-cloud-lite em,
  .word-cloud-lite i,
  .word-cloud-lite span {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-spline,
  .hero-type {
    transform: none;
  }
}

/* Light glass dashboard pages */
.dashboard-page {
  display: flow-root;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 5%, rgba(105, 125, 255, 0.34), transparent 22%),
    radial-gradient(circle at 12% 76%, rgba(255, 104, 218, 0.18), transparent 18%),
    radial-gradient(circle at 86% 72%, rgba(105, 220, 255, 0.2), transparent 22%),
    linear-gradient(135deg, #f7fbff 0%, #eaf2ff 46%, #f8fbff 100%);
  color: #101827;
}

.dashboard-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(72, 100, 150, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 100, 150, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 82%);
}

.dashboard-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.dashboard-bg::before,
.dashboard-bg::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.68;
  animation: dashboardOrb 11s ease-in-out infinite alternate;
}

.dashboard-bg::before {
  right: 7vw;
  top: -80px;
  background: radial-gradient(circle at 38% 35%, #fff, var(--dash-soft), transparent 68%);
}

.dashboard-bg::after {
  left: 9vw;
  bottom: -120px;
  background: radial-gradient(circle at 42% 42%, rgba(255, 255, 255, 0.94), rgba(255, 99, 219, 0.28), transparent 72%);
  animation-delay: -4s;
}

@keyframes dashboardOrb {
  from {
    transform: translate3d(-20px, 8px, 0) scale(0.96);
  }

  to {
    transform: translate3d(24px, -18px, 0) scale(1.06);
  }
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    0 28px 80px rgba(72, 92, 135, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.dashboard-app {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 22px;
  width: min(1520px, calc(100vw - 96px));
  min-height: calc(100vh - 80px);
  margin: 40px auto;
}

.dash-sidebar {
  position: sticky;
  top: 32px;
  align-self: start;
  display: flex;
  min-height: calc(100vh - 80px);
  flex-direction: column;
  gap: 28px;
  padding: 22px 16px;
  border-radius: 28px;
}

.dash-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--dash-accent), #101827);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
}

.dash-sidebar nav {
  display: grid;
  gap: 10px;
}

.dash-sidebar nav a {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 16px;
  color: rgba(16, 24, 39, 0.62);
  font-size: 13px;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.dash-sidebar nav a span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.dash-sidebar nav a:hover,
.dash-sidebar nav a.is-current {
  color: #101827;
  background: color-mix(in srgb, var(--dash-soft), white 22%);
  transform: translateX(3px);
}

.dash-sidebar nav a.is-current span {
  color: white;
  background: var(--dash-accent);
}

.dash-sidebar nav .sidebar-home-link {
  margin-top: 8px;
}

.sidebar-note {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.sidebar-note span,
.dash-topbar span,
.dash-hero p,
.metric-tile span,
.data-window em,
.data-window p,
.inspector-card span,
.window-action span,
.insight-hero span,
.insight-update span,
.insight-update em,
.insight-card-head span {
  color: rgba(16, 24, 39, 0.5);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sidebar-note b {
  font-size: 14px;
}

.dash-main,
.insight-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.dash-topbar {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding: 14px 18px;
  border-radius: 26px;
}

.dash-topbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  background: #101827;
  font-size: 13px;
  font-weight: 900;
}

.dash-search {
  min-height: 38px;
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(16, 24, 39, 0.45);
  background: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 800;
}

.dash-hero,
.insight-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  min-height: 280px;
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  border-radius: 34px;
}

.dash-hero::before,
.insight-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, color-mix(in srgb, var(--dash-accent), transparent 68%), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 52%);
  pointer-events: none;
}

.dash-hero > *,
.insight-hero > * {
  position: relative;
  z-index: 1;
}

.dash-order {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 15px;
  color: white;
  background: var(--dash-accent);
  font-size: 13px;
  font-weight: 950;
}

.dash-hero h1,
.insight-hero h1 {
  max-width: 780px;
  margin: 8px 0 0;
  color: #101827;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  word-break: keep-all;
}

.dash-hero strong {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  color: rgba(16, 24, 39, 0.66);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.78;
}

.hero-meta-note,
.insight-hero-meta {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-top: 20px;
  color: rgba(16, 24, 39, 0.42);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.58;
}

.hero-meta-note span,
.insight-hero-meta span {
  color: rgba(16, 24, 39, 0.38);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-meta-note p,
.hero-meta-note em,
.insight-hero-meta em {
  margin: 0;
  color: rgba(16, 24, 39, 0.46);
  font-style: normal;
}

.hero-orbit {
  position: relative;
  min-height: 220px;
}

.hero-orbit i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.95), transparent 30%),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--dash-accent), white 8%), transparent 68%);
  box-shadow:
    0 26px 68px color-mix(in srgb, var(--dash-accent), transparent 68%),
    inset 0 1px 18px rgba(255, 255, 255, 0.65);
}

.hero-orbit i:nth-child(1) {
  left: 22px;
  top: 38px;
  width: 138px;
  height: 138px;
}

.hero-orbit i:nth-child(2) {
  right: 36px;
  top: 8px;
  width: 94px;
  height: 94px;
  opacity: 0.58;
}

.hero-orbit i:nth-child(3) {
  right: 92px;
  bottom: 10px;
  width: 64px;
  height: 64px;
  opacity: 0.72;
}

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

.metric-tile {
  min-height: 126px;
  padding: 24px;
  border-radius: 24px;
}

.metric-tile strong {
  display: block;
  margin-top: 14px;
  color: #101827;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1;
}

.metric-tile em {
  display: inline-block;
  margin-top: 10px;
  color: var(--dash-accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.dash-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

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

@media (min-width: 1640px) {
  .window-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .data-window {
    min-height: 430px;
    padding: 28px;
  }
}

.data-window {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 410px;
  padding: 24px;
  border-radius: 28px;
  color: #101827;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.58);
  animation: dashboardCardIn 680ms cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: var(--delay);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  transform-style: preserve-3d;
}

.data-window::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.6) 50%, transparent 58% 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18%);
  transition:
    opacity 220ms ease,
    transform 520ms ease;
}

.data-window:hover {
  border-color: color-mix(in srgb, var(--dash-accent), white 34%);
  transform: translateY(-8px) rotateX(1.2deg) rotateY(-1deg);
  box-shadow:
    0 34px 90px rgba(72, 92, 135, 0.22),
    0 0 52px color-mix(in srgb, var(--dash-accent), transparent 78%),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.data-window:hover::after {
  opacity: 0.52;
  transform: translateX(18%);
}

@keyframes dashboardCardIn {
  from {
    opacity: 1;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.window-top,
.window-action,
.insight-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.window-top span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: white;
  background: var(--dash-accent);
  font-size: 12px;
  font-weight: 950;
}

.window-top em {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--dash-accent);
  background: color-mix(in srgb, var(--dash-soft), white 22%);
  font-style: normal;
}

.data-window h2 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
}

.data-window p {
  margin: 0;
  max-width: 520px;
  color: rgba(16, 24, 39, 0.58);
  font-size: 14px;
  line-height: 1.64;
  text-transform: none;
  letter-spacing: 0;
}

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

.window-kpis .metric-tile {
  min-height: 88px;
  padding: 14px;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.window-kpis .metric-tile strong {
  margin-top: 8px;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.05;
  word-break: keep-all;
}

.dash-chart {
  width: 100%;
  height: 128px;
  overflow: visible;
}

.dash-chart-grid {
  fill: none;
  stroke: rgba(16, 24, 39, 0.08);
  stroke-width: 1;
}

.dash-chart-fill {
  fill: color-mix(in srgb, var(--dash-accent), transparent 82%);
}

.dash-chart-line {
  fill: none;
  stroke: var(--dash-accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawDashboardLine 1200ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes drawDashboardLine {
  to {
    stroke-dashoffset: 0;
  }
}

.window-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.window-list li {
  display: grid;
  grid-template-columns: minmax(86px, 0.82fr) minmax(120px, 1fr) minmax(58px, auto);
  gap: 10px;
  align-items: start;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.window-list span {
  color: rgba(16, 24, 39, 0.56);
  line-height: 1.45;
}

.window-list em {
  color: var(--dash-accent);
  font-style: normal;
  font-weight: 950;
}

.window-action {
  margin-top: auto;
  padding-top: 6px;
}

.window-action b,
.inspector-card a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: white;
  background: #101827;
  font-size: 12px;
  font-weight: 900;
}

.dash-inspector,
.insight-side {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 16px;
}

.inspector-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
}

.inspector-card h3 {
  margin: 0;
  font-size: 22px;
}

.inspector-card p {
  margin: 0;
  color: rgba(16, 24, 39, 0.6);
  font-size: 14px;
  line-height: 1.72;
}

.pm-action-board {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.pm-action-board article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background:
    radial-gradient(circle at 94% 10%, color-mix(in srgb, var(--dash-accent), white 70%), transparent 34%),
    rgba(255, 255, 255, 0.5);
}

.pm-action-board span {
  display: inline-grid;
  place-items: center;
  width: max-content;
  min-width: 36px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: white;
  background: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
}

.pm-action-board h4,
.pm-action-board p,
.pm-action-board b {
  margin: 0;
}

.pm-action-board h4 {
  color: #101827;
  font-size: 15px;
  line-height: 1.28;
}

.pm-action-board p {
  color: rgba(16, 24, 39, 0.58);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.5;
}

.pm-action-board b {
  color: var(--dash-accent);
  font-size: 12px;
  line-height: 1.45;
}

.pm-action-panel {
  grid-area: action;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
}

.pm-action-panel::before {
  content: "";
  position: absolute;
  inset: -35% -12% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--dash-accent), white 54%);
  filter: blur(54px);
  opacity: 0.34;
  pointer-events: none;
}

.pm-action-panel-shell {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
}

.pm-action-panel-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 18px;
  align-items: stretch;
}

.pm-action-lead {
  display: grid;
  gap: 10px;
}

.pm-action-lead span,
.pm-action-focus span,
.pm-action-evidence span,
.pm-action-queue span,
.pm-action-snapshot span {
  color: color-mix(in srgb, var(--dash-accent), #101827 18%);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-action-lead h3 {
  margin: 0;
  color: #101827;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.96;
}

.pm-action-lead p {
  max-width: 680px;
  margin: 0;
  color: rgba(16, 24, 39, 0.66);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.72;
}

.pm-action-focus {
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.25)),
    color-mix(in srgb, var(--dash-soft), white 18%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.pm-action-focus b {
  color: #101827;
  font-size: 24px;
  line-height: 1.08;
}

.pm-action-focus em {
  color: rgba(16, 24, 39, 0.6);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.55;
}

.pm-action-evidence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pm-action-evidence article {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.pm-action-evidence b {
  color: #101827;
  font-size: 25px;
  line-height: 1;
}

.pm-action-evidence em {
  color: rgba(16, 24, 39, 0.54);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
  line-height: 1.42;
}

.pm-action-panel .pm-action-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.pm-action-panel .pm-action-board article {
  position: relative;
  gap: 11px;
  min-height: 278px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 96% 8%, color-mix(in srgb, var(--dash-accent), white 62%), transparent 36%);
  box-shadow:
    0 22px 54px rgba(31, 45, 76, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.pm-action-panel .pm-action-board article[data-priority="P0"] {
  border-color: color-mix(in srgb, #ff6a3d, white 38%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 245, 240, 0.52)),
    radial-gradient(circle at 96% 8%, rgba(255, 125, 84, 0.34), transparent 38%);
}

.pm-action-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pm-action-title span,
.pm-action-panel .pm-action-board span {
  min-width: 42px;
  min-height: 26px;
  background: #101827;
}

.pm-action-panel .pm-action-board article[data-priority="P0"] .pm-action-title span {
  background: #f1603f;
}

.pm-action-title em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--dash-accent), #101827 26%);
  background: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.pm-action-panel .pm-action-board h4 {
  font-size: 22px;
  line-height: 1.16;
}

.pm-action-panel .pm-action-board p {
  color: rgba(16, 24, 39, 0.62);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.62;
}

.pm-action-panel .pm-action-board b {
  color: #101827;
  font-size: 14px;
  line-height: 1.52;
}

.insight-grid.has-pm-action .pm-action-panel-shell {
  gap: 14px;
  padding: 22px;
}

.insight-grid.has-pm-action .pm-action-lead h3 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.insight-grid.has-pm-action .pm-action-lead p {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.55;
}

.insight-grid.has-pm-action .pm-action-evidence {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.insight-grid.has-pm-action .pm-action-evidence article {
  min-height: 86px;
  padding: 12px;
  border-radius: 16px;
}

.insight-grid.has-pm-action .pm-action-evidence b {
  font-size: 20px;
}

.insight-grid.has-pm-action .pm-action-panel .pm-action-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.insight-grid.has-pm-action .pm-action-panel .pm-action-board article {
  min-height: auto;
  padding: 16px;
  border-radius: 18px;
}

.insight-grid.has-pm-action .pm-action-panel .pm-action-board h4 {
  font-size: 16px;
}

.insight-grid.has-pm-action .pm-action-panel .pm-action-board p,
.insight-grid.has-pm-action .pm-action-panel .pm-action-board b {
  font-size: 12px;
}

.insight-grid.has-pm-action .pm-action-projects {
  display: none;
}

.pm-action-meta,
.pm-action-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pm-action-meta i,
.pm-action-projects small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: rgba(16, 24, 39, 0.58);
  background: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.pm-action-projects small {
  max-width: 100%;
  border-radius: 12px;
  color: color-mix(in srgb, var(--dash-accent), #101827 22%);
  background: color-mix(in srgb, var(--dash-soft), white 18%);
}

.pm-action-queue {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.24);
}

.pm-action-queue h4,
.pm-action-queue p {
  margin: 8px 0 0;
}

.pm-action-queue h4 {
  color: #101827;
  font-size: 20px;
  line-height: 1.18;
}

.pm-action-queue p {
  color: rgba(16, 24, 39, 0.54);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.6;
}

.pm-action-queue-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pm-action-queue-list article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.pm-action-queue-list b,
.pm-action-queue-list em,
.pm-action-queue-list small {
  display: block;
}

.pm-action-queue-list b {
  color: #101827;
  font-size: 13px;
  line-height: 1.32;
}

.pm-action-queue-list em,
.pm-action-queue-list small {
  color: rgba(16, 24, 39, 0.56);
  font-size: 11px;
  font-style: normal;
  font-weight: 820;
  line-height: 1.45;
}

.pm-action-snapshot {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.pm-action-snapshot div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
}

.pm-action-snapshot b {
  color: #101827;
  font-size: 13px;
  line-height: 1.42;
}

.source-card-lite b {
  display: inline-block;
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--dash-accent);
  background: var(--dash-soft);
  font-size: 12px;
}

.hot-list div {
  display: grid;
  gap: 8px;
}

.hot-list a {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) minmax(72px, 0.8fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.hot-list span {
  color: rgba(16, 24, 39, 0.5);
}

.hot-list em {
  color: var(--dash-accent);
  font-style: normal;
  font-weight: 950;
}

.insight-main {
  grid-template-rows: auto auto auto auto 1fr;
}

.insight-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  min-height: 210px;
  padding: clamp(30px, 3vw, 42px);
}

.insight-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(16, 24, 39, 0.62);
  font-size: 16px;
  line-height: 1.72;
}

.insight-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.insight-update {
  align-self: center;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
}

.insight-update b {
  font-size: 24px;
}

.insight-update em {
  text-transform: none;
  line-height: 1.5;
}

.view-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 8px;
  scrollbar-width: none;
}

.view-tabs::-webkit-scrollbar {
  display: none;
}

.view-tabs a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: rgba(16, 24, 39, 0.62);
  background: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  font-weight: 900;
}

.view-tabs a.is-active {
  color: white;
  background: var(--dash-accent);
}

.product-search-panel {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  overflow: visible;
  border-radius: 22px;
  z-index: 22;
}

.product-search-input {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.product-search-input span,
.product-search-detail span {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-search-input label {
  display: block;
}

.product-search-input input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  outline: none;
  padding: 0 18px;
  color: #101827;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 850;
}

.product-search-input input::placeholder {
  color: rgba(16, 24, 39, 0.38);
}

.product-search-input input:focus {
  border-color: color-mix(in srgb, var(--dash-accent), white 20%);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--dash-accent), transparent 86%),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-search-results {
  position: absolute;
  left: 12px;
  top: calc(100% + 8px);
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(680px, calc(100% - 24px));
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 26px 70px rgba(77, 99, 143, 0.22);
  backdrop-filter: blur(20px) saturate(1.22);
  -webkit-backdrop-filter: blur(20px) saturate(1.22);
}

.product-search-panel.is-open .product-search-results {
  display: grid;
}

.product-search-results button {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 10px 12px;
  color: #101827;
  background: rgba(255, 255, 255, 0.54);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-search-results button:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--dash-accent), white 24%);
  box-shadow: 0 14px 34px rgba(77, 99, 143, 0.14);
}

.product-search-results b,
.product-search-results span,
.product-search-results em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-search-results b {
  font-size: 13px;
  font-weight: 950;
}

.product-search-results span {
  color: rgba(16, 24, 39, 0.52);
  font-size: 11px;
  font-weight: 850;
}

.product-search-results em {
  color: var(--dash-accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.product-search-results p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border-radius: 16px;
  color: rgba(16, 24, 39, 0.56);
  background: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 850;
}

.product-search-detail {
  position: absolute;
  right: 12px;
  top: calc(100% + 8px);
  display: none;
  gap: 8px;
  width: min(520px, calc(100% - 24px));
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--dash-accent), white 68%), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 70px rgba(77, 99, 143, 0.2);
  backdrop-filter: blur(20px) saturate(1.22);
  -webkit-backdrop-filter: blur(20px) saturate(1.22);
}

.product-search-panel.has-detail .product-search-detail {
  display: grid;
}

.product-search-detail h3,
.product-search-detail p {
  margin: 0;
}

.product-search-detail h3 {
  color: #101827;
  font-size: 18px;
  line-height: 1.2;
}

.product-search-detail p {
  color: rgba(16, 24, 39, 0.62);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.product-search-detail dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 0;
}

.product-search-detail div {
  min-width: 0;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.product-search-detail dt,
.product-search-detail dd {
  margin: 0;
}

.product-search-detail dt {
  color: rgba(16, 24, 39, 0.42);
  font-size: 10px;
  font-weight: 950;
}

.product-search-detail dd {
  margin-top: 4px;
  color: rgba(16, 24, 39, 0.72);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.42;
}

.insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "chart"
    "signals"
    "table";
  gap: 18px;
  align-items: start;
}

.insight-grid.has-pm-action {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "chart"
    "action"
    "signals"
    "table";
}

.insight-grid.is-plm-clean {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "chart"
    "table";
}

.insight-chart-card,
.insight-card,
.insight-table-card {
  padding: 26px;
  border-radius: 28px;
}

.insight-chart-card {
  grid-area: chart;
}

.insight-card {
  grid-area: signals;
}

.insight-table-card {
  grid-area: table;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  max-height: min(860px, 86vh);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--dash-accent), white 30%) rgba(255, 255, 255, 0.35);
}

.insight-table-card.is-plm-table {
  overflow-x: visible;
  overflow-y: visible;
  max-height: none;
}

.insight-table-card::after {
  content: "";
  position: sticky;
  right: -26px;
  top: 0;
  float: right;
  width: 44px;
  height: 100%;
  min-height: 360px;
  margin-left: -44px;
  background: linear-gradient(90deg, transparent, rgba(231, 240, 255, 0.88));
  pointer-events: none;
}

.insight-table-card.is-plm-table::after {
  display: none;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 18px;
  min-height: 260px;
  margin-top: 26px;
  padding: 24px 16px 8px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(16, 24, 39, 0.06) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(255, 255, 255, 0.34);
}

.bar-chart i {
  position: relative;
  display: block;
  height: var(--h);
  min-height: 22px;
  border-radius: 999px 999px 10px 10px;
  background:
    linear-gradient(180deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 58%));
  box-shadow: 0 16px 42px color-mix(in srgb, var(--dash-accent), transparent 70%);
}

.bar-chart span {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  color: rgba(16, 24, 39, 0.46);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  min-height: 54px;
  padding: 16px 18px;
  border-radius: 18px;
  color: rgba(16, 24, 39, 0.72);
  background: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 800;
}

.insight-table-card table {
  width: 100%;
  min-width: 1120px;
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0 8px;
  font-size: 13px;
  table-layout: fixed;
}

.insight-table-card th {
  position: sticky;
  top: 0;
  z-index: 3;
  color: rgba(16, 24, 39, 0.48);
  font-size: 11px;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
}

.insight-table-card th,
.insight-table-card td {
  padding: 14px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(16, 24, 39, 0.04);
  vertical-align: top;
}

.insight-table-card td {
  color: rgba(16, 24, 39, 0.74);
  font-weight: 780;
  line-height: 1.55;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.52);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.insight-table-card tbody tr {
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.insight-table-card tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.36);
}

.insight-table-card tbody tr:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 24px rgba(72, 92, 135, 0.12));
}

.insight-table-card tbody tr:hover td {
  color: #101827;
  background:
    radial-gradient(circle at 92% 20%, color-mix(in srgb, var(--dash-accent), white 70%), transparent 30%),
    rgba(255, 255, 255, 0.82);
}

.insight-table-card td b,
.insight-table-card td span {
  color: var(--dash-accent);
  font-weight: 950;
}

.insight-table-card th:first-child,
.insight-table-card td:first-child {
  border-radius: 16px 0 0 16px;
}

.insight-table-card th:last-child,
.insight-table-card td:last-child {
  border-radius: 0 16px 16px 0;
}

.insight-table-card td:nth-child(6) span,
.insight-table-card td:nth-child(6):not(:empty) {
  font-weight: 900;
}

.insight-table-card td span,
.insight-table-card td strong {
  display: inline-block;
}

.insight-table-card td span {
  padding: 5px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--dash-soft), white 16%);
  line-height: 1.35;
}

.insight-table-card th:nth-child(1),
.insight-table-card td:nth-child(1) {
  width: 48px;
}

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

.insight-table-card th:nth-child(3),
.insight-table-card td:nth-child(3) {
  width: 260px;
}

.insight-table-card th:nth-child(4),
.insight-table-card td:nth-child(4) {
  width: 260px;
}

.insight-table-card th:nth-child(5),
.insight-table-card td:nth-child(5) {
  width: 120px;
}

.insight-table-card th:nth-child(6),
.insight-table-card td:nth-child(6) {
  width: 220px;
}

.visual-preview {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 16%, color-mix(in srgb, var(--dash-accent), white 72%), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 46px rgba(77, 99, 143, 0.12);
}

.preview-radar,
.visual-matrix,
.visual-voice,
.visual-riskmap,
.visual-brandmix {
  min-height: 176px;
}

.preview-radar {
  position: relative;
  height: 124px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 23%, rgba(16, 24, 39, 0.08) 24% 25%, transparent 26% 45%, rgba(16, 24, 39, 0.08) 46% 47%, transparent 48%),
    linear-gradient(rgba(16, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.preview-radar strong {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  color: #101827;
  font-size: 13px;
  line-height: 1.18;
  text-align: center;
}

.preview-radar i,
.visual-matrix i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: calc(78px * var(--s));
  height: calc(78px * var(--s));
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.94), transparent 22%),
    linear-gradient(135deg, var(--dash-accent), #101827);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--dash-accent), transparent 72%);
  font-style: normal;
  transform: translate(-50%, -50%);
}

.preview-radar i b,
.visual-matrix i b {
  max-width: 62px;
  padding: 0 6px;
  overflow: hidden;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
}

.preview-radar i span {
  position: absolute;
  right: -10px;
  bottom: 4px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--dash-accent);
  background: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  font-weight: 950;
  white-space: nowrap;
}

.brand-radar-preview {
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(16, 24, 39, 0.06) 1px, transparent 1px) 0 0 / 20% 100%,
    rgba(255, 255, 255, 0.34);
}

.brand-radar-preview span {
  display: grid;
  grid-template-columns: minmax(90px, 0.9fr) minmax(88px, 1fr) minmax(56px, auto);
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: #101827;
}

.brand-radar-preview b,
.brand-radar-preview em {
  overflow: hidden;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-radar-preview i {
  position: relative;
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.brand-radar-preview i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 52%));
}

.brand-radar-preview em {
  color: var(--dash-accent);
  text-align: right;
}

.visual-product-intel {
  display: grid;
  gap: 12px;
  min-height: 430px;
}

.product-intel-recency {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
    color-mix(in srgb, var(--dash-soft), white 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-intel-recency span {
  color: var(--dash-accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-intel-recency b {
  color: #101827;
  font-size: 15px;
  font-weight: 950;
}

.product-intel-recency em {
  grid-column: 1 / -1;
  color: rgba(16, 24, 39, 0.58);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.45;
}

.product-intel-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: auto;
  padding: 12px;
}

.product-intel-preview span {
  grid-template-columns: minmax(70px, 0.7fr) minmax(0, 1fr) auto;
  min-height: 42px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
}

.product-intel-preview i {
  height: auto;
  overflow: hidden;
  color: rgba(16, 24, 39, 0.58);
  background: transparent;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-intel-preview i::before {
  display: none;
}

.product-insight-strip {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.product-insight-strip span {
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 12px 14px;
}

.product-insight-strip b,
.product-insight-strip small,
.product-insight-strip em {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.38;
}

.product-insight-strip b {
  color: #101827;
  font-size: 13px;
}

.product-insight-strip small {
  color: rgba(16, 24, 39, 0.62);
  font-size: 11px;
  font-weight: 800;
}

.product-insight-strip em {
  color: var(--dash-accent);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.preview-product-strip:not(.product-insight-strip) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.preview-product-strip:not(.product-insight-strip) span,
.visual-timeline span,
.visual-competitor span,
.visual-pipeline span,
.visual-inventory span,
.visual-riskmap span,
.visual-brandmix span {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.preview-product-strip:not(.product-insight-strip) span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 9px;
}

.preview-product-strip:not(.product-insight-strip) b,
.preview-product-strip:not(.product-insight-strip) em {
  overflow: hidden;
  font-size: 10px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-product-strip:not(.product-insight-strip) em {
  color: rgba(16, 24, 39, 0.52);
  font-weight: 800;
}

.visual-timeline {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.visual-timeline span {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px 10px 18px;
}

.visual-timeline span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dash-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--dash-accent), transparent 28%);
  transform: translateY(-50%);
}

.visual-timeline b,
.visual-timeline i,
.visual-competitor b,
.visual-pipeline b,
.visual-inventory b,
.visual-riskmap b,
.visual-brandmix b {
  overflow: hidden;
  color: #101827;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-timeline i,
.visual-riskmap i {
  color: rgba(16, 24, 39, 0.54);
  font-weight: 800;
}

.visual-timeline em,
.visual-competitor em,
.visual-pipeline em,
.visual-brandmix em,
.visual-riskmap em {
  color: var(--dash-accent);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.visual-matrix {
  background:
    linear-gradient(rgba(16, 24, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.74), transparent 24%);
  background-size: 34px 34px, 34px 34px, auto;
}

.matrix-axis {
  position: absolute;
  inset: 14px;
  color: rgba(16, 24, 39, 0.42);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.matrix-axis b {
  position: absolute;
  right: 0;
  bottom: 0;
}

.visual-competitor,
.visual-pipeline,
.visual-inventory,
.preview-rank-bars {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.visual-competitor span,
.visual-pipeline span,
.preview-rank-bars span {
  display: grid;
  grid-template-columns: minmax(76px, 0.78fr) minmax(80px, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
}

.visual-competitor i,
.visual-pipeline i,
.preview-rank-bars i {
  position: relative;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.visual-competitor i::before,
.visual-pipeline i::before,
.preview-rank-bars i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 58%));
  box-shadow: 0 0 18px color-mix(in srgb, var(--dash-accent), transparent 58%);
}

.visual-inventory span {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
}

.visual-inventory i {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  font-style: normal;
}

.visual-inventory em {
  display: block;
  aspect-ratio: 1;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 62%));
  box-shadow: 0 8px 16px color-mix(in srgb, var(--dash-accent), transparent 78%);
}

.visual-trend {
  display: grid;
  gap: 8px;
  padding: 10px 14px 12px;
}

.visual-trend .dash-chart {
  height: 94px;
}

.visual-gauge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
  padding: 14px;
}

.visual-gauge span {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
  padding: 12px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.visual-gauge i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 48%, transparent 49%),
    conic-gradient(var(--dash-accent) var(--v), rgba(16, 24, 39, 0.08) 0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.visual-gauge b,
.visual-gauge em {
  max-width: 100%;
  overflow: hidden;
  color: #101827;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-gauge em {
  color: var(--dash-accent);
}

.visual-riskmap {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 10px;
  padding: 14px;
}

.visual-riskmap span {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.44);
}

.visual-riskmap span.is-hot {
  grid-row: span 2;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 77, 109, 0.22), transparent 32%),
    rgba(255, 255, 255, 0.54);
}

.visual-brandmix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}

.visual-brandmix span {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
}

.visual-brandmix i {
  display: block;
  width: 64px;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(var(--dash-accent) 0 var(--a), color-mix(in srgb, var(--dash-accent), white 55%) 0 calc(var(--a) + var(--b)), rgba(16, 24, 39, 0.1) 0),
    #fff;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.55);
}

.visual-voice {
  position: relative;
  padding: 18px;
}

.visual-voice span {
  position: absolute;
  color: #101827;
  font-weight: 950;
  white-space: nowrap;
}

.visual-voice .w0 {
  left: 12%;
  top: 18%;
  color: var(--dash-accent);
  font-size: 28px;
}

.visual-voice .w1 {
  right: 12%;
  top: 24%;
  font-size: 20px;
}

.visual-voice .w2 {
  left: 22%;
  bottom: 24%;
  font-size: 22px;
}

.visual-voice .w3 {
  right: 18%;
  bottom: 18%;
  color: rgba(16, 24, 39, 0.52);
  font-size: 16px;
}

.visual-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  padding: 16px 14px 28px;
}

.visual-bars span {
  position: relative;
  display: flex;
  align-items: end;
  height: 132px;
}

.visual-bars i {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 58%));
}

.visual-bars b {
  position: absolute;
  left: 50%;
  bottom: -20px;
  color: rgba(16, 24, 39, 0.45);
  font-size: 10px;
  transform: translateX(-50%);
}

.detail-visual {
  position: relative;
  min-height: 340px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--dash-accent), white 72%), transparent 25%),
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.86), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.26)),
    rgba(255, 255, 255, 0.34);
}

.visual-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.visual-title span {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-title b {
  color: #101827;
  font-size: 18px;
}

.detail-newness,
.detail-trend,
.detail-revenue {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(260px, 0.74fr);
  gap: 18px;
}

.newness-radar {
  position: relative;
  min-height: 290px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(16, 24, 39, 0.07) 19% 20%, transparent 21% 38%, rgba(16, 24, 39, 0.07) 39% 40%, transparent 41% 58%, rgba(16, 24, 39, 0.07) 59% 60%, transparent 61%),
    linear-gradient(rgba(16, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.36);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.brand-radar-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}

.brand-radar-detail article {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 120px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--dash-accent), white 64%), transparent 34%),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px rgba(83, 105, 144, 0.12);
}

.brand-radar-detail article span {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
}

.brand-radar-detail article h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #101827;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.08;
}

.brand-radar-detail article p {
  margin: 0;
  color: rgba(16, 24, 39, 0.58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.42;
}

.brand-radar-detail article i {
  position: relative;
  display: block;
  height: 9px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.brand-radar-detail article i b {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 56%));
}

.brand-radar-detail article em {
  color: var(--dash-accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.newness-radar strong {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--dash-accent), #101827);
  box-shadow: 0 28px 70px color-mix(in srgb, var(--dash-accent), transparent 68%);
  font-size: 32px;
  transform: translate(-50%, -50%);
}

.newness-radar strong span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
}

.newness-radar i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  align-content: center;
  justify-items: center;
  width: calc(118px * var(--s));
  height: calc(82px * var(--s));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  color: #101827;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(83, 105, 144, 0.14);
  font-style: normal;
  transform: translate(-50%, -50%);
}

.newness-radar i b,
.newness-radar i em {
  max-width: 100%;
  overflow: hidden;
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newness-radar i em {
  margin-top: 6px;
  color: var(--dash-accent);
  font-weight: 950;
}

.detail-newness aside {
  display: grid;
  gap: 10px;
}

.detail-newness aside article,
.impact-stream article,
.competitor-table article,
.pipeline-lanes article,
.inventory-grid article,
.health-gauges article,
.risk-matrix article,
.brand-cards article,
.sentiment-split article {
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.detail-newness aside article {
  padding: 14px;
}

.detail-newness aside span,
.detail-newness aside b,
.impact-stream span,
.competitor-table span,
.pipeline-lanes span,
.inventory-grid span,
.health-gauges span,
.risk-matrix span,
.brand-cards span,
.sentiment-split span {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-newness aside h3,
.impact-stream h3,
.competitor-table h3,
.pipeline-lanes h3,
.risk-matrix h3,
.brand-cards h3,
.health-gauges h3 {
  margin: 8px 0;
  color: #101827;
  font-size: 18px;
  line-height: 1.18;
}

.detail-newness aside p,
.impact-stream p {
  margin: 0;
  color: rgba(16, 24, 39, 0.56);
  font-size: 13px;
  line-height: 1.58;
}

.detail-newness-rich {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.detail-newness-rich .visual-title {
  margin-bottom: 0;
}

.latest-data-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 10%, color-mix(in srgb, var(--dash-accent), white 60%), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--dash-soft), white 20%), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 48px rgba(83, 105, 144, 0.12);
}

.latest-data-note div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.latest-data-note span,
.brand-intel-toolbar span,
.latest-source-grid span,
.brand-intel-card header span,
.brand-intel-card header em {
  color: var(--dash-accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.latest-data-note h3 {
  margin: 0;
  color: #101827;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
}

.latest-data-note p {
  max-width: 900px;
  margin: 0;
  color: rgba(16, 24, 39, 0.64);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.68;
}

.latest-data-note > b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--dash-accent), white 54%);
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--dash-accent), #101827);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--dash-accent), transparent 70%);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

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

.latest-source-grid article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  min-height: 166px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.latest-source-grid h3 {
  margin: 0;
  color: #101827;
  font-size: 15px;
  line-height: 1.25;
}

.latest-source-grid p {
  margin: 0;
  color: rgba(16, 24, 39, 0.58);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.52;
}

.latest-source-grid a {
  align-self: end;
  justify-self: start;
  margin-top: 2px;
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
}

.brand-intel-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 0.9fr) minmax(280px, 1.4fr);
  gap: 12px 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.brand-intel-toolbar b {
  color: #101827;
  font-size: 18px;
  line-height: 1.2;
}

.brand-intel-toolbar em {
  color: rgba(16, 24, 39, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.45;
}

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

.brand-intel-card {
  display: grid;
  grid-template-rows: auto auto minmax(132px, auto) auto;
  gap: 12px;
  min-width: 0;
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--dash-accent), white 70%), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 42px rgba(83, 105, 144, 0.1);
}

.brand-intel-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand-intel-card header span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: color-mix(in srgb, var(--dash-accent), #101827 18%);
}

.brand-intel-card header em {
  max-width: 70%;
  padding: 7px 10px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--dash-soft), white 38%);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-intel-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #101827;
  font-size: 23px;
  line-height: 1.12;
}

.brand-intel-card p {
  margin: 0;
  color: rgba(16, 24, 39, 0.66);
  font-size: 13px;
  font-weight: 840;
  line-height: 1.62;
}

.brand-intel-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.brand-intel-card dl div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
}

.brand-intel-card dt,
.brand-intel-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.42;
}

.brand-intel-card dt {
  color: rgba(16, 24, 39, 0.42);
}

.brand-intel-card dd {
  color: #101827;
}

.watch-lanes {
  position: relative;
  min-height: 270px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(16, 24, 39, 0.08) 8% 9%, transparent 9% 100%),
    linear-gradient(rgba(16, 24, 39, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.35);
  background-size: auto, 100% 25%, auto;
}

.watch-lanes::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dash-accent), transparent);
}

.watch-lanes article {
  position: absolute;
  left: var(--p);
  top: 50%;
  width: min(210px, 28%);
  min-height: 150px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 54px rgba(74, 95, 130, 0.16);
  transform: translate(-50%, -50%);
}

.watch-lanes article span,
.watch-lanes article b,
.watch-lanes article em {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--dash-accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.watch-lanes article h3 {
  margin: 0 0 12px;
  color: #101827;
  font-size: 17px;
  line-height: 1.35;
}

.watch-lanes article em {
  color: rgba(16, 24, 39, 0.48);
}

.watch-heat {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.watch-heat span {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.watch-heat span::before {
  content: "";
  display: block;
  height: var(--heat);
  min-height: 36px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 65%));
}

.watch-heat b,
.watch-heat i {
  color: rgba(16, 24, 39, 0.58);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.detail-channel-flow {
  min-height: 560px;
}

.channel-flow-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.26fr);
  gap: 16px;
}

.channel-flow-map {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 470px;
  padding: 18px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 12%, color-mix(in srgb, var(--dash-accent), white 72%), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(rgba(16, 24, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.36);
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.channel-flow-map::before,
.channel-flow-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.channel-flow-map::before {
  inset: 62px 26px auto 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--dash-accent), transparent 48%), transparent);
}

.channel-flow-map::after {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.channel-river-head,
.channel-river-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(220px, 0.72fr) minmax(220px, 0.75fr);
  gap: 14px;
  align-items: center;
}

.channel-river-head {
  min-height: 38px;
  color: rgba(16, 24, 39, 0.46);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.channel-river {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.channel-river-row {
  min-height: 96px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 50px rgba(74, 95, 130, 0.1);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.channel-river-row:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--dash-accent), white 40%);
  box-shadow:
    0 26px 64px rgba(74, 95, 130, 0.16),
    0 0 36px color-mix(in srgb, var(--dash-accent), transparent 78%);
}

.river-source,
.river-action {
  display: grid;
  gap: 7px;
}

.river-source span,
.river-action span,
.river-signal em {
  color: var(--dash-accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.river-source h3 {
  margin: 0;
  color: #101827;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.12;
}

.river-source p,
.river-action p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(16, 24, 39, 0.58);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.45;
  -webkit-box-orient: vertical;
}

.river-source p {
  -webkit-line-clamp: 2;
}

.river-action p {
  color: #101827;
  font-size: 13px;
  font-weight: 950;
  -webkit-line-clamp: 2;
}

.river-signal {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  align-items: center;
}

.river-signal em {
  justify-self: start;
  max-width: 100%;
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--dash-soft), white 26%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.river-signal i {
  position: relative;
  display: block;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.river-signal i::before {
  content: "";
  position: absolute;
  inset: 5px 0 auto 0;
  height: 1px;
  background: color-mix(in srgb, var(--dash-accent), transparent 58%);
}

.river-signal i b {
  position: relative;
  display: block;
  width: var(--v);
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 58%)),
    var(--dash-accent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--dash-accent), transparent 62%);
}

.river-signal i b::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dash-accent), transparent 68%);
  transform: translateY(-50%);
}

.channel-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(230px, 28%);
  min-height: 138px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 56px rgba(74, 95, 130, 0.14);
  transform: translate(-50%, -50%);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.channel-node:hover {
  transform: translate(-50%, -54%);
  box-shadow:
    0 30px 72px rgba(74, 95, 130, 0.2),
    0 0 40px color-mix(in srgb, var(--dash-accent), transparent 72%);
}

.channel-node.is-core {
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 260px;
  min-height: 156px;
  color: white;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(135deg, var(--dash-accent), #101827);
  box-shadow: 0 30px 80px color-mix(in srgb, var(--dash-accent), transparent 58%);
}

.channel-node span,
.channel-node em,
.tier-card span,
.tier-card em {
  color: var(--dash-accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.channel-node.is-core span,
.channel-node.is-core p {
  color: rgba(255, 255, 255, 0.76);
}

.channel-node h3,
.tier-card h3 {
  margin: 0;
  color: #101827;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.16;
}

.channel-node.is-core h3 {
  color: white;
}

.channel-node p,
.tier-card p {
  margin: 0;
  color: rgba(16, 24, 39, 0.58);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.48;
}

.channel-node i,
.channel-heat-grid i,
.tier-card i,
.tier-summary i {
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.channel-node i,
.tier-card i,
.tier-summary i {
  height: 9px;
}

.channel-node i b,
.channel-heat-grid i::before,
.tier-card i::before,
.tier-summary i::before {
  content: "";
  display: block;
  width: var(--w, var(--v));
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 56%));
}

.channel-heat-grid {
  display: grid;
  gap: 10px;
}

.channel-heat-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.channel-heat-grid span,
.channel-heat-grid b {
  color: rgba(16, 24, 39, 0.62);
  font-size: 12px;
  font-weight: 950;
}

.channel-heat-grid b {
  color: #101827;
  text-align: right;
}

.channel-heat-grid i {
  height: 12px;
}

.impact-stream {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.impact-stream article {
  display: grid;
  min-height: 250px;
  padding: 20px;
}

.impact-stream b {
  align-self: end;
  width: max-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: white;
  background: var(--dash-accent);
  font-size: 12px;
}

.impact-stream i {
  display: block;
  width: var(--w);
  height: 9px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 58%));
  font-style: normal;
}

.detail-area-chart {
  width: 100%;
  min-height: 260px;
  overflow: visible;
}

.detail-grid {
  fill: none;
  stroke: rgba(16, 24, 39, 0.08);
  stroke-width: 1;
}

.detail-area {
  fill: color-mix(in srgb, var(--dash-accent), transparent 82%);
}

.detail-line {
  fill: none;
  stroke: var(--dash-accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawDashboardLine 1200ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.detail-area-chart circle {
  fill: white;
  stroke: var(--dash-accent);
  stroke-width: 4;
}

.detail-area-chart text {
  fill: rgba(16, 24, 39, 0.46);
  font-size: 12px;
  font-weight: 900;
  text-anchor: middle;
}

.detail-rank-bars,
.matrix-compare,
.price-band {
  display: grid;
  gap: 12px;
  align-content: center;
}

.detail-rank-bars span,
.matrix-compare span,
.price-band span {
  display: grid;
  grid-template-columns: minmax(92px, 0.75fr) minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.detail-rank-bars i,
.matrix-compare i,
.price-band i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.detail-rank-bars i::before,
.matrix-compare i::before,
.price-band i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 55%));
}

.detail-rank-bars b,
.matrix-compare b,
.price-band b,
.detail-rank-bars em,
.matrix-compare em {
  color: #101827;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.detail-rank-bars em,
.matrix-compare em {
  color: var(--dash-accent);
}

.position-map {
  position: relative;
  min-height: 340px;
  margin-bottom: 16px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(16, 24, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.36);
  background-size: 48px 48px, 48px 48px, auto;
}

.axis-x,
.axis-y {
  position: absolute;
  color: rgba(16, 24, 39, 0.44);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.axis-x {
  right: 20px;
  bottom: 18px;
}

.axis-y {
  left: 18px;
  top: 18px;
}

.position-map i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: calc(118px * var(--s));
  height: calc(118px * var(--s));
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.95), transparent 24%),
    linear-gradient(135deg, var(--dash-accent), #101827);
  box-shadow: 0 22px 62px color-mix(in srgb, var(--dash-accent), transparent 70%);
  font-style: normal;
  transform: translate(-50%, -50%);
}

.position-map i b,
.position-map i em {
  max-width: 88px;
  overflow: hidden;
  font-size: 13px;
  font-style: normal;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.position-map i em {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.detail-tier-radar {
  min-height: 560px;
}

.tier-radar-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.3fr);
  gap: 16px;
}

.tier-board {
  display: grid;
  grid-template-columns: minmax(210px, 1.05fr) repeat(3, minmax(190px, 1fr));
  gap: 12px;
  min-height: 460px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 14%, color-mix(in srgb, var(--dash-accent), white 70%), transparent 25%),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.86), transparent 23%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    linear-gradient(rgba(16, 24, 39, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.34);
  background-size: auto, 100% 25%, auto;
}

.tier-column {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
}

.tier-column footer {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.26)),
    rgba(255, 255, 255, 0.45);
}

.tier-column footer span {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
}

.tier-column footer p {
  margin: 0;
  color: rgba(16, 24, 39, 0.62);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.42;
}

.tier-column header {
  display: grid;
  gap: 5px;
  min-height: 60px;
  padding: 2px 4px 8px;
  border-bottom: 1px solid rgba(16, 24, 39, 0.06);
}

.tier-column header span {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tier-column header h3 {
  margin: 0;
  color: #101827;
  font-size: clamp(19px, 1.45vw, 26px);
  line-height: 1.06;
}

.tier-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 152px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 14%, color-mix(in srgb, var(--dash-accent), white 62%), transparent 32%),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(74, 95, 130, 0.12);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.tier-column.tier-premium .tier-card:first-of-type {
  min-height: 320px;
  color: white;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.74), transparent 24%),
    linear-gradient(135deg, var(--dash-accent), #101827);
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(74, 95, 130, 0.18),
    0 0 38px color-mix(in srgb, var(--dash-accent), transparent 76%);
}

.tier-column.tier-premium .tier-card:first-of-type h3,
.tier-column.tier-premium .tier-card:first-of-type p,
.tier-column.tier-premium .tier-card:first-of-type em,
.tier-column.tier-premium .tier-card:first-of-type b,
.tier-column.tier-premium .tier-card:first-of-type span {
  color: white;
}

.tier-card div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.tier-card b {
  color: rgba(16, 24, 39, 0.56);
  font-size: 12px;
  white-space: nowrap;
}

.tier-summary {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tier-summary article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.5);
}

.tier-summary span,
.tier-summary b {
  color: #101827;
  font-size: 12px;
  font-weight: 950;
}

.tier-summary b {
  grid-column: 1 / -1;
  color: var(--dash-accent);
}

.competitor-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.competitor-table article {
  display: grid;
  gap: 9px;
  min-height: 168px;
  padding: 20px;
}

.competitor-table b,
.competitor-table em,
.competitor-table i {
  color: rgba(16, 24, 39, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.competitor-table em {
  color: #ef476f;
}

.competitor-table i {
  color: var(--dash-accent);
}

.price-band span {
  grid-template-columns: 56px 1fr;
}

.pipeline-lanes {
  display: grid;
  gap: 14px;
}

.pipeline-lanes article {
  display: grid;
  grid-template-columns: 92px minmax(180px, 0.86fr) minmax(260px, 1fr);
  gap: 10px 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
}

.pipeline-lanes article span {
  grid-column: 1;
  grid-row: 1 / 3;
}

.pipeline-lanes article h3 {
  grid-column: 2;
  grid-row: 1;
}

.pipeline-lanes article b {
  grid-column: 2;
  grid-row: 2;
}

.pipeline-lanes article i {
  grid-column: 3;
  grid-row: 1;
}

.pipeline-lanes article em {
  grid-column: 3;
  grid-row: 2;
}

.pipeline-lanes b,
.pipeline-lanes em {
  color: rgba(16, 24, 39, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.pipeline-lanes i {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.pipeline-lanes i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 55%));
}

.inventory-grid,
.health-gauges,
.risk-matrix,
.brand-cards,
.sentiment-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.inventory-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.inventory-grid b,
.inventory-grid em {
  color: #101827;
  font-size: 22px;
  font-style: normal;
  font-weight: 950;
}

.inventory-grid em {
  color: var(--dash-accent);
}

.inventory-grid i {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 8px;
  font-style: normal;
}

.inventory-grid small {
  display: block;
  aspect-ratio: 1;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--dash-accent), color-mix(in srgb, var(--dash-accent), white 62%));
}

.revenue-funnel {
  display: grid;
  gap: 14px;
}

.revenue-funnel span {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  width: var(--w);
  min-width: 58%;
  min-height: 74px;
  padding: 18px;
  border-radius: 18px;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(135deg, var(--dash-accent), #101827);
  box-shadow: 0 22px 54px color-mix(in srgb, var(--dash-accent), transparent 72%);
}

.revenue-funnel b,
.revenue-funnel i,
.revenue-funnel em {
  overflow: hidden;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.revenue-funnel i,
.revenue-funnel em {
  color: rgba(255, 255, 255, 0.72);
}

.detail-revenue .detail-area-chart {
  min-height: 210px;
}

.health-gauges article {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 250px;
  padding: 22px;
  text-align: center;
}

.health-gauges i {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 50%, transparent 51%),
    conic-gradient(var(--dash-accent) var(--v), rgba(16, 24, 39, 0.08) 0);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 18px 46px color-mix(in srgb, var(--dash-accent), transparent 82%);
}

.health-gauges b {
  color: var(--dash-accent);
  font-size: 24px;
}

.risk-matrix article {
  display: grid;
  gap: 9px;
  min-height: 220px;
  padding: 22px;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 184, 79, 0.22), transparent 30%),
    rgba(255, 255, 255, 0.5);
}

.risk-matrix article.is-high {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 77, 109, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.56);
}

.risk-matrix b,
.risk-matrix em,
.risk-matrix i {
  color: rgba(16, 24, 39, 0.62);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.risk-matrix b,
.risk-matrix em {
  color: #ef476f;
}

.brand-cards article {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.brand-cards div {
  width: 116px;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 42%, transparent 43%),
    conic-gradient(var(--dash-accent) 0 var(--a), color-mix(in srgb, var(--dash-accent), white 52%) 0 calc(var(--a) + var(--b)), rgba(16, 24, 39, 0.1) 0);
}

.brand-cards b,
.brand-cards em {
  color: rgba(16, 24, 39, 0.6);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.voice-cloud {
  position: relative;
  min-height: 250px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 48% 45%, rgba(255, 255, 255, 0.82), transparent 36%),
    rgba(255, 255, 255, 0.34);
}

.voice-cloud span {
  position: absolute;
  color: #101827;
  font-weight: 950;
  white-space: nowrap;
}

.voice-cloud .w0 {
  left: 10%;
  top: 24%;
  color: var(--dash-accent);
  font-size: clamp(34px, 5vw, 62px);
}

.voice-cloud .w1 {
  right: 14%;
  top: 18%;
  font-size: clamp(24px, 3vw, 40px);
}

.voice-cloud .w2 {
  left: 30%;
  bottom: 24%;
  color: color-mix(in srgb, var(--dash-accent), #101827 20%);
  font-size: clamp(22px, 2.6vw, 36px);
}

.voice-cloud .w3 {
  right: 16%;
  bottom: 22%;
  color: rgba(16, 24, 39, 0.52);
  font-size: clamp(18px, 2vw, 26px);
}

.voice-cloud .w4 {
  left: 16%;
  bottom: 12%;
  color: rgba(16, 24, 39, 0.44);
  font-size: 18px;
}

.sentiment-split {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.sentiment-split article {
  padding: 20px;
}

.sentiment-split b {
  display: block;
  margin: 8px 0;
  color: #101827;
  font-size: 34px;
}

.sentiment-split p {
  margin: 0;
  color: rgba(16, 24, 39, 0.58);
  font-size: 13px;
  font-weight: 850;
}

.buzz-bubbles {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(16, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.34);
  background-size: 46px 46px, 46px 46px, auto;
}

.buzz-bubbles article {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: calc(150px * var(--s));
  height: calc(150px * var(--s));
  padding: 22px;
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.95), transparent 22%),
    linear-gradient(135deg, var(--dash-accent), #101827);
  box-shadow: 0 26px 70px color-mix(in srgb, var(--dash-accent), transparent 70%);
  text-align: center;
  transform: translate(-50%, -50%);
}

.buzz-bubbles span,
.buzz-bubbles b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.buzz-bubbles h3 {
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.2;
}

.status-10,
.status-active {
  --status-color: #0f9f6e;
  --status-soft: rgba(15, 159, 110, 0.14);
}

.status-20,
.status-done {
  --status-color: #1d9bf0;
  --status-soft: rgba(29, 155, 240, 0.14);
}

.status-30,
.status-cancelled {
  --status-color: #ef476f;
  --status-soft: rgba(239, 71, 111, 0.14);
}

.status-40,
.status-paused {
  --status-color: #f59f00;
  --status-soft: rgba(245, 159, 0, 0.16);
}

.visual-pipeline-plm {
  gap: 12px;
}

.pipeline-status-strip,
.pipeline-project-strip {
  display: grid;
  gap: 10px;
}

.pipeline-status-strip span {
  display: grid;
  grid-template-columns: 42px minmax(80px, 1fr) 34px;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, var(--status-soft), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.46);
}

.pipeline-status-strip span b,
.pipeline-status-strip span em {
  color: var(--status-color);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.pipeline-status-strip i {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.pipeline-status-strip i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--status-color);
}

.pipeline-project-strip article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.pipeline-project-strip strong,
.pipeline-project-strip b,
.pipeline-project-strip small,
.pipeline-project-strip em {
  min-width: 0;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pipeline-project-strip strong {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
}

.pipeline-project-strip b {
  color: #101827;
  font-size: 11px;
  font-weight: 950;
}

.pipeline-project-strip small {
  grid-column: 2 / 4;
  color: rgba(16, 24, 39, 0.52);
  font-size: 10px;
  font-weight: 850;
}

.pipeline-project-strip em,
.window-list .plm-window-row em,
.project-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 48px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--status-color);
  background: var(--status-soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.project-status-badge small {
  margin-left: 5px;
  color: inherit;
  font-size: 10px;
  opacity: 0.72;
}

.detail-pipeline-plm {
  display: grid;
  gap: 14px;
}

.plm-workbench {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.plm-workbench-lead,
.plm-workbench-kpis article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.38);
}

.plm-workbench-lead {
  display: grid;
  align-content: space-between;
  gap: 14px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--dash-soft), white 18%), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.38);
}

.plm-workbench-lead span,
.plm-workbench-kpis span {
  color: color-mix(in srgb, var(--dash-accent), #101827 18%);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plm-workbench-lead h3 {
  margin: 0;
  color: #101827;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.plm-workbench-lead p,
.plm-workbench-kpis em {
  margin: 0;
  color: rgba(16, 24, 39, 0.56);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
  line-height: 1.48;
}

.plm-workbench-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.plm-workbench-kpis article {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.plm-workbench-kpis b {
  overflow: hidden;
  color: #101827;
  font-size: 26px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plm-source-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--dash-soft), white 12%), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.plm-source-note div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.plm-source-note span,
.plm-source-note em {
  color: color-mix(in srgb, var(--dash-accent), #101827 18%);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plm-source-note b {
  color: #101827;
  font-size: 22px;
  line-height: 1.15;
}

.plm-source-note p {
  margin: 0;
  color: rgba(16, 24, 39, 0.62);
  font-size: 13px;
  font-weight: 830;
  line-height: 1.5;
}

.plm-status-board,
.plm-mini-panel,
.plm-flow-panel,
.plm-owner-panel,
.plm-month-panel,
.plm-brand-board,
.plm-brand-entry-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
}

.plm-status-board.is-top-status {
  margin-top: 2px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(100deg, rgba(222, 244, 255, 0.86), rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.42);
}

.plm-status-board.is-top-status .plm-status-card-grid article {
  min-height: 176px;
  padding: 20px;
}

.plm-status-board.is-top-status .plm-status-card-grid strong {
  font-size: 56px;
}

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

.plm-brand-entry-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 20%, color-mix(in srgb, var(--brand-tone), white 66%), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.plm-brand-entry-card:hover,
.plm-brand-entry-card.is-active {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(31, 45, 76, 0.12);
}

.plm-brand-entry-card.is-active {
  border-color: color-mix(in srgb, var(--brand-tone), white 18%);
  background:
    radial-gradient(circle at 88% 20%, color-mix(in srgb, var(--brand-tone), white 54%), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.48));
}

.plm-brand-entry-card[style*="--tone:0"] { --brand-tone: #cf44ff; }
.plm-brand-entry-card[style*="--tone:1"] { --brand-tone: #21c7df; }
.plm-brand-entry-card[style*="--tone:2"] { --brand-tone: #ff7a21; }
.plm-brand-entry-card[style*="--tone:3"] { --brand-tone: #ffc83d; }
.plm-brand-entry-card[style*="--tone:4"] { --brand-tone: #2e82ff; }
.plm-brand-entry-card[style*="--tone:5"] { --brand-tone: #22c7ac; }
.plm-brand-entry-card[style*="--tone:6"] { --brand-tone: #8a55ff; }
.plm-brand-entry-card[style*="--tone:7"] { --brand-tone: #f36c21; }

.plm-brand-entry-card span {
  justify-self: start;
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--brand-tone), #101827 14%);
  background: color-mix(in srgb, var(--brand-tone), transparent 84%);
  font-size: 11px;
  font-weight: 950;
}

.plm-brand-entry-card strong,
.plm-brand-entry-card b,
.plm-brand-entry-card em,
.plm-brand-entry-card small {
  position: relative;
  z-index: 1;
  margin: 0;
  font-style: normal;
}

.plm-brand-entry-card strong {
  color: #101827;
  font-size: 22px;
  line-height: 1.1;
}

.plm-brand-entry-card b {
  color: #101827;
  font-size: 34px;
  line-height: 1;
}

.plm-brand-entry-card b small {
  margin-left: 5px;
  color: rgba(16, 24, 39, 0.42);
  font-size: 12px;
  font-weight: 850;
}

.plm-brand-entry-card em,
.plm-brand-entry-card small {
  color: rgba(16, 24, 39, 0.55);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.38;
}

.plm-brand-entry-card i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.plm-brand-entry-card i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--brand-tone);
}

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

.plm-status-card-grid article {
  display: grid;
  gap: 9px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 14%, var(--status-soft), transparent 34%),
    rgba(255, 255, 255, 0.5);
}

.plm-status-card-grid span,
.plm-status-card-grid em,
.plm-status-mini-grid span,
.plm-status-mini-grid em {
  color: var(--status-color);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.plm-status-card-grid strong {
  color: #101827;
  font-size: 42px;
  line-height: 1;
}

.plm-status-card-grid i,
.plm-status-mini-grid i,
.plm-task-flow-list i,
.plm-owner-grid i,
.plm-owner-roster i,
.plm-distribution-list i,
.plm-month-bars i,
.plm-project-flow i,
.plm-brand-board i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.08);
}

.plm-status-card-grid i::before,
.plm-status-mini-grid i::before,
.plm-distribution-list i::before,
.plm-project-flow i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--status-color);
}

.plm-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plm-two-col.is-wide {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.plm-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
}

.plm-support-grid > :first-child,
.plm-support-grid > :last-child {
  grid-row: span 2;
}

.plm-status-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.plm-status-mini-grid article {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 14px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--status-soft), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.44);
}

.plm-status-mini-grid b {
  color: #101827;
  font-size: 27px;
  line-height: 1;
}

.plm-distribution-list,
.plm-task-flow-list {
  display: grid;
  gap: 10px;
}

.plm-distribution-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 0.8fr) 48px;
  gap: 10px;
  align-items: center;
  min-height: 34px;
}

.plm-distribution-list span,
.plm-distribution-list b,
.plm-task-flow-list span,
.plm-task-flow-list b,
.plm-task-flow-list em,
.plm-owner-grid span,
.plm-owner-grid b,
.plm-owner-grid em,
.plm-owner-grid small,
.plm-owner-grid p,
.plm-month-bars span,
.plm-month-bars b,
.plm-month-bars em {
  min-width: 0;
  color: rgba(16, 24, 39, 0.66);
  font-size: 12px;
  font-style: normal;
  font-weight: 880;
  line-height: 1.35;
}

.plm-distribution-list span,
.plm-task-flow-list b,
.plm-owner-grid b {
  color: #101827;
}

.plm-distribution-list i {
  width: var(--w);
  background: rgba(16, 24, 39, 0.08);
}

.plm-distribution-list i::before {
  background: color-mix(in srgb, var(--dash-accent), #101827 10%);
}

.plm-distribution-list b,
.plm-task-flow-list em {
  text-align: right;
}

.plm-task-flow-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 84px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
}

.plm-task-flow-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: white;
  background: #101827;
  font-size: 10px;
  font-weight: 950;
}

.plm-task-flow-list div {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.plm-task-flow-list b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plm-task-flow-list i {
  background: linear-gradient(90deg, color-mix(in srgb, var(--dash-accent), white 18%) 0 var(--rate), rgba(16, 24, 39, 0.09) var(--rate));
}

.plm-task-flow-list i::before,
.plm-owner-grid i::before,
.plm-owner-roster i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: color-mix(in srgb, var(--dash-accent), #101827 8%);
}

.plm-owner-panel.is-roster {
  gap: 14px;
  padding: 16px;
}

.plm-owner-roster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.plm-owner-roster-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
  min-width: 0;
  min-height: 158px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 12%, rgba(29, 155, 240, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 28px rgba(77, 99, 143, 0.08);
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.plm-owner-roster-item:hover,
.plm-owner-roster-item.is-active {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--dash-accent), white 20%);
  background:
    radial-gradient(circle at 90% 12%, rgba(29, 155, 240, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.5));
  box-shadow: 0 18px 42px rgba(77, 99, 143, 0.14);
}

.plm-owner-rank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: white;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--dash-accent), white 6%), color-mix(in srgb, var(--dash-accent), #101827 30%));
  box-shadow: 0 10px 22px rgba(29, 155, 240, 0.22);
  font-size: 11px;
  font-weight: 950;
}

.plm-owner-main {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.plm-owner-main b,
.plm-owner-main em,
.plm-owner-roster dt,
.plm-owner-roster dd,
.plm-owner-roster p {
  min-width: 0;
  margin: 0;
  color: rgba(16, 24, 39, 0.58);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.32;
}

.plm-owner-main b {
  color: #101827;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 950;
}

.plm-owner-main em {
  overflow: hidden;
  color: rgba(16, 24, 39, 0.48);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plm-owner-roster dl {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  min-width: 0;
}

.plm-owner-roster dl div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px 7px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
}

.plm-owner-roster dt {
  color: rgba(16, 24, 39, 0.4);
  font-size: 10px;
}

.plm-owner-roster dd {
  color: #101827;
  font-size: 14px;
  font-weight: 950;
}

.plm-owner-roster p {
  grid-column: 1 / -1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(16, 24, 39, 0.56);
}

.plm-owner-roster i {
  grid-column: 1 / -1;
  height: 7px;
  background: rgba(16, 24, 39, 0.08);
}

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

.plm-owner-grid article {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
}

.plm-owner-grid header {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 3px 8px;
  align-items: center;
}

.plm-owner-grid header span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: white;
  background: color-mix(in srgb, var(--dash-accent), #101827 28%);
  font-size: 10px;
}

.plm-owner-grid em {
  overflow: hidden;
  color: rgba(16, 24, 39, 0.48);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plm-owner-grid article > div {
  display: grid;
  grid-template-columns: repeat(3, auto 1fr);
  gap: 5px 6px;
  align-items: end;
}

.plm-owner-grid strong {
  color: #101827;
  font-size: 23px;
  line-height: 1;
}

.plm-owner-grid small {
  color: rgba(16, 24, 39, 0.46);
  font-size: 10px;
}

.plm-owner-grid p {
  margin: 0;
  color: rgba(16, 24, 39, 0.55);
  font-size: 11px;
}

.plm-month-bars {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 190px;
}

.plm-month-bars article {
  display: grid;
  grid-template-rows: minmax(86px, 1fr) auto auto auto;
  gap: 6px;
  min-width: 0;
  text-align: center;
}

.plm-month-bars i {
  align-self: end;
  height: var(--total);
  min-height: 18px;
  border-radius: 10px 10px 4px 4px;
  background:
    linear-gradient(0deg, color-mix(in srgb, var(--dash-accent), white 5%) 0 var(--done), rgba(245, 159, 0, 0.5) var(--done) calc(var(--done) + var(--active)), rgba(16, 24, 39, 0.08) 0),
    rgba(16, 24, 39, 0.08);
}

.plm-month-bars span,
.plm-month-bars em {
  color: rgba(16, 24, 39, 0.48);
  font-size: 10px;
}

.plm-month-bars b {
  color: #101827;
  font-size: 13px;
}

.plm-project-flow {
  display: grid;
  gap: 12px;
}

.plm-project-flow article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(160px, 0.34fr);
  gap: 10px 16px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-left: 5px solid var(--status-color);
  border-radius: 20px;
  background:
    linear-gradient(90deg, var(--status-soft), rgba(255, 255, 255, 0.48) 34%),
    rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.plm-project-flow article > div {
  min-width: 0;
}

.plm-project-flow span {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
}

.plm-project-flow h3 {
  margin: 8px 0;
  color: #101827;
  font-size: 19px;
  line-height: 1.25;
}

.plm-project-flow p {
  margin: 0;
  color: rgba(16, 24, 39, 0.58);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.plm-project-flow b {
  justify-self: end;
}

.plm-project-flow em {
  grid-column: 1 / -1;
  color: rgba(16, 24, 39, 0.56);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.plm-brand-board {
  align-content: start;
}

.plm-brand-board article {
  display: grid;
  grid-template-columns: 92px minmax(120px, 1fr) minmax(220px, 1.2fr);
  gap: 12px;
  align-items: center;
}

.plm-brand-board b,
.plm-brand-board span {
  color: rgba(16, 24, 39, 0.72);
  font-size: 12px;
  font-weight: 950;
}

.plm-brand-board span {
  color: rgba(16, 24, 39, 0.5);
}

.plm-brand-board i {
  width: var(--w);
  min-width: 34%;
  background:
    linear-gradient(90deg, #0f9f6e 0 var(--active), #1d9bf0 var(--active) calc(var(--active) + var(--done)), #f59f00 calc(var(--active) + var(--done)) calc(var(--active) + var(--done) + var(--paused)), #ef476f 0);
}

.insight-table-card td strong,
.insight-table-card td small {
  display: block;
  max-width: 360px;
}

.insight-table-card td small {
  margin-top: 4px;
  color: rgba(16, 24, 39, 0.54);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.insight-data-table:not(.plm-project-table):not(.project-list-table) {
  table-layout: fixed;
}

.insight-data-table:not(.plm-project-table):not(.project-list-table) td {
  overflow-wrap: anywhere;
}

.insight-data-table:not(.plm-project-table):not(.project-list-table) th:nth-child(1),
.insight-data-table:not(.plm-project-table):not(.project-list-table) td:nth-child(1) {
  width: 54px;
}

.insight-data-table:not(.plm-project-table):not(.project-list-table) th:nth-child(2),
.insight-data-table:not(.plm-project-table):not(.project-list-table) td:nth-child(2) {
  width: 150px;
}

.insight-data-table:not(.plm-project-table):not(.project-list-table) th:nth-child(3),
.insight-data-table:not(.plm-project-table):not(.project-list-table) td:nth-child(3) {
  width: 32%;
}

.insight-data-table:not(.plm-project-table):not(.project-list-table) th:nth-child(4),
.insight-data-table:not(.plm-project-table):not(.project-list-table) td:nth-child(4) {
  width: 18%;
}

.insight-data-table:not(.plm-project-table):not(.project-list-table) th:nth-child(5),
.insight-data-table:not(.plm-project-table):not(.project-list-table) td:nth-child(5) {
  width: 25%;
}

.insight-data-table:not(.plm-project-table):not(.project-list-table) th:nth-child(6),
.insight-data-table:not(.plm-project-table):not(.project-list-table) td:nth-child(6) {
  width: 16%;
}

.plm-table-shell {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
}

.plm-list-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
}

.plm-list-toolbar span,
.plm-list-toolbar b,
.plm-list-toolbar button,
.plm-empty-state {
  margin: 0;
  color: rgba(16, 24, 39, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.plm-list-toolbar span {
  overflow: hidden;
  color: #101827;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plm-list-toolbar b em {
  color: var(--dash-accent);
  font-style: normal;
}

.plm-list-toolbar button {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: #101827;
  cursor: pointer;
}

.plm-table-shell.is-empty,
.plm-data-list.is-empty {
  display: none;
}

.plm-empty-state {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
}

.plm-project-table {
  min-width: 1120px;
}

.plm-project-table th:nth-child(1),
.plm-project-table td:nth-child(1) {
  width: 56px;
}

.plm-project-table th:nth-child(2),
.plm-project-table td:nth-child(2) {
  min-width: 260px;
}

.plm-project-table th:nth-child(3),
.plm-project-table td:nth-child(3) {
  min-width: 190px;
}

.plm-project-table th:nth-child(4),
.plm-project-table td:nth-child(4) {
  min-width: 300px;
}

.plm-project-table th:nth-child(5),
.plm-project-table td:nth-child(5) {
  min-width: 132px;
}

.plm-project-table th:nth-child(6),
.plm-project-table td:nth-child(6) {
  min-width: 122px;
}

.plm-project-table th:nth-child(7),
.plm-project-table td:nth-child(7) {
  min-width: 240px;
}

.plm-project-table td span,
.plm-project-table td strong,
.plm-project-table td small {
  max-width: 100%;
}

.plm-project-table td:nth-child(4) span,
.plm-project-table td:nth-child(7) {
  color: rgba(16, 24, 39, 0.66);
  font-weight: 850;
  line-height: 1.45;
}

.plm-project-table .project-status-badge + small {
  margin-top: 7px;
  color: rgba(16, 24, 39, 0.42);
  font-size: 10px;
}

.plm-data-list {
  display: none;
  gap: 12px;
  margin-top: 20px;
}

.plm-data-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-left: 5px solid var(--status-color);
  border-radius: 18px;
  background:
    linear-gradient(90deg, var(--status-soft), rgba(255, 255, 255, 0.48) 38%),
    rgba(255, 255, 255, 0.5);
}

.plm-data-list article div {
  min-width: 0;
}

.plm-data-list span {
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
}

.plm-data-list h3 {
  margin: 7px 0 0;
  color: #101827;
  font-size: 18px;
  line-height: 1.3;
}

.plm-data-list p,
.plm-data-list em,
.plm-data-list dl {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(16, 24, 39, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.5;
}

.plm-data-list em {
  color: rgba(16, 24, 39, 0.48);
}

.plm-data-list dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  color: rgba(16, 24, 39, 0.58);
}

.plm-data-list dl div {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
}

.plm-data-list dt,
.plm-data-list dd {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
}

.plm-data-list dt {
  color: rgba(16, 24, 39, 0.42);
}

.plm-data-list dd {
  color: #101827;
}

.project-list-page {
  min-height: 100vh;
}

.project-list-app {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(100vw - 48px, 1540px);
  margin: 24px auto 40px;
}

.project-list-topbar {
  position: sticky;
  top: 16px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  min-height: 58px;
  padding: 10px;
}

.project-list-topbar a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  color: rgba(16, 24, 39, 0.72);
  background: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.project-list-topbar a:first-child {
  margin-right: auto;
  color: white;
  background: #101827;
}

.project-list-main {
  display: grid;
  gap: 18px;
}

.project-list-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px;
}

.project-list-hero > div:first-child {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
}

.project-list-hero span,
.project-list-section-head span,
.project-list-tools label span {
  color: var(--dash-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.project-list-hero h1 {
  margin: 0;
  color: #101827;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.project-list-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(16, 24, 39, 0.62);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.65;
}

.project-list-hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.project-list-hero-kpis article {
  display: grid;
  gap: 8px;
  min-height: 144px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 16%, color-mix(in srgb, var(--dash-accent), white 72%), transparent 36%),
    rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.project-list-hero-kpis b {
  color: #101827;
  font-size: 40px;
  line-height: 1;
}

.project-list-hero-kpis em {
  color: rgba(16, 24, 39, 0.52);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.project-list-tools {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  padding: 16px;
}

.project-list-tools label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.project-list-tools input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  outline: none;
  color: #101827;
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 850;
}

.project-list-tools input:focus {
  border-color: color-mix(in srgb, var(--dash-accent), white 22%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dash-accent), transparent 82%);
}

.project-list-status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.project-list-status-tabs button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  color: rgba(16, 24, 39, 0.62);
  background: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.project-list-status-tabs button.is-active {
  color: white;
  background: #101827;
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.18);
}

.project-list-related {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
}

.project-list-section-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.project-list-section-head b {
  color: #101827;
  font-size: 15px;
  font-weight: 950;
}

.project-list-section-head b em {
  color: var(--dash-accent);
  font-style: normal;
}

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

.project-list-chip-grid a {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.44);
  text-decoration: none;
}

.project-list-chip-grid a:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--dash-accent), white 28%);
  box-shadow: 0 14px 34px rgba(77, 99, 143, 0.12);
}

.project-list-chip-grid strong {
  overflow: hidden;
  color: #101827;
  font-size: 14px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-list-chip-grid em {
  color: rgba(16, 24, 39, 0.5);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.project-list-table-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.project-list-table-shell {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
}

.project-list-table-shell.is-empty,
.project-list-cards.is-empty {
  display: none;
}

.project-list-table {
  min-width: 1360px;
  table-layout: auto;
}

.project-list-table th:nth-child(1),
.project-list-table td:nth-child(1) {
  width: 64px;
  min-width: 64px;
  text-align: center;
}

.project-list-table th:nth-child(2),
.project-list-table td:nth-child(2) {
  min-width: 260px;
}

.project-list-table th:nth-child(3),
.project-list-table td:nth-child(3) {
  min-width: 190px;
}

.project-list-table th:nth-child(4),
.project-list-table td:nth-child(4) {
  min-width: 170px;
}

.project-list-table th:nth-child(5),
.project-list-table td:nth-child(5) {
  min-width: 320px;
}

.project-list-table th:nth-child(6),
.project-list-table td:nth-child(6) {
  min-width: 120px;
}

.project-list-table th:nth-child(7),
.project-list-table td:nth-child(7) {
  min-width: 130px;
}

.project-list-table th:nth-child(8),
.project-list-table td:nth-child(8) {
  min-width: 240px;
}

.project-list-table td strong,
.project-list-table td span,
.project-list-table td small {
  max-width: 100%;
}

.project-list-table td strong,
.project-list-table td small {
  display: block;
}

.project-list-table td small {
  margin-top: 4px;
  color: rgba(16, 24, 39, 0.54);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.36;
}

.project-list-table td {
  overflow-wrap: normal;
  word-break: normal;
}

.project-list-table td:first-child b,
.project-list-table td:nth-child(2) strong {
  white-space: nowrap;
}

.project-list-table td:nth-child(2) small,
.project-list-table td:nth-child(5) span,
.project-list-table td:nth-child(8) {
  overflow-wrap: anywhere;
}

.project-list-table td span,
.project-list-table td:nth-child(8) {
  color: rgba(16, 24, 39, 0.66);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.project-list-cards {
  display: none;
  gap: 12px;
}

.project-list-cards article {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-left: 5px solid var(--status-color);
  border-radius: 18px;
  background:
    linear-gradient(90deg, var(--status-soft), rgba(255, 255, 255, 0.5) 38%),
    rgba(255, 255, 255, 0.52);
}

.project-list-cards header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.project-list-cards header span {
  overflow: hidden;
  color: var(--dash-accent);
  font-size: 11px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-list-cards h3 {
  margin: 0;
  color: #101827;
  font-size: 18px;
  line-height: 1.32;
}

.project-list-cards p,
.project-list-cards em,
.project-list-cards dl {
  margin: 0;
  color: rgba(16, 24, 39, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.5;
}

.project-list-cards dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.project-list-cards dl div {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.44);
}

.project-list-cards dt,
.project-list-cards dd {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
}

.project-list-cards dt {
  color: rgba(16, 24, 39, 0.42);
}

.project-list-cards dd {
  color: #101827;
}

.project-list-empty {
  margin: 0;
  padding: 18px;
  border-radius: 16px;
  color: rgba(16, 24, 39, 0.58);
  background: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .dashboard-app {
    grid-template-columns: 1fr;
    width: min(100vw - 36px, 980px);
    margin: 24px auto;
  }

  .dash-sidebar {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .dash-sidebar nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dash-content,
  .insight-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .insight-grid.has-pm-action {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .product-search-panel {
    grid-template-columns: 1fr;
  }

  .product-search-results,
  .product-search-detail {
    position: static;
    width: auto;
  }

  .product-search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-newness,
  .detail-trend,
  .detail-revenue,
  .channel-flow-shell,
  .tier-radar-shell {
    grid-template-columns: 1fr;
  }

  .latest-source-grid,
  .brand-intel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-intel-toolbar {
    grid-template-columns: 1fr;
  }

  .impact-stream,
  .tier-board,
  .competitor-table,
  .inventory-grid,
  .health-gauges,
  .risk-matrix,
  .brand-cards {
    grid-template-columns: 1fr;
  }

  .channel-river-head {
    display: none;
  }

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

  .river-signal {
    grid-template-columns: 1fr;
  }

  .pipeline-lanes article {
    grid-template-columns: 92px minmax(160px, 0.8fr) minmax(180px, 1fr);
  }

  .pipeline-lanes article em {
    grid-column: 2 / -1;
  }

  .dash-inspector,
  .insight-side,
  .insight-chart-card,
  .insight-card,
  .pm-action-panel,
  .insight-table-card {
    grid-area: auto;
    position: relative;
    top: auto;
  }

  .pm-action-panel-top,
  .pm-action-queue {
    grid-template-columns: 1fr;
  }

  .pm-action-evidence,
  .pm-action-panel .pm-action-board,
  .pm-action-queue-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plm-two-col,
  .plm-two-col.is-wide {
    grid-template-columns: 1fr;
  }

  .plm-status-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plm-owner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plm-owner-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plm-brand-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plm-support-grid {
    grid-template-columns: 1fr;
  }

  .plm-support-grid > :first-child,
  .plm-support-grid > :last-child {
    grid-row: auto;
  }

  .project-list-hero,
  .project-list-tools {
    grid-template-columns: 1fr;
  }

  .project-list-hero-kpis,
  .project-list-chip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-list-status-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .dashboard-app {
    width: min(100vw - 22px, 680px);
    gap: 14px;
    margin: 12px auto 24px;
  }

  .dash-main,
  .insight-main,
  .dash-topbar,
  .dash-hero,
  .insight-hero,
  .dash-metrics,
  .insight-grid,
  .insight-chart-card,
  .insight-card,
  .pm-action-panel,
  .insight-table-card,
  .insight-side,
  .inspector-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .dash-sidebar,
  .dash-topbar,
  .dash-hero,
  .insight-hero,
  .data-window,
  .metric-tile,
  .inspector-card,
  .insight-chart-card,
  .insight-card,
  .insight-table-card {
    border-radius: 22px;
  }

  .dash-sidebar nav {
    grid-template-columns: 1fr 1fr;
  }

  .dash-topbar {
    grid-template-columns: 1fr;
  }

  .dash-topbar a,
  .dash-search {
    width: 100%;
    min-width: 0;
  }

  .dash-hero,
  .insight-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px;
  }

  .dash-hero h1,
  .insight-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-orbit {
    display: none;
  }

  .dash-metrics,
  .window-grid,
  .window-kpis {
    grid-template-columns: 1fr;
  }

  .product-search-results,
  .product-search-detail dl {
    grid-template-columns: 1fr;
  }

  .window-list li,
  .hot-list a {
    grid-template-columns: 1fr;
  }

  .visual-preview {
    min-height: 170px;
  }

  .preview-product-strip,
  .visual-brandmix,
  .visual-gauge,
  .visual-riskmap {
    grid-template-columns: 1fr;
  }

  .visual-timeline span,
  .visual-competitor span,
  .visual-pipeline span,
  .preview-rank-bars span,
  .detail-rank-bars span,
  .matrix-compare span,
  .price-band span,
  .pipeline-lanes article,
  .revenue-funnel span {
    grid-template-columns: 1fr;
  }

  .watch-lanes {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 12px;
  }

  .watch-lanes::before {
    display: none;
  }

  .watch-lanes article {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: auto;
    transform: none;
  }

  .brand-radar-detail {
    grid-template-columns: 1fr;
  }

  .brand-radar-preview span {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brand-radar-preview em {
    text-align: left;
  }

  .visual-product-intel {
    min-height: auto;
  }

  .product-intel-preview,
  .latest-source-grid,
  .brand-intel-grid {
    grid-template-columns: 1fr;
  }

  .product-intel-preview span {
    grid-template-columns: 1fr;
  }

  .latest-data-note {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .latest-data-note > b {
    justify-self: start;
    max-width: 100%;
  }

  .latest-data-note h3 {
    font-size: clamp(23px, 8vw, 32px);
  }

  .latest-source-grid article,
  .brand-intel-card {
    min-height: auto;
  }

  .brand-intel-card {
    grid-template-rows: auto;
  }

  .brand-intel-card header {
    align-items: start;
  }

  .brand-intel-card header em {
    max-width: calc(100% - 46px);
    white-space: normal;
  }

  .watch-heat {
    grid-template-columns: repeat(3, 1fr);
  }

  .channel-flow-map {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 12px;
  }

  .channel-flow-map::before,
  .channel-flow-map::after {
    display: none;
  }

  .channel-node,
  .channel-node.is-core {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: auto;
    transform: none;
  }

  .channel-node:hover {
    transform: translateY(-3px);
  }

  .channel-heat-grid,
  .tier-summary {
    grid-template-columns: 1fr;
  }

  .tier-board {
    grid-template-columns: 1fr;
  }

  .tier-card.tier-leader {
    grid-row: auto;
  }

  .plm-source-note {
    grid-template-columns: 1fr;
  }

  .plm-source-note b {
    font-size: 18px;
  }

  .plm-status-card-grid,
  .plm-status-mini-grid,
  .plm-owner-grid,
  .plm-distribution-list article,
  .plm-task-flow-list article {
    grid-template-columns: 1fr;
  }

  .plm-status-card-grid,
  .plm-brand-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plm-owner-roster {
    grid-template-columns: 1fr;
  }

  .plm-owner-roster-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px 10px;
    padding: 11px;
    min-height: 148px;
  }

  .plm-owner-roster dl,
  .plm-owner-roster p,
  .plm-owner-roster i {
    grid-column: 1 / -1;
  }

  .plm-owner-roster dl {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .plm-owner-roster p {
    white-space: normal;
  }

  .plm-status-card-grid article {
    min-height: 124px;
    padding: 14px;
  }

  .plm-status-board.is-top-status {
    padding: 14px;
    border-radius: 18px;
  }

  .plm-status-board.is-top-status .plm-status-card-grid article {
    min-height: 124px;
    padding: 14px;
  }

  .plm-status-board.is-top-status .plm-status-card-grid strong {
    font-size: 40px;
  }

  .plm-status-board,
  .plm-mini-panel,
  .plm-flow-panel,
  .plm-owner-panel,
  .plm-month-panel,
  .plm-brand-board,
  .plm-brand-entry-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .plm-workbench {
    grid-template-columns: 1fr;
  }

  .plm-workbench-kpis {
    grid-template-columns: 1fr;
  }

  .plm-brand-entry-card {
    min-height: 126px;
    padding: 13px;
    gap: 8px;
  }

  .plm-brand-entry-card strong {
    font-size: 18px;
  }

  .plm-brand-entry-card b {
    font-size: 27px;
  }

  .plm-brand-entry-card em,
  .plm-brand-entry-card small {
    font-size: 11px;
  }

  .plm-task-flow-list span {
    place-items: center;
  }

  .plm-task-flow-list b {
    white-space: normal;
  }

  .plm-owner-grid article > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .plm-month-bars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 240px;
  }

  .plm-project-flow article,
  .plm-data-list article {
    grid-template-columns: 1fr;
  }

  .plm-list-toolbar {
    grid-template-columns: 1fr;
  }

  .plm-list-toolbar button {
    justify-self: start;
  }

  .plm-project-flow b {
    justify-self: start;
  }

  .plm-brand-board article {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .plm-brand-board article span {
    grid-column: 1 / -1;
  }

  .plm-table-shell {
    display: none;
  }

  .plm-data-list {
    display: grid;
  }

  .plm-data-list dl {
    grid-template-columns: 1fr;
  }

  .project-list-app {
    width: min(100vw - 22px, 680px);
    gap: 14px;
    margin: 12px auto 24px;
  }

  .project-list-topbar {
    position: relative;
    top: auto;
    justify-content: flex-start;
  }

  .project-list-topbar a:first-child {
    width: 100%;
    margin-right: 0;
  }

  .project-list-hero,
  .project-list-tools,
  .project-list-related,
  .project-list-table-card {
    padding: 16px;
    border-radius: 20px;
  }

  .project-list-hero h1 {
    font-size: clamp(34px, 13vw, 48px);
    line-height: 1.05;
  }

  .project-list-hero-kpis,
  .project-list-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-list-hero-kpis article {
    min-height: 118px;
    padding: 13px;
  }

  .project-list-hero-kpis b {
    font-size: 30px;
  }

  .project-list-section-head {
    display: grid;
    gap: 5px;
  }

  .project-list-table-shell {
    display: none;
  }

  .project-list-cards {
    display: grid;
  }

  .project-list-cards header {
    align-items: flex-start;
  }

  .project-list-cards header span {
    white-space: normal;
  }

  .project-list-cards dl {
    grid-template-columns: 1fr;
  }

  .pm-action-panel-shell {
    padding: 20px;
  }

  .pm-action-evidence,
  .pm-action-panel .pm-action-board,
  .pm-action-queue-list {
    grid-template-columns: 1fr;
  }

  .pm-action-panel .pm-action-board article {
    min-height: auto;
  }

  .pm-action-lead h3 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .position-map,
  .buzz-bubbles {
    min-height: 300px;
  }

  .position-map i {
    width: 96px;
    height: 96px;
  }

  .buzz-bubbles article {
    width: calc(112px * var(--s));
    height: calc(112px * var(--s));
    padding: 14px;
  }

  .buzz-bubbles h3 {
    font-size: 14px;
  }

  .bar-chart {
    min-height: 220px;
    gap: 10px;
  }

  .insight-table-card {
    overflow-x: auto;
  }

  .insight-table-card table {
    min-width: 980px;
  }
}

.efficiency-dock {
  --dock-x: 50%;
  --dock-y: 50%;
  position: fixed;
  top: 50%;
  right: clamp(18px, 3vw, 54px);
  z-index: 90;
  width: 86px;
  color: #f7fbff;
  transform: translateY(-50%);
  transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.efficiency-dock::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--dock-x) var(--dock-y), rgba(83, 215, 255, 0.28), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(186, 255, 98, 0.16), transparent 28%),
    rgba(3, 7, 12, 0.18);
  filter: blur(10px);
  opacity: 0.82;
  pointer-events: none;
}

.efficiency-dock.is-expanded,
.efficiency-dock:hover,
.efficiency-dock:focus-within {
  transform: translateY(-50%) translateX(-6px);
}

.dock-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  min-height: 230px;
  padding: 16px 10px;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.42);
  border-radius: 999px;
  color: #f7fbff;
  background:
    linear-gradient(150deg, rgba(7, 13, 18, 0.82), rgba(7, 13, 18, 0.48)),
    rgba(247, 251, 255, 0.12);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(22px);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.dock-toggle::before,
.dock-toggle::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dock-toggle::before {
  inset: -70% -20%;
  background: conic-gradient(from 90deg, transparent, rgba(83, 215, 255, 0.9), rgba(186, 255, 98, 0.72), transparent 42%);
  animation: dockOrbit 5.5s linear infinite;
  opacity: 0.56;
}

.dock-toggle::after {
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(2, 7, 11, 0.72), rgba(2, 7, 11, 0.92));
}

.dock-toggle span,
.dock-toggle b,
.dock-toggle i {
  position: relative;
  z-index: 1;
}

.dock-toggle span {
  writing-mode: vertical-rl;
  color: rgba(247, 251, 255, 0.92);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.dock-toggle b {
  margin-top: 12px;
  color: #53d7ff;
  font-size: 10px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.dock-toggle i {
  width: 38px;
  height: 38px;
  margin-top: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #f7fbff 0 12%, transparent 13%),
    conic-gradient(from 0deg, #53d7ff, #baff62, #ff6b2c, #53d7ff);
  box-shadow: 0 0 26px rgba(83, 215, 255, 0.42);
  animation: dockPulse 2.4s ease-in-out infinite;
}

.efficiency-dock:hover .dock-toggle,
.efficiency-dock.is-expanded .dock-toggle,
.efficiency-dock:focus-within .dock-toggle {
  border-color: rgba(83, 215, 255, 0.72);
  box-shadow:
    0 28px 92px rgba(83, 215, 255, 0.18),
    0 0 0 1px rgba(186, 255, 98, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateX(-4px) scale(0.98);
}

.dock-panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  display: grid;
  gap: 14px;
  width: 276px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.36);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--dock-x) var(--dock-y), rgba(83, 215, 255, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(7, 13, 18, 0.9), rgba(7, 13, 18, 0.62)),
    rgba(247, 251, 255, 0.1);
  box-shadow:
    0 30px 88px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translate(18px, -50%) scale(0.92);
  transform-origin: right center;
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.efficiency-dock.is-expanded .dock-panel,
.efficiency-dock:hover .dock-panel,
.efficiency-dock:focus-within .dock-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.dock-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.2) 46%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: dockScan 4.2s ease-in-out infinite;
  pointer-events: none;
}

.dock-head,
.dock-links,
.dock-preview {
  position: relative;
  z-index: 1;
}

.dock-head {
  display: grid;
  gap: 4px;
}

.dock-head span,
.dock-preview span {
  color: #baff62;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.dock-head strong {
  color: #f7fbff;
  font-size: 24px;
  line-height: 1.05;
}

.dock-head em {
  color: rgba(247, 251, 255, 0.58);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.dock-links {
  display: grid;
  gap: 8px;
}

.dock-tool {
  --tool-x: 50%;
  --tool-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  min-height: 66px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.16);
  border-radius: 16px;
  color: #f7fbff;
  text-decoration: none;
  background:
    radial-gradient(circle at var(--tool-x) var(--tool-y), color-mix(in srgb, var(--tool-accent), transparent 70%), transparent 34%),
    rgba(247, 251, 255, 0.075);
  transform: translateX(0);
  transition:
    transform 220ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.dock-tool::before {
  content: "";
  position: absolute;
  inset: auto 12px 9px 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tool-accent), transparent);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 260ms ease;
}

.dock-tool::after {
  content: attr(data-status);
  position: absolute;
  top: 9px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border: 1px solid rgba(247, 251, 255, 0.18);
  border-radius: 999px;
  color: rgba(247, 251, 255, 0.74);
  background: rgba(247, 251, 255, 0.08);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.dock-tool.is-running::after {
  color: #07120a;
  border-color: color-mix(in srgb, var(--tool-accent), white 36%);
  background: var(--tool-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--tool-accent), transparent 62%);
}

.dock-tool span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #03070c;
  background: var(--tool-accent);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 24px color-mix(in srgb, var(--tool-accent), transparent 56%);
}

.dock-tool b {
  padding-right: 54px;
  color: #f7fbff;
  font-size: 15px;
  line-height: 1.12;
}

.dock-tool em {
  color: rgba(247, 251, 255, 0.52);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dock-tool:hover,
.dock-tool:focus-visible {
  border-color: color-mix(in srgb, var(--tool-accent), white 12%);
  background:
    radial-gradient(circle at var(--tool-x) var(--tool-y), color-mix(in srgb, var(--tool-accent), transparent 48%), transparent 42%),
    rgba(247, 251, 255, 0.12);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--tool-accent), transparent 78%);
  transform: translateX(-10px) perspective(700px) rotateY(-7deg);
}

.dock-tool:hover::before,
.dock-tool:focus-visible::before {
  transform: scaleX(1);
}

.dock-preview {
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(247, 251, 255, 0.14);
  border-radius: 16px;
  background: rgba(247, 251, 255, 0.07);
}

.dock-preview p {
  margin: 6px 0 0;
  color: rgba(247, 251, 255, 0.72);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.45;
}

.tool-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.tool-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tool-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 7, 12, 0.62);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.tool-modal-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(560px, calc(100vw - 36px));
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.34);
  border-radius: 28px;
  color: #f7fbff;
  background:
    radial-gradient(circle at 18% 0%, rgba(83, 215, 255, 0.28), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(186, 255, 98, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(7, 13, 18, 0.96), rgba(7, 13, 18, 0.78));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  transform: translateY(24px) scale(0.96);
  transition: transform 360ms cubic-bezier(0.19, 1, 0.22, 1);
}

.tool-modal.is-open .tool-modal-card {
  transform: none;
}

.tool-modal-card > span {
  color: #53d7ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.tool-modal-card h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}

.tool-modal-card p {
  margin: 0;
  color: rgba(247, 251, 255, 0.68);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.55;
}

.tool-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 251, 255, 0.22);
  border-radius: 999px;
  color: #f7fbff;
  background: rgba(247, 251, 255, 0.1);
  cursor: pointer;
}

.tool-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.tool-modal-grid article {
  display: grid;
  gap: 10px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(247, 251, 255, 0.16);
  border-radius: 18px;
  background: rgba(247, 251, 255, 0.08);
  animation: toolCardIn 520ms cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: var(--delay);
}

.tool-modal-grid span {
  color: #baff62;
  font-size: 11px;
  font-weight: 950;
}

.tool-modal-grid b {
  color: #f7fbff;
  font-size: 17px;
  line-height: 1.18;
}

.tool-modal-grid i {
  align-self: end;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #53d7ff, #baff62, transparent);
}

@keyframes dockOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dockPulse {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.12);
    filter: saturate(1.35);
  }
}

@keyframes dockScan {
  0%,
  48% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes toolCardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .efficiency-dock {
    top: auto;
    right: 14px;
    bottom: 16px;
    width: min(336px, calc(100vw - 28px));
    transform: none;
  }

  .dock-toggle {
    width: 100%;
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-items: start;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .dock-toggle span,
  .dock-toggle b {
    writing-mode: horizontal-tb;
  }

  .dock-toggle i {
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .dock-panel {
    right: 0;
    bottom: 74px;
    top: auto;
    width: 100%;
    transform: translateY(18px) scale(0.96);
    transform-origin: bottom right;
  }

  .efficiency-dock.is-expanded .dock-panel,
  .efficiency-dock:hover .dock-panel,
  .efficiency-dock:focus-within .dock-panel {
    transform: none;
  }

  .tool-modal-grid {
    grid-template-columns: 1fr;
  }
}
