/* ========================================================
   DijiWOW — Light Theme
   White + Black + Logo Red #E31E24
   ======================================================== */

:root {
  --dw-red: #E31E24;
  --dw-red-light: #FF4249;
  --dw-red-dark: #C41219;
  --dw-red-glow: rgba(227,30,36,0.2);
  --dw-black: #111118;
  --dw-dark: #1A1A24;
  --dw-grey: #6B6B78;
  --dw-grey-light: #9B9BAA;
  --dw-border: rgba(0,0,0,0.07);
  --dw-border-strong: rgba(0,0,0,0.12);
  --dw-bg: #FFFFFF;
  --dw-bg-soft: #F6F6F9;
  --dw-bg-card: #FFFFFF;
  --dw-panel: rgba(255,255,255,0.8);
  --dw-radius: 16px;
  --dw-shadow: 0 2px 20px rgba(0,0,0,0.04);
  --dw-shadow-lg: 0 12px 40px rgba(0,0,0,0.06);
}

/* ===================== BASE CSS VAR OVERRIDES ===================== */
:root {
  --bg-page: #FFFFFF !important;
  --bg-panel: #FFFFFF !important;
  --bg-panel-alt: #F6F6F9 !important;
  --bg-hover: #F0F0F4 !important;
  --border-soft: rgba(0,0,0,0.06) !important;
  --border-strong: rgba(0,0,0,0.1) !important;
  --text-primary: #111118 !important;
  --text-dim: rgba(0,0,0,0.55) !important;
  --text-muted: rgba(0,0,0,0.35) !important;
  --accent: #E31E24 !important;
  --shadow-card: 0 8px 30px rgba(0,0,0,0.06) !important;
}

/* ===================== GLOBAL OVERRIDES ===================== */
html { overflow-x: hidden; }
body, body.story-theme {
  background: var(--dw-bg) !important;
  background-image: none !important;
  color: var(--dw-dark) !important;
  overflow-x: hidden;
}
body.story-theme::before,
body.story-theme::after { display: none !important; }

::selection { background: rgba(227,30,36,0.12); color: var(--dw-black); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f0f4; }
::-webkit-scrollbar-thumb { background: var(--dw-red); border-radius: 4px; }

img { border-radius: var(--dw-radius) !important; }

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 3vw, 2.5rem);
}

.dw-main {
  width: 100%;
}

.dw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 3vw, 2.5rem);
}

/* ===================== TAGS & HEADINGS ===================== */
.dw-tag {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dw-red);
  background: rgba(227,30,36,0.06);
  border: 1px solid rgba(227,30,36,0.12);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.dw-section-head { margin-bottom: 3rem; }
.dw-section-head h2 {
  font-family: var(--font-sans-head, "PP Neue Machina", system-ui);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dw-black);
  line-height: 1.2;
  margin-top: 0.5rem;
}

/* ===================== BUTTONS ===================== */
.dw-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans-head, system-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.dw-btn--primary {
  background: var(--dw-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(227,30,36,0.2);
}
.dw-btn--primary:hover {
  background: var(--dw-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227,30,36,0.25);
}
.dw-btn--primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -70%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%{left:-70%} 100%{left:170%} }

.dw-btn--ghost {
  background: transparent;
  color: var(--dw-dark);
  border: 1.5px solid var(--dw-border-strong);
}
.dw-btn--ghost:hover {
  border-color: var(--dw-red);
  color: var(--dw-red);
}

.dw-btn--lg { padding: 0.85rem 2rem; font-size: 0.88rem; }

/* ===================== HEADER ===================== */
.site-header { display: none !important; }

.dw-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--dw-border);
}

.dw-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.5vw, 2rem);
  height: 60px;
}

/* logo */
.dw-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.dw-header__logo img {
  height: 40px;
  width: auto;
  border-radius: 0 !important;
}

/* center nav */
.dw-header__nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 auto;
}
.dw-header__nav-logo { display: none; }

