/* ────────────────────────────────────────────────────────────
   HERO — DARK
──────────────────────────────────────────────────────────── */
.mu-hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 110px 0 80px;
}
.muh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 65% 46%,
      rgba(200, 16, 46, 0.17) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 28% 35% at 3% 85%,
      rgba(200, 16, 46, 0.07) 0%,
      transparent 50%
    );
}
.muh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.muh-line {
  position: absolute;
  top: 0;
  right: 22%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 16, 46, 0.26),
    transparent
  );
}
.muh-line2 {
  position: absolute;
  top: 0;
  right: 40%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
}

.muh-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left */
.muh-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: #ff8090;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.muh-label-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.8);
    opacity: 0.5;
  }
}

.muh-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.muh-title em {
  color: var(--red);
  font-style: italic;
  display: block;
}
.muh-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 32px;
}
.muh-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.muh-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.muh-meta-item i {
  color: var(--red);
}
.muh-meta-item strong {
  color: var(--white);
}

/* Right: live market card */
.muh-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}
.muh-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.muh-card-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.muh-card-live {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}
.muh-card-live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

/* Index rows */
.muh-indices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.muh-idx {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: background 0.2s;
}
.muh-idx:hover {
  background: rgba(255, 255, 255, 0.08);
}
.muh-idx-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.muh-idx-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.muh-idx-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}
.muh-idx-right {
  margin-left: auto;
  text-align: right;
}
.muh-idx-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.muh-idx-chg {
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}
.chg-up {
  color: #4ade80;
}
.chg-dn {
  color: #f87171;
}

/* mini sparkline bars */
.muh-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin-left: 10px;
  flex-shrink: 0;
}
.muh-spark-bar {
  width: 4px;
  border-radius: 2px 2px 0 0;
  animation: growBar 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  transform-origin: bottom;
}
@keyframes growBar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.muh-spark-bar.up {
  background: #4ade80;
}
.muh-spark-bar.dn {
  background: #f87171;
}
.muh-spark-bar.neu {
  background: rgba(255, 255, 255, 0.2);
}

/* sentiment gauge */
.muh-sentiment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-radius: 8px;
}
.muh-sent-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.muh-sent-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.muh-sent-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.muh-sent-tag.bullish {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}
.muh-sent-tag.bearish {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
}
.muh-sent-tag.neutral {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

/* Floating cards */
.muh-float {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: muFloat 4s ease-in-out infinite;
}
.muh-float.f1 {
  top: -22px;
  right: -22px;
  animation-delay: 0s;
}
.muh-float.f2 {
  bottom: -18px;
  left: -18px;
  animation-delay: 1.5s;
}
@keyframes muFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.muh-float-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.muh-float-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.muh-float-val span {
  color: var(--red);
  font-size: 12px;
}
.muh-float-sub {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 3px;
}

/* ────────────────────────────────────────────────────────────
   LIVE TICKER — RED
──────────────────────────────────────────────────────────── */
.mu-ticker {
  background: var(--black);
  border-top: 1px solid rgba(200, 16, 46, 0.2);
  border-bottom: 1px solid rgba(200, 16, 46, 0.2);
  padding: 0;
  overflow: hidden;
}
.mu-ticker-inner {
  display: flex;
  align-items: stretch;
}
.mu-ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--red);
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
}
.mu-ticker-label-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}
.mu-ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.mu-ticker-scroll {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: muTicker 35s linear infinite;
}
.mu-ticker-scroll:hover {
  animation-play-state: paused;
}
@keyframes muTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mu-tick-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  white-space: nowrap;
}
.mu-tick-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.mu-tick-price {
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
}
.mu-tick-chg {
  font-size: 11px;
  font-weight: 700;
}

