:root {
  --dmi-bg: #031b24;
  --dmi-bg-deep: #011015;
  --dmi-panel: rgba(7, 35, 45, 0.86);
  --dmi-panel-strong: rgba(8, 53, 47, 0.92);
  --dmi-border: rgba(102, 219, 181, 0.26);
  --dmi-border-blue: rgba(89, 163, 222, 0.28);
  --dmi-text: #f6fbf8;
  --dmi-muted: #a9bbb6;
  --dmi-green: #43dd8d;
  --dmi-green-deep: #0d6c49;
  --dmi-red: #ff5e67;
  --dmi-blue: #6fb9ff;
  --dmi-gold: #f3bf3f;
  --dmi-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --dmi-radius: 24px;
  --dmi-heading: "Space Grotesk", "Manrope", sans-serif;
  --dmi-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--dmi-text);
  background:
    radial-gradient(circle at 8% 18%, rgba(32, 222, 126, 0.18), transparent 22rem),
    radial-gradient(circle at 90% 7%, rgba(32, 132, 255, 0.16), transparent 28rem),
    linear-gradient(145deg, #02141b 0%, #042537 48%, #00100f 100%);
  font-family: var(--dmi-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 37%, rgba(29, 233, 134, 0.12) 37.2%, transparent 52%),
    repeating-linear-gradient(168deg, rgba(114, 255, 204, 0.05) 0 1px, transparent 1px 18px);
  opacity: 0.78;
  pointer-events: none;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dmi-page {
  position: relative;
  width: min(1840px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px clamp(18px, 3vw, 44px) 20px;
  overflow: hidden;
}

.dmi-page::after {
  content: "";
  position: absolute;
  top: 160px;
  left: 8%;
  width: 760px;
  height: 260px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 15% 50%, rgba(244, 190, 55, 0.34), transparent 42%),
    repeating-radial-gradient(ellipse at center, rgba(57, 255, 159, 0.18) 0 2px, transparent 2px 12px);
  filter: blur(1px);
  opacity: 0.62;
  transform: rotate(-7deg);
}

.dmi-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 340px) 1fr minmax(240px, 360px);
  align-items: center;
  gap: 24px;
  padding: 0 18px 18px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 28px 28px;
  background: rgba(2, 20, 29, 0.42);
  backdrop-filter: blur(18px);
}

.dmi-brand {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.dmi-brand img {
  display: block;
  width: min(270px, 38vw);
  height: auto;
}

.dmi-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 34px);
}

.dmi-nav-links a,
.dmi-panel-header a,
.dmi-footer a {
  text-decoration: none;
}

.dmi-nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 800;
  transition: color 160ms ease, transform 160ms ease;
}

.dmi-nav-links a:hover,
.dmi-panel-header a:hover,
.dmi-footer a:hover {
  color: var(--dmi-green);
}

.dmi-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(158, 206, 230, 0.34);
  border-radius: 16px;
  background: rgba(2, 20, 31, 0.76);
}

.dmi-search input {
  width: 100%;
  min-width: 0;
  color: #e8f3f0;
  border: 0;
  outline: 0;
  background: transparent;
  font: 600 15px var(--dmi-body);
}

.dmi-search input::placeholder {
  color: rgba(222, 234, 232, 0.6);
}

.dmi-search button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--dmi-text);
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.dmi-search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.dmi-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.85fr) repeat(3, minmax(210px, 1fr));
  gap: clamp(14px, 1.55vw, 22px);
  align-items: stretch;
  margin-top: 16px;
}

.dmi-hero-copy {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2vw, 24px);
}

.dmi-eyebrow {
  margin: 0 0 14px;
  color: rgba(237, 249, 243, 0.92);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 800;
}

.dmi-hero h1 {
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  font-family: var(--dmi-heading);
  font-size: clamp(46px, 3.65vw, 96px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.42);
}

.dmi-hero h1 span {
  display: block;
  color: var(--dmi-green);
}