.dw-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans-body, system-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dw-grey);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}
.dw-header__link:hover {
  color: var(--dw-black);
  background: var(--dw-bg-soft);
}
.dw-header__link--active {
  color: var(--dw-black);
  font-weight: 600;
}

/* mega menu */
.dw-header__mega {
  position: relative;
}
.dw-header__link--drop svg {
  transition: transform 0.25s;
}
.dw-header__mega:hover .dw-header__link--drop svg {
  transform: rotate(180deg);
}

.dw-header__mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border: 1px solid var(--dw-border);
  border-radius: 16px;
  padding: 0;
  width: 580px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  z-index: 100;
  overflow: hidden;
}
.dw-header__mega:hover .dw-header__mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dw-header__mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0.5rem;
}

.dw-header__mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
.dw-header__mega-item:hover {
  background: var(--dw-bg-soft);
}

.dw-header__mega-icon {
  font-size: 1.3rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dw-bg-soft);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.dw-header__mega-item:hover .dw-header__mega-icon {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.dw-header__mega-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dw-black);
  margin-bottom: 0.1rem;
  transition: color 0.2s;
}
.dw-header__mega-item:hover strong {
  color: var(--dw-red);
}

.dw-header__mega-item span {
  font-size: 0.65rem;
  color: var(--dw-grey-light);
  line-height: 1.3;
}

.dw-header__mega-footer {
  padding: 0.6rem 1rem;
  background: var(--dw-bg-soft);
  border-top: 1px solid var(--dw-border);
  text-align: center;
}
.dw-header__mega-footer a {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dw-red);
  text-decoration: none;
  transition: color 0.2s;
}
.dw-header__mega-footer a:hover {
  color: var(--dw-red-dark);
}

/* old dropdown compat */
.dw-header__dropdown { position: relative; }
.dw-header__dropdown.is-open .dw-header__link--drop svg { transform: rotate(180deg); }
.dw-header__dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0; visibility: hidden;
  background: #fff; border: 1px solid var(--dw-border);
  border-radius: 14px; padding: 0.5rem; min-width: 200px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transition: all 0.25s cubic-bezier(.16,1,.3,1); z-index: 100;
}
.dw-header__dropdown.is-open .dw-header__dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dw-header__dropdown-menu a { display: block; padding: 0.55rem 0.9rem; font-size: 0.8rem; font-weight: 500; color: var(--dw-dark); text-decoration: none; border-radius: 8px; transition: all 0.15s; }
.dw-header__dropdown-menu a:hover { background: var(--dw-bg-soft); color: var(--dw-red); }

/* right side */
.dw-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.dw-header__clock {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--dw-grey-light);
  letter-spacing: 0.04em;
  min-width: 52px;
  text-align: right;
}

.dw-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans-body, system-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--dw-red);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.dw-header__cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -70%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  animation: shimmer 4s ease-in-out infinite;
}
.dw-header__cta:hover {
  background: var(--dw-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(227,30,36,0.25);
}
.dw-header__cta-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: pulse 2s ease-in-out infinite;
}
.dw-header__cta svg {
  opacity: 0;
  transform: translate(-2px, 2px);
  transition: all 0.2s;
  width: 12px; height: 12px;
}
.dw-header__cta:hover svg {
  opacity: 1;
  transform: translate(0, 0);
}