/* ────────────────────────────────────────────────────────────
   MARKET OVERVIEW — WHITE
──────────────────────────────────────────────────────────── */
.mu-overview {
  background: var(--white);
}
.mu-overview .section-title {
  color: var(--black);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.ov-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.ov-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.ov-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ov-card:hover::before {
  transform: scaleX(1);
}
.ov-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ov-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
}
.ov-card-chg {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.ov-up {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.ov-down {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.ov-neu {
  background: rgba(234, 179, 8, 0.1);
  color: #b45309;
}
.ov-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.ov-val span {
  color: var(--red);
}
.ov-sub {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 14px;
}

/* mini chart in overview card */
.ov-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
}
.ov-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  animation: growBar 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
  transform-origin: bottom;
}
.ov-bar.pos {
  background: rgba(34, 197, 94, 0.5);
}
.ov-bar.neg {
  background: rgba(239, 68, 68, 0.5);
}

/* ────────────────────────────────────────────────────────────
   FEATURED ANALYSIS — GRAY-50
──────────────────────────────────────────────────────────── */
.mu-featured {
  background: var(--gray-50);
}
.mu-featured .section-title {
  color: var(--black);
}

.featured-analysis-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

/* Main feature card */
.fa-main {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.fa-main:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.fa-main-top {
  background: linear-gradient(135deg, var(--black), var(--black-2));
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.fa-main-top::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}
/* bar chart in featured card */
.fa-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  margin-bottom: 20px;
}
.fa-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  animation: growBar 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  transform-origin: bottom;
}
.fa-bar.pos {
  background: rgba(74, 222, 128, 0.6);
}
.fa-bar.neg {
  background: rgba(248, 113, 113, 0.6);
}
.fa-bar.hi {
  background: var(--red);
}
.fa-bar:nth-child(1) {
  animation-delay: 0.04s;
}
.fa-bar:nth-child(2) {
  animation-delay: 0.08s;
}
.fa-bar:nth-child(3) {
  animation-delay: 0.12s;
}
.fa-bar:nth-child(4) {
  animation-delay: 0.16s;
}
.fa-bar:nth-child(5) {
  animation-delay: 0.2s;
}
.fa-bar:nth-child(6) {
  animation-delay: 0.24s;
}
.fa-bar:nth-child(7) {
  animation-delay: 0.28s;
}
.fa-bar:nth-child(8) {
  animation-delay: 0.32s;
}
.fa-bar:nth-child(9) {
  animation-delay: 0.36s;
}
.fa-bar:nth-child(10) {
  animation-delay: 0.4s;
}
.fa-bar:nth-child(11) {
  animation-delay: 0.44s;
}
.fa-bar:nth-child(12) {
  animation-delay: 0.48s;
}

.fa-chart-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 6px;
}
.fa-main-body {
  padding: 28px;
}
.fa-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
  margin-bottom: 14px;
}
.fa-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
}
.fa-excerpt {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
}
.fa-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.fa-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fa-meta-item i {
  color: var(--red);
}
.fa-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: 16px;
}
.fa-read-link:hover {
  background: var(--red-dark);
  color: white;
  transform: translateY(-2px);
}