.dmi-subtitle {
  max-width: 560px;
  margin: 22px 0 20px;
  color: #e7f4ef;
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 800;
  line-height: 1.35;
}

.dmi-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 20px;
  color: #eefdf6;
  border: 1px solid rgba(90, 240, 163, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(32, 161, 91, 0.72), rgba(15, 92, 64, 0.76));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dmi-date-pill span {
  font-size: 12px;
  color: var(--dmi-green);
}

.dmi-updated {
  max-width: 440px;
  margin: 12px 0 0;
  color: rgba(226, 241, 237, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.dmi-card,
.dmi-panel,
.dmi-cta {
  border: 1px solid var(--dmi-border);
  border-radius: var(--dmi-radius);
  background: linear-gradient(150deg, rgba(7, 41, 53, 0.94), rgba(3, 25, 29, 0.84));
  box-shadow: var(--dmi-shadow);
}

.dmi-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(20px, 1.75vw, 30px);
}

.dmi-sentiment-card {
  background:
    radial-gradient(circle at 28% 20%, rgba(56, 231, 139, 0.22), transparent 42%),
    linear-gradient(150deg, rgba(9, 82, 57, 0.94), rgba(3, 27, 31, 0.92));
}

.dmi-index-card {
  border-color: var(--dmi-border-blue);
  background:
    radial-gradient(circle at 80% 12%, rgba(57, 152, 255, 0.18), transparent 42%),
    linear-gradient(150deg, rgba(7, 40, 64, 0.94), rgba(1, 17, 25, 0.92));
}

.dmi-pulse-card {
  border-color: rgba(243, 191, 63, 0.56);
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 197, 57, 0.26), transparent 44%),
    linear-gradient(150deg, rgba(122, 77, 14, 0.94), rgba(45, 30, 8, 0.94));
}

.dmi-card-top {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 18px);
  min-width: 0;
}

.dmi-card-top > div {
  min-width: 0;
}