/* burger */
.dw-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.dw-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dw-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.dw-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.dw-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.dw-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE NAV ---- */
@media (max-width: 900px) {
  .dw-header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0.3rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.06);
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    margin: 0;
  }
  .dw-header__nav.is-open { right: 0; }

  .dw-header__link {
    width: 100%;
    font-size: 0.92rem;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
  }

  .dw-header__dropdown { width: 100%; }
  .dw-header__dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; padding: 0 0 0 0.8rem; min-width: auto; display: none;
  }
  .dw-header__dropdown.is-open .dw-header__dropdown-menu { display: block; }

  /* mega menu mobile */
  .dw-header__mega { width: 100%; }
  .dw-header__mega-panel {
    position: static; transform: none; opacity: 1; visibility: visible;
    width: 100%; box-shadow: none; border: none; border-radius: 0;
    display: none; padding: 0;
  }
  .dw-header__mega.is-open .dw-header__mega-panel { display: block; }
  .dw-header__mega-grid { grid-template-columns: 1fr; padding: 0.3rem 0 0.3rem 0.5rem; gap: 0; }
  .dw-header__mega-item { padding: 0.5rem 0.6rem; }
  .dw-header__mega-icon { width: 28px; height: 28px; font-size: 1rem; }
  .dw-header__mega-footer { display: none; }

  .dw-header__burger { display: flex; order: 3; margin-left: auto; }
  .dw-header__right { display: none; }
  .dw-header__clock { display: none; }
  .dw-header__logo { order: 1; }
  .dw-header__nav { order: 2; }

  .dw-header__nav-logo {
    display: block;
    padding: 0 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--dw-border);
  }
  .dw-header__nav-logo img {
    height: 32px; width: auto; border-radius: 0 !important;
  }
}

/* hide old stuff */
.status-block { display: none !important; }

/* panel overrides for light */
.panel-header {
  background: var(--dw-bg-soft) !important;
  border-bottom: 1px solid var(--dw-border) !important;
  color: var(--dw-grey) !important;
}
.panel-header span { color: var(--dw-grey) !important; }
.panel-body { background: #fff !important; color: var(--dw-dark) !important; }
.panel-body h2, .panel-body h3 { color: var(--dw-black) !important; }
.panel-body p { color: var(--dw-grey) !important; }
.panel { background: #fff !important; border: 1px solid var(--dw-border) !important; box-shadow: var(--dw-shadow) !important; }

/* ===================== HERO ===================== */
.dw-main {
  margin: 0;
  padding: 0;
}

.dw-hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 2.5rem 0 0;
  background: var(--dw-bg);
}

/* particles canvas */
.dw-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* animated orbs - light version */
.dw-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.dw-hero__orb { position: absolute; border-radius: 50%; filter: blur(120px); }
.dw-hero__orb--1 {
  width: 600px; height: 600px;
  background: rgba(227,30,36,0.06);
  top: -15%; left: -10%;
  animation: orbFloat1 18s ease-in-out infinite alternate;
}
.dw-hero__orb--2 {
  width: 500px; height: 500px;
  background: rgba(227,30,36,0.04);
  bottom: -10%; right: -5%;
  animation: orbFloat2 22s ease-in-out infinite alternate;
}
.dw-hero__orb--3 {
  width: 350px; height: 350px;
  background: rgba(0,0,0,0.015);
  top: 40%; left: 50%;
  animation: orbFloat3 15s ease-in-out infinite alternate;
}
@keyframes orbFloat1 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(80px,60px) scale(1.15)} }
@keyframes orbFloat2 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-60px,-40px) scale(1.1)} }
@keyframes orbFloat3 { 0%{transform:translate(-50%,0) scale(1)} 100%{transform:translate(-50%,-30px) scale(1.2)} }

/* grid lines */
.dw-hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, black 20%, transparent 75%);
}

/* layout */
.dw-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 3vw, 2.5rem);
}

.dw-hero__left { max-width: 540px; }
.dw-hero__content { position: relative; z-index: 2; max-width: 780px; }

.dw-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dw-grey);
  background: var(--dw-bg-soft);
  border: 1px solid var(--dw-border);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.dw-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dw-red);
  animation: pulse 2s ease-in-out infinite;
}

.dw-hero__title {
  font-family: var(--font-sans-head, "PP Neue Machina", system-ui);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dw-black);
  margin-bottom: 1.2rem;
}

.dw-hero__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--dw-grey);
  margin-bottom: 2rem;
}

