.vanity {
  position: relative;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 1920 / 1000;
  background: #0e0e12;
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto;
}

/* ── Glow backgrounds ─────────────────────────────────── */
.vanity__glow {
  position: absolute;
  width: 48.33%;        /* 928 / 1920 */
  aspect-ratio: 928 / 808;
  pointer-events: none;
  mix-blend-mode: screen;
}
.vanity__glow img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vanity__glow--right { left: calc(50% + 99px); top: 9.7%; }
.vanity__glow--left  { left: -16px;            top: 28.5%; }

/* ── 5-column card grid ───────────────────────────────── */
.vanity__card-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 257fr 396fr 258fr 258fr 396fr;
  column-gap: 1.04%;    /* 20px at 1920px */
  padding: 0 7.19%;     /* 138px margins at 1920px */
}

.vanity__col { position: relative; }

/* ── Card base ────────────────────────────────────────── */
.vanity__card {
  position: absolute;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #28283f;
  background: linear-gradient(138deg, rgba(22,22,29,0.8) 1%, rgba(14,14,18,0.8) 98%);
}

/* col-a */
.vanity__card--left-top  { top: 31.1%; height: 24.9%; }
.vanity__card--left-tall { top: 58.5%; height: 42.9%; }

/* col-b */
.vanity__card--main {
  top: 44.9%; height: 42.7%; overflow: hidden;
  background: linear-gradient(132deg, rgb(22,22,29) 1%, rgb(14,14,18) 82%);
}
.vanity__card--bar-bottom { top: 89.4%; height: 7.5%; }

/* col-c */
.vanity__card--mid-left { top: 53.8%; height: 26.7%; }

/* col-d */
.vanity__card--bar-top   { top: 43.3%; height:  7.5%; }
.vanity__card--mid-right { top: 53.8%; height: 26.7%; }

/* col-e */
.vanity__card--right-top  { top: 11.9%; height: 30.3%; }
.vanity__card--right-tall { top: 44.9%; height: 42.7%; }

/* ── Main card inner content ──────────────────────────── */
.vanity__dropdown {
  position: absolute;
  right: 4%; top: 11.5%;
  width: 41.4%; height: 9.37%;
  border: 0.5px solid #2c2c32;
  border-radius: 60px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(168deg, rgb(22,22,29) 1%, rgb(14,14,18) 98%);
}
.vanity__dropdown span {
  font: 500 clamp(8px, 0.57vw, 11px)/1 var(--font-sans);
  color: #fff; white-space: nowrap;
}

.vanity__stat-value {
  position: absolute;
  left: 2%; top: 40.7%;
  font: 400 clamp(30px, 4vw, 77px)/1 var(--font-sans);
  color: #737373;
  letter-spacing: -0.06em; white-space: nowrap;
}

/* ── Glow accent lines ────────────────────────────────── */
.vanity__line {
  position: absolute;
  height: 4px;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.vanity__line img { position: absolute; width: 100%; height: 131.51%; top: -15.76%; left: 0; max-width: none; }
.vanity__line--1 { left: 36.77%; top: 44.9%; width: 5.78%; }
.vanity__line--2 { left: 37.29%; top: 10.2%; width: 5.78%; }

/* ── Heading overlay ──────────────────────────────────── */
.vanity__content {
  position: absolute;
  left: 21.6%;   /* col-b left edge: 415/1920 */
  top: 10.3%;
  width: 42.3%;
  display: flex; flex-direction: column; gap: 3.2%;
}

.vanity__headline {
  font: 500 clamp(24px, 3.125vw, 60px)/1.09 var(--font-sans);
  color: #fff;
}

/* ── Stat overlays ────────────────────────────────────── */
.vanity__badge-jan {
  position: absolute;
  left: 22.4%; top: 57%;
  display: inline-flex; align-items: center;
  padding: 0.42% 0.83%;
  border-radius: 50px; border: 1px solid #2c2c32;
  background: linear-gradient(139deg, rgba(22,22,29,0.9) 1%, rgba(14,14,18,0.9) 98%);
}
.vanity__badge-jan span {
  font: 500 clamp(10px, 0.83vw, 16px)/1 var(--font-sans);
  color: #fff; white-space: nowrap;
}

.vanity__stat-label {
  position: absolute;
  left: 22.4%; top: 70.4%;
  width: 12.66%;   /* 243/1920 */
  font: 400 clamp(10px, 0.83vw, 16px)/1.34 var(--font-sans);
  color: #fff;
}

/* ── Responsive breakpoints ───────────────────────────── */

/* BP1 ≤1400px: hide col-c, 4 columns */
@media (max-width: 1400px) {
  .vanity__card-grid {
    grid-template-columns: 257fr 396fr 258fr 396fr;
  }
  .vanity__card-grid > .vanity__col:nth-child(3) { display: none; }
  .vanity__content                              { left: 24.45%; }
  .vanity__badge-jan, .vanity__stat-label       { left: 25.2%; }
}

/* BP2 ≤1100px: 3 columns — col-b, col-c, col-d; hide col-a and col-e */
@media (max-width: 1100px) {
  .vanity__card-grid {
    grid-template-columns: 396fr 258fr 258fr;
  }
  .vanity__card-grid > .vanity__col:nth-child(1) { display: none; }
  .vanity__card-grid > .vanity__col:nth-child(3) { display: block; }
  .vanity__card-grid > .vanity__col:nth-child(5) { display: none; }
  .vanity__content                              { left: 7.19%; }
  .vanity__badge-jan, .vanity__stat-label       { left: 8%; }
  .vanity__glow--left                           { display: none; }
}

/* BP3 ≤768px: 2 columns — col-b + col-d */
@media (max-width: 768px) {
  .vanity                                        { aspect-ratio: 1920 / 1100; }
  .vanity__card-grid                             { grid-template-columns: 396fr 258fr; }
  .vanity__card-grid > .vanity__col:nth-child(3) { display: none; }
}