.dmi-card-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dmi-card h2 {
  margin: 0;
  color: var(--dmi-green);
  font-family: var(--dmi-heading);
  font-size: clamp(34px, 2.85vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.dmi-sentiment-card h2 {
  font-size: clamp(32px, 2.35vw, 46px);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.dmi-index-card h2 {
  font-size: clamp(34px, 2.45vw, 46px);
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.dmi-pulse-card h2 {
  font-size: clamp(42px, 4vw, 70px);
}

.dmi-index-card h2,
.dmi-pulse-card h2 {
  color: #fff;
}

.dmi-card p {
  margin: 18px 0;
  color: rgba(239, 249, 246, 0.9);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.dmi-index-move {
  margin: 8px 0 0 !important;
  color: var(--dmi-green) !important;
  font-size: clamp(24px, 2vw, 34px) !important;
  font-weight: 900 !important;
}

.dmi-index-points {
  margin: 2px 0 0 !important;
  color: var(--dmi-green) !important;
  font-size: clamp(18px, 1.35vw, 26px) !important;
  font-weight: 800 !important;
}

.dmi-icon {
  display: grid;
  place-items: center;
  width: clamp(58px, 4.5vw, 82px);
  height: clamp(58px, 4.5vw, 82px);
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

.dmi-icon svg {
  width: clamp(30px, 2.55vw, 42px);
  height: clamp(30px, 2.55vw, 42px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.dmi-flame-icon svg {
  fill: currentColor;
  stroke: none;
}

.dmi-bars-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding-bottom: clamp(18px, 1.7vw, 25px);
}

.dmi-bars-icon i {
  display: block;
  width: 9px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #ffd861, #e89e29);
}

.dmi-bars-icon i:nth-child(1) { height: 18px; }
.dmi-bars-icon i:nth-child(2) { height: 31px; }
.dmi-bars-icon i:nth-child(3) { height: 44px; }

.dmi-icon-green {
  color: var(--dmi-green);
  background: rgba(67, 221, 141, 0.08);
}

.dmi-icon-blue {
  color: var(--dmi-gold);
  background: rgba(111, 185, 255, 0.08);
}

.dmi-icon-gold {
  color: #ffe471;
  background: rgba(243, 191, 63, 0.1);
}

.dmi-sparkline svg {
  display: block;
  width: 100%;
  height: 78px;
}

.dmi-sparkline polyline {
  fill: none;
  stroke: var(--dmi-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.dmi-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 78px;
  padding-top: 22px;
}

.dmi-mini-bars span {
  display: block;
  width: 14%;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--dmi-gold), rgba(111, 185, 255, 0.35));
}

.dmi-mini-bars span:nth-child(1) { height: 28%; }
.dmi-mini-bars span:nth-child(2) { height: 52%; }
.dmi-mini-bars span:nth-child(3) { height: 38%; }
.dmi-mini-bars span:nth-child(4) { height: 70%; }
.dmi-mini-bars span:nth-child(5) { height: 48%; }

.dmi-pulse-meter {
  height: 20px;
  overflow: hidden;
  border: 1px solid rgba(253, 227, 113, 0.4);
  border-radius: 999px;
  background: rgba(3, 36, 33, 0.72);
}

.dmi-pulse-meter span {
  display: block;
  width: var(--pulse-score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f2a02c, #fff18c);
  box-shadow: 0 0 24px rgba(255, 226, 104, 0.32);
}

.dmi-fear-label {
  margin: 4px 0 0 !important;
  color: #ffe471 !important;
  font-size: clamp(18px, 1.45vw, 28px) !important;
  font-weight: 900 !important;
  text-align: center;
  text-transform: uppercase;
}

.dmi-fear-desc {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-size: clamp(15px, 1vw, 20px) !important;
  font-weight: 700 !important;
  text-align: center;
}

.dmi-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.86fr 1fr 1.03fr;
  gap: clamp(16px, 2vw, 22px);
  margin-top: 22px;
}

.dmi-panel {
  min-height: 338px;
  padding: clamp(18px, 2vw, 26px);
}

.dmi-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.dmi-panel-header h2 {
  margin: 0;
  color: #fff;
  font-family: var(--dmi-heading);
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.dmi-panel-header a {
  color: var(--dmi-green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dmi-watch-list,
.dmi-sector-list,
.dmi-signal-list,
.dmi-outlook-list {
  display: grid;
  gap: 14px;
}

.dmi-watch-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.dmi-watch-item:nth-child(3) {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(255, 255, 255, 0.045));
}

.dmi-watch-item > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #06251e;
  border-radius: 50%;
  background: linear-gradient(145deg, #79f79e, #41c979);
  font-family: var(--dmi-heading);
  font-size: 26px;
  font-weight: 800;
}

.dmi-watch-item h3,
.dmi-headline-card a,
.dmi-signal-row strong {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.dmi-watch-item p,
.dmi-signal-row small,
.dmi-outlook-list span,
.dmi-method p {
  margin: 4px 0 0;
  color: rgba(238, 249, 244, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.dmi-watch-item i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--dmi-green);
  border-radius: 14px;
  background: rgba(60, 233, 139, 0.13);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.dmi-sector-row {
  display: grid;
  grid-template-columns: minmax(116px, 0.8fr) minmax(110px, 1.1fr) minmax(92px, 0.8fr);
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 800;
}

.dmi-sector-bar {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dmi-sector-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.dmi-sector-bar i.positive,
.dmi-sector-row strong.positive,
.dmi-signal-row .green,
.dmi-signal-row .buy {
  color: var(--dmi-green);
}

.dmi-sector-bar i.positive {
  background: linear-gradient(90deg, #2eb96e, #4fe79b);
}

.dmi-sector-bar i.negative,
.dmi-sector-row strong.negative,
.dmi-signal-row .red,
.dmi-signal-row .sell {
  color: var(--dmi-red);
}

.dmi-sector-bar i.negative {
  background: linear-gradient(90deg, #f34a55, #ff7b82);
}

.dmi-sector-bar i.neutral {
  background: linear-gradient(90deg, #627b86, #92aeb8);
}

.dmi-sector-row strong {
  color: var(--dmi-muted);
  font-size: 13px;
  text-align: right;
}

.dmi-empty {
  margin: 0;
  color: rgba(226, 241, 237, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.dmi-headline-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.dmi-headline-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: #ebffd7;
  border: 1px solid rgba(91, 235, 124, 0.4);
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(87, 226, 95, 0.72), rgba(6, 88, 57, 0.9));
  font-family: var(--dmi-heading);
  font-size: 22px;
  font-weight: 800;
}

.dmi-headline-card a {
  display: inline-block;
  text-decoration: none;
  line-height: 1.28;
}

.dmi-headline-card p {
  margin: 8px 0 0;
  color: var(--dmi-muted);
  font-size: 13px;
  font-weight: 700;
}

.dmi-headline-reason {
  margin: 18px 0;
  color: rgba(237, 249, 244, 0.88);
  line-height: 1.55;
}

.dmi-impact-pairs {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dmi-impact-pairs div {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) 1fr;
  gap: 12px;
}

.dmi-impact-pairs span {
  color: var(--dmi-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dmi-impact-pairs div:nth-child(2) span {
  color: var(--dmi-red);
}

.dmi-impact-pairs strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.dmi-signal-row,
.dmi-outlook-list a,
.dmi-chip-row a {
  text-decoration: none;
}

.dmi-signal-row {
  display: grid;
  grid-template-columns: 74px 1fr minmax(86px, auto);
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 160ms ease, transform 160ms ease;
}

.dmi-signal-row:hover {
  transform: translateY(-2px);
  border-color: rgba(67, 221, 141, 0.34);
}

.dmi-signal-badge {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0 12px;
  color: #fff !important;
  border-radius: 12px;
  background: linear-gradient(145deg, #2fce76, #126c49);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.dmi-signal-badge.buy {
  background: linear-gradient(145deg, #2fce76, #126c49);
}

.dmi-signal-badge.red,
.dmi-signal-badge.sell {
  background: linear-gradient(145deg, #ff656e, #8e2630);
}

.dmi-signal-badge.white,
.dmi-signal-badge.hold {
  background: linear-gradient(145deg, #b8912e, #6d5213);
}

.dmi-signal-row em {
  display: block;
  color: var(--dmi-green);
  font-style: normal;
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.dmi-signal-row em.hold {
  color: var(--dmi-green);
}

.dmi-signal-row > span:last-child small {
  display: block;
  text-align: right;
}

.dmi-cta {
  display: grid;
  grid-template-columns: 110px minmax(230px, 0.9fr) minmax(280px, 1.2fr) minmax(240px, 0.9fr);
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  margin-top: 18px;
  padding: clamp(18px, 2vw, 26px);
  background:
    radial-gradient(circle at 86% 28%, rgba(65, 225, 126, 0.18), transparent 28%),
    linear-gradient(110deg, rgba(11, 105, 70, 0.92), rgba(5, 46, 44, 0.94));
}

.dmi-cta-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: #fff0a8;
  border: 2px solid rgba(120, 239, 129, 0.45);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.dmi-cta h2 {
  margin: 0 0 8px;
  color: var(--dmi-green);
  font-family: var(--dmi-heading);
  font-size: clamp(24px, 2vw, 34px);
  text-transform: uppercase;
}

.dmi-cta p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
}

.dmi-subscribe {
  display: flex;
  height: 68px;
  overflow: hidden;
  border: 1px solid rgba(158, 236, 214, 0.34);
  border-radius: 16px;
  background: rgba(2, 35, 40, 0.8);
}

.dmi-subscribe input {
  width: 100%;
  min-width: 0;
  padding: 0 24px;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
  font: 700 16px var(--dmi-body);
}

.dmi-subscribe button {
  min-width: 210px;
  color: #fff;
  border: 0;
  background: linear-gradient(145deg, #54e694, #21a763);
  font: 900 16px var(--dmi-body);
  text-transform: uppercase;
}

.dmi-cta-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dmi-cta-points li {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.dmi-cta-points li span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  color: var(--dmi-green);
  border: 1px solid rgba(79, 231, 155, 0.28);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.dmi-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 22px);
  margin-top: 22px;
}

.dmi-outlook-list a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.dmi-outlook-list strong {
  color: var(--dmi-green);
  font-size: 16px;
}

.dmi-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.dmi-chip-row a {
  padding: 9px 12px;
  color: #dcfff2;
  border: 1px solid rgba(80, 228, 152, 0.26);
  border-radius: 999px;
  background: rgba(67, 221, 141, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.dmi-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 26px 0 0;
  color: rgba(223, 233, 230, 0.58);
  text-align: center;
}

.dmi-footer p {
  margin: 0;
}

.dmi-footer div {
  display: flex;
  gap: 16px;
}

.dmi-footer a {
  color: rgba(223, 233, 230, 0.74);
}

@media (max-width: 1420px) {
  .dmi-hero {
    grid-template-columns: minmax(360px, 1fr) minmax(260px, 0.78fr) minmax(260px, 0.78fr);
  }

  .dmi-hero-copy {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .dmi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dmi-cta {
    grid-template-columns: 90px 1fr;
  }

  .dmi-subscribe,
  .dmi-cta-points {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1700px) {
  .dmi-hero h1 {
    font-size: clamp(64px, 4.75vw, 108px);
  }
}

@media (max-width: 1024px) {
  .dmi-page {
    padding-top: 18px;
  }

  .dmi-nav {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .dmi-nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .dmi-search {
    width: min(360px, 40vw);
  }

  .dmi-hero {
    grid-template-columns: 1fr;
  }

  .dmi-card {
    min-height: auto;
  }

  .dmi-lower-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dmi-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .dmi-nav {
    top: 0;
    grid-template-columns: 1fr;
    padding: 16px 12px;
  }

  .dmi-brand img {
    width: 210px;
  }

  .dmi-search {
    width: 100%;
  }

  .dmi-hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .dmi-grid,
  .dmi-lower-grid {
    grid-template-columns: 1fr;
  }

  .dmi-watch-item,
  .dmi-signal-row,
  .dmi-outlook-list a,
  .dmi-impact-pairs div,
  .dmi-sector-row {
    grid-template-columns: 1fr;
  }

  .dmi-watch-item > span,
  .dmi-watch-item i {
    width: 44px;
    height: 44px;
  }

  .dmi-sector-row strong {
    text-align: left;
  }

  .dmi-cta {
    grid-template-columns: 1fr;
  }

  .dmi-subscribe {
    height: auto;
    flex-direction: column;
  }

  .dmi-subscribe input,
  .dmi-subscribe button {
    min-height: 58px;
  }

  .dmi-subscribe button {
    min-width: 0;
  }

  .dmi-cta-points {
    grid-template-columns: 1fr;
  }

  .dmi-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .dmi-card,
  .dmi-panel,
  .dmi-cta {
    animation: dmi-rise 520ms ease both;
  }

  .dmi-card:nth-child(2),
  .dmi-grid .dmi-panel:nth-child(2) {
    animation-delay: 80ms;
  }

  .dmi-card:nth-child(3),
  .dmi-grid .dmi-panel:nth-child(3) {
    animation-delay: 150ms;
  }

  .dmi-card:nth-child(4),
  .dmi-grid .dmi-panel:nth-child(4) {
    animation-delay: 220ms;
  }

  @keyframes dmi-rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