.dw-hero__cta {
  display: flex; gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* stats pill */
.dw-hero__stats-row {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--dw-bg-soft);
  border: 1px solid var(--dw-border);
  border-radius: 999px;
  padding: 0.65rem 2rem;
}
.dw-hero__stat-item { display: flex; align-items: baseline; gap: 0.1rem; }
.dw-hero__stat-item strong {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.3rem; font-weight: 700;
  color: var(--dw-black);
}
.dw-hero__stat-item span { font-size: 0.85rem; font-weight: 700; color: var(--dw-red); }
.dw-hero__stat-item small {
  font-size: 0.65rem; color: var(--dw-grey-light);
  text-transform: uppercase; letter-spacing: 0.06em; margin-left: 0.35rem;
}
.dw-hero__stat-divider { width: 1px; height: 18px; background: var(--dw-border-strong); }

/* floating cards - light version */
.dw-float { position: absolute; z-index: 1; pointer-events: none; opacity: 0; animation: floatFadeIn 1s ease forwards; }
.dw-float--1 { top: 18%; left: 5%;  animation-delay: 0.5s; animation-name: floatFadeIn, floatBob1; animation-duration: 1s, 8s; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
.dw-float--2 { top: 28%; right: 4%; animation-delay: 0.8s; animation-name: floatFadeIn, floatBob2; animation-duration: 1s, 10s; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
.dw-float--3 { bottom: 28%; left: 3%; animation-delay: 1.1s; animation-name: floatFadeIn, floatBob3; animation-duration: 1s, 9s; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
.dw-float--4 { top: 14%; right: 11%; animation-delay: 1.4s; animation-name: floatFadeIn, floatBob1; animation-duration: 1s, 11s; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
.dw-float--5 { bottom: 33%; right: 3%; animation-delay: 1.7s; animation-name: floatFadeIn, floatBob2; animation-duration: 1s, 7s; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
.dw-float--6 { top: 52%; left: 2%;  animation-delay: 2s; animation-name: floatFadeIn, floatBob3; animation-duration: 1s, 12s; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }

@keyframes floatFadeIn { 0%{opacity:0;transform:translateY(15px) scale(.9)} 100%{opacity:1;transform:translateY(0) scale(1)} }
@keyframes floatBob1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatBob2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatBob3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }

.dw-float__card {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--dw-border);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.66rem; color: var(--dw-grey);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  white-space: nowrap;
}
.dw-float__card strong { color: var(--dw-black); font-weight: 600; font-size: 0.72rem; }
.dw-float__up { color: #16A34A !important; }
.dw-float__card--code { background: rgba(227,30,36,0.03); border-color: rgba(227,30,36,0.1); }
.dw-float__card--code code { color: var(--dw-red); font-size: 0.62rem; }
.dw-float__dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dw-float__dot--green { background: #16A34A; box-shadow: 0 0 4px rgba(22,163,74,0.3); }
.dw-float__dot--red { background: var(--dw-red); box-shadow: 0 0 4px var(--dw-red-glow); }

@media (max-width:1100px) { .dw-float { display: none; } }

/* service band */
.dw-hero__band {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--dw-black);
  margin-top: auto;
}
.dw-hero__band-track {
  display: flex;
  white-space: nowrap;
  animation: bandScroll 35s linear infinite;
}
@keyframes bandScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.dw-hero__band-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans-head, system-ui);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
  flex-shrink: 0;
}
.dw-hero__band-item:hover {
  color: #fff;
  background: rgba(227,30,36,0.1);
}
.dw-hero__band-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--dw-red);
  flex-shrink: 0;
  opacity: 0.6;
}
.dw-hero__band-item:hover .dw-hero__band-dot {
  opacity: 1;
  box-shadow: 0 0 8px var(--dw-red-glow);
}
.dw-hero__band-item svg {
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: all 0.25s;
  color: var(--dw-red);
}
.dw-hero__band-item:hover svg {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- dashboard mockup --- */
.dw-hero__right {
  perspective: 900px;
}
.dw-dashboard {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--dw-bg-soft);
  border: 1px solid var(--dw-border);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s ease;
}
.dw-dashboard:hover {
  transform: rotateY(0) rotateX(0);
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}
.dw-dashboard__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.dw-dashboard__row--3 {
  grid-template-columns: repeat(3, 1fr);
}
.dw-dashboard__card {
  background: var(--dw-bg);
  border: 1px solid var(--dw-border);
  border-radius: 12px;
  padding: 1.1rem;
  transition: all 0.3s;
}
.dw-dashboard__card:hover {
  box-shadow: var(--dw-shadow-lg);
  transform: translateY(-2px);
}
.dw-dashboard__card--accent {
  border-color: rgba(227,30,36,0.1);
  background: linear-gradient(135deg, rgba(227,30,36,0.02), rgba(227,30,36,0.05));
}
.dw-dashboard__card-label {
  font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--dw-grey-light); margin-bottom: 0.4rem;
}
.dw-dashboard__card-value {
  display: flex; align-items: center; gap: 0.35rem;
}
.dw-dashboard__card-value strong {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.5rem; font-weight: 700; color: var(--dw-black);
}
.dw-dashboard__card-sub {
  font-size: 0.6rem; color: var(--dw-grey-light); margin-top: 0.2rem;
}