/* Side analysis cards */
.fa-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fa-side-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.fa-side-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.fa-side-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.fa-side-card:hover::before {
  transform: scaleY(1);
}
.fa-side-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.fa-side-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 6px;
}
.fa-side-meta {
  font-size: 12px;
  color: var(--gray-500);
}
.fa-side-chg {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

/* ────────────────────────────────────────────────────────────
   ASSET CLASS PERFORMANCE — DARK
──────────────────────────────────────────────────────────── */
.mu-performance {
  background: var(--black);
}
.mu-performance .section-title {
  color: var(--white);
}
.mu-performance .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.mu-performance .section-label {
  color: var(--red);
}

.perf-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 16px;
}
.perf-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.perf-table thead {
  background: rgba(200, 16, 46, 0.15);
}
.perf-table thead th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.perf-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}
.perf-table tbody tr:last-child {
  border-bottom: none;
}
.perf-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.perf-table tbody td {
  padding: 14px 20px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  vertical-align: middle;
}
.perf-table tbody td:first-child {
  font-weight: 700;
  color: var(--white);
}
.pt-up {
  color: #4ade80;
  font-weight: 700;
}
.pt-dn {
  color: #f87171;
  font-weight: 700;
}
.pt-neu {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.pt-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(200, 16, 46, 0.15);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
}
.pt-bar-wrap {
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.pt-bar {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-bar.animated {
  width: var(--w);
}
.pt-bar.pos {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}
.pt-bar.neg {
  background: linear-gradient(90deg, #dc2626, #f87171);
}

/* ────────────────────────────────────────────────────────────
   MACRO INDICATORS — GRAY-50
──────────────────────────────────────────────────────────── */
.mu-macro {
  background: var(--gray-50);
}
.mu-macro .section-title {
  color: var(--black);
}

.macro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.macro-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.macro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.macro-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.macro-card:hover::before {
  transform: scaleX(1);
}
.macro-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.macro-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  transition: var(--transition);
}
.macro-card:hover .macro-icon {
  background: var(--red);
  color: white;
}
.macro-trend {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
}
.macro-val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.macro-val span {
  color: var(--red);
}
.macro-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.macro-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}
.macro-bar-wrap {
  margin-top: 14px;
}
.macro-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 5px;
}
.macro-track {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.macro-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.macro-fill.animated {
  width: var(--w);
}

/* ────────────────────────────────────────────────────────────
   EXPERT COMMENTARY — DARK
──────────────────────────────────────────────────────────── */
.mu-commentary {
  background: var(--black);
}
.mu-commentary .section-title {
  color: var(--white);
}
.mu-commentary .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.mu-commentary .section-label {
  color: var(--red);
}

.commentary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.comment-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 28px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.comment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.comment-card:hover {
  background: rgba(200, 16, 46, 0.07);
  border-color: rgba(200, 16, 46, 0.25);
  transform: translateY(-3px);
}
.comment-card:hover::before {
  transform: scaleX(1);
}
.comment-topic {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(200, 16, 46, 0.12);
  color: var(--red);
  margin-bottom: 16px;
}
.comment-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(200, 16, 46, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.comment-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.comment-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.comment-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ────────────────────────────────────────────────────────────
   NEWSLETTER STRIP — RED
──────────────────────────────────────────────────────────── */
.mu-newsletter {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 56px 0;
}
.mu-nl-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.mu-nl-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.mu-nl-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.75;
}
.mu-nl-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.mu-nl-input {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-size: 14px;
  color: white;
  font-family: var(--font-body);
  width: 240px;
  outline: none;
  transition: var(--transition);
}
.mu-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.mu-nl-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

/* ────────────────────────────────────────────────────────────
   LATEST UPDATES GRID — WHITE
──────────────────────────────────────────────────────────── */
.mu-latest {
  background: var(--white);
}
.mu-latest .section-title {
  color: var(--black);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.lu-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.lu-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.lu-card-top {
  height: 140px;
  background: linear-gradient(135deg, var(--black), var(--black-2));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.lu-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 60% 40%,
    rgba(200, 16, 46, 0.2),
    transparent 70%
  );
}
.lu-chart-mini {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.lu-chart-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  animation: growBar 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  transform-origin: bottom;
}
.lu-chart-bar.up {
  background: rgba(74, 222, 128, 0.7);
}
.lu-chart-bar.dn {
  background: rgba(248, 113, 113, 0.7);
}
.lu-chart-bar.neu {
  background: rgba(255, 255, 255, 0.2);
}

.lu-card-body {
  padding: 20px;
}
.lu-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
  margin-bottom: 10px;
}
.lu-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 8px;
}
.lu-excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.lu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.lu-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}
.lu-date {
  font-size: 12px;
  color: var(--gray-500);
}
.lu-read-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  margin-top: 10px;
  transition: gap var(--transition);
}
.lu-card:hover .lu-read-link {
  gap: 8px;
}

/* ────────────────────────────────────────────────────────────
   RELATED — GRAY-50
──────────────────────────────────────────────────────────── */
.mu-related {
  background: var(--gray-50);
}
.mu-related .section-title {
  color: var(--black);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rel-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.rel-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.rel-card:hover::before {
  transform: scaleX(1);
}
.rel-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rc-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.rel-card:hover .rc-icon {
  background: var(--red);
  color: white;
}
.rel-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.rel-card p {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.65;
}
.rc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  opacity: 0;
  transition: opacity var(--transition);
}
.rel-card:hover .rc-link {
  opacity: 1;
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .muh-content {
    gap: 48px;
  }
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-analysis-layout {
    grid-template-columns: 1fr;
  }
  .macro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .commentary-grid {
    grid-template-columns: 1fr 1fr;
  }
  .latest-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .mu-hero {
    padding: 80px 0 60px;
  }
  .muh-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .muh-visual {
    display: none;
  }
  .mu-nl-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mu-nl-form {
    flex-direction: column;
  }
  .mu-nl-input {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .muh-title {
    font-size: 2.2rem;
  }
  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .macro-grid {
    grid-template-columns: 1fr;
  }
  .commentary-grid {
    grid-template-columns: 1fr;
  }
  .latest-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mu-ticker-label {
    display: none;
  }
}