.dw-dashboard__chart {
  background: var(--dw-bg);
  border: 1px solid var(--dw-border);
  border-radius: 12px;
  padding: 1.1rem;
  transition: all 0.3s;
}
.dw-dashboard__chart:hover { box-shadow: var(--dw-shadow-lg); }
.dw-dashboard__chart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.8rem; font-size: 0.7rem; font-weight: 600; color: var(--dw-dark);
}
.dw-dashboard__chart-badge {
  font-size: 0.55rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: #16A34A;
  background: rgba(22,163,74,0.08);
  padding: 0.15rem 0.45rem; border-radius: 999px;
  display: flex; align-items: center; gap: 0.3rem;
}
.dw-dashboard__chart-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #16A34A; animation: pulse 2s ease-in-out infinite;
}
.dw-dashboard__chart-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 75px;
}
.dw-dashboard__bar {
  flex: 1; background: var(--dw-bg-soft);
  border-radius: 3px; min-height: 4px;
  transition: background 0.3s;
}
.dw-dashboard__bar--active { background: rgba(227,30,36,0.15); }
.dw-dashboard__bar--current {
  background: var(--dw-red);
  position: relative;
}
.dw-dashboard__bar--current::after {
  content: ''; position: absolute; top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px; background: var(--dw-red);
  border-radius: 50%; box-shadow: 0 0 6px var(--dw-red-glow);
}
.dw-dashboard__chart-months {
  display: flex; justify-content: space-between;
  margin-top: 0.4rem; font-size: 0.5rem;
  color: var(--dw-grey-light); text-transform: uppercase;
}

.dw-dashboard__mini {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--dw-bg);
  border: 1px solid var(--dw-border);
  border-radius: 10px; padding: 0.7rem;
  transition: all 0.3s;
}
.dw-dashboard__mini:hover { box-shadow: var(--dw-shadow); transform: translateY(-2px); }
.dw-dashboard__mini-icon { font-size: 1.2rem; line-height: 1; }
.dw-dashboard__mini-val {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1rem; font-weight: 700; color: var(--dw-black); line-height: 1.1;
}
.dw-dashboard__mini-label {
  font-size: 0.58rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--dw-grey-light);
}

/* scroll hint */
.dw-scroll-hint {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.dw-scroll-hint__line {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--dw-red), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.4)} }

/* ===================== MARQUEE ===================== */
.dw-marquee {
  padding: 1.2rem 0;
  border-top: 1px solid var(--dw-border);
  border-bottom: 1px solid var(--dw-border);
  overflow: hidden;
  margin: 0;
  background: var(--dw-bg-soft);
}
.dw-marquee__track {
  display: flex; gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  font-family: var(--font-sans-head, system-ui);
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--dw-grey-light);
}
.dw-marquee__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--dw-red); display: inline-block;
  vertical-align: middle; flex-shrink: 0; margin-top: 0.35rem;
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

