:root {
  --bg: #0e0e0e;
  --panel: #141414;
  --text: #f5f5f5;
  --muted: #cfcfcf;
  --line: #262626;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 auto;
}

.logo-text {
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: lowercase;
  color: white;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid transparent;
}

.menu a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ---- grouped dropdown menus ---- */
.nav-group { position: relative; display: inline-flex; }
.nav-parent {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 0; padding: 0; margin: 0;
  color: var(--muted); font: inherit; font-size: 14px; cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav-parent:hover,
.nav-group:hover .nav-parent,
.nav-group:focus-within .nav-parent,
.nav-parent.active { color: var(--text); border-color: var(--accent); }
.nav-parent .caret { font-size: 10px; opacity: .75; transition: transform .18s ease; }
.nav-group:hover .nav-parent .caret,
.nav-group.open .nav-parent .caret { transform: rotate(180deg); }
/* invisible hover bridge so the menu doesn't close in the gap */
.nav-group::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.nav-drop {
  position: absolute; top: calc(100% + 11px); left: 0; min-width: 210px;
  display: flex; flex-direction: column;
  background: #161616; border: 1px solid var(--line); border-radius: 9px;
  padding: 7px 0; box-shadow: 0 16px 38px rgba(0, 0, 0, .55);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 60;
}
.nav-group:hover .nav-drop,
.nav-group:focus-within .nav-drop,
.nav-group.open .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a {
  padding: 8px 18px; font-size: 14px; white-space: nowrap;
  color: var(--muted); border-bottom: 0;
}
.nav-drop a:hover,
.nav-drop a.active { color: var(--text); border-color: transparent; background: rgba(242, 66, 87, .14); }

@media (max-width: 760px) {
  .nav-group { display: block; width: 100%; }
  .nav-parent { width: 100%; justify-content: flex-start; }
  .nav-group::after { display: none; }
  .nav-drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; background: none;
    padding: 2px 0 8px 14px; min-width: 0;
  }
}

/* SHARED LAYOUT */
.page,
.hero,
section,
.footer,
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}


.page {
  padding-top: 64px;
  padding-bottom: 72px;
}

.container {
  padding-top: 80px;
  padding-bottom: 60px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #bdbdbd;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 780px;
}

p {
  line-height: 1.7;
  color: #dddddd;
  margin: 0 0 20px;
}

.intro {
  max-width: 720px;
  color: #d8d8d8;
  line-height: 1.9;
  font-size: 18px;
  margin: 0 0 34px;
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  background: transparent;
  color: var(--text);
}

.button:hover {
  background: #f5f5f5;
  color: #0e0e0e;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--muted);
}

.button.secondary:hover {
  color: #0e0e0e;
  border-color: #f5f5f5;
}

/* CARDS / GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card-link {
  display: block;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.card:hover img {
  transform: scale(1.30);
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.3), transparent);
}

.overlay h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.overlay p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #d6d6d6;
}

/* PANELS */
.panel,
.quote-card,
.set-card,
.contact-card,
.card-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px;
}

/* FOOTER */
.footer {
  padding-top: 0;
  padding-bottom: 46px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #9f9f9f;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
  margin: 18px 0 0;
  max-width: 520px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

/* MODULE PAGES */
.hero {
  padding-top: 92px;
  padding-bottom: 90px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 600;
}

.section-head p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  line-height: 1.8;
}


.module-footer {
  margin-top: 22px;
}

.module-footer a {
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

/* RESPONSIVE */
@media (max-width: 760px) {
  .nav {
    align-items: start;
    flex-direction: column;
  }

  .menu {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h1 {
    line-height: 1.02;
  }

  .container {
    padding-top: 64px;
  }

  .card img {
    height: 260px;
  }
}

/* ============================================================
   EL EJE — brand layer
   Unifies the site with the "El Eje" macOS app: shared coral
   accent (#f24257), tighter type, and the components used by
   the home + press pages. Added on top of the base styles.
   ============================================================ */
:root {
  --accent: #f24257;          /* El Eje app coral-red */
  --accent-600: #e0334a;
  --accent-soft: rgba(242, 66, 87, 0.14);
  --accent-line: rgba(242, 66, 87, 0.32);
  --accent-2: #e64db3;        /* app magenta, for gradients */
  --bg-2: #0b0b0b;
  --text-dim: #b9b9b9;
  --grad: linear-gradient(118deg, var(--accent), var(--accent-2));
  --maxwide: 1180px;
}

::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* NAV — coral hover + active state */
.menu a { transition: color .18s ease, border-color .18s ease; }
.menu a:hover,
.menu a.active { color: var(--text); border-color: var(--accent); }
.logo-text { transition: color .18s ease; }

/* EYEBROW — small coral kicker with a leading rule */
.eyebrow.accent {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow.accent::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* BUTTONS — add a filled coral primary */
.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}
.button.primary:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
  color: #fff;
}

/* HERO — home variant */
.hero.home {
  position: relative;
  padding-top: 104px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero.home::before {            /* soft coral glow + axis motif */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 420px at 78% 18%, rgba(242, 66, 87, 0.18), transparent 60%),
    radial-gradient(520px 380px at 12% 90%, rgba(230, 77, 179, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero.home > * { position: relative; z-index: 1; }
.hero .lead {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 30px;
}
.hero h1 .acc { color: var(--accent); }

/* CREDIBILITY STRIP */
.cred-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 8px;
}
.cred-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
}
.cred-strip .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 6px;
}
.cred-strip span.item {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  white-space: nowrap;
}
.cred-strip span.dot { color: #4a4a4a; }

/* PILLARS — Play / Teach / Build */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s ease, transform .2s ease;
}
.pillar:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.pillar .pill-k {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.pillar h3 { margin: 0; font-size: 21px; font-weight: 600; }
.pillar p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.pillar .more {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid transparent;
  width: fit-content;
}
.pillar:hover .more { border-color: var(--accent); }

/* CTA BAND */
.cta-band {
  border: 1px solid var(--accent-line);
  background:
    linear-gradient(120deg, rgba(242, 66, 87, 0.12), rgba(230, 77, 179, 0.06)),
    var(--panel);
  padding: 40px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 6px; font-size: 26px; font-weight: 600; }
.cta-band p { margin: 0; color: var(--muted); max-width: 520px; }

/* TESTIMONIAL dots in coral */
.dot.active { background: var(--accent); }

/* ===== PRESS / EPK ===== */
.epk-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.facts li:last-child { border-bottom: none; }
.facts .k { color: var(--accent); letter-spacing: 0.04em; }
.facts .v { color: #e2e2e2; }

.engagements { list-style: none; margin: 0; padding: 0; }
.engagements li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #e2e2e2;
}
.engagements li .yr { color: var(--text-dim); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* photo grid (press shots) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.photo-grid .shot {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, #161616 0 12px, #131313 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}
.photo-grid .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* TOOLS hub cards reuse .panel; add a small tag */
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* SECTION spacing helper */
.section-pad { padding-top: 30px; padding-bottom: 30px; }
hr.rule { border: none; border-top: 1px solid var(--line); margin: 0; }

@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
  .epk-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .facts li { grid-template-columns: 104px 1fr; }
  .cta-band { padding: 28px 22px; }
}

/* ===== FOOTER (rich) ===== */
.footer.rich {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 46px;
  padding-bottom: 30px;
}
.footer .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer .foot-brand { max-width: 360px; }
.footer .foot-brand .logo { margin-bottom: 14px; }
.footer .foot-brand p { margin: 0; color: #9f9f9f; font-size: 14px; line-height: 1.8; }
.footer .foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer .foot-col { display: flex; flex-direction: column; gap: 10px; }
.footer .foot-col h4 {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.footer .foot-col a { color: #b6b6b6; font-size: 14px; }
.footer .foot-col a:hover { color: var(--text); }
.footer .footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #7f7f7f;
  font-size: 13px;
}

/* ===== REVIEWS CAROUSEL ===== */
.quote-section { padding-bottom: 70px; margin-top: 50px; }
.quote-card {
  max-width: 820px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 0;
}
.quote-viewport { overflow: hidden; width: 100%; }
.quote-track { display: flex; transition: transform .55s ease; will-change: transform; }
.quote-slide { min-width: 100%; flex: 0 0 100%; padding: 38px 34px 78px; }
.quote {
  margin: 0 0 18px;
  font-size: 23px;
  line-height: 1.85;
  color: #efefef;
  min-height: 110px;
}
.quote-source { color: #b9b9b9; font-size: 14px; line-height: 1.7; }
.quote-controls {
  position: absolute;
  left: 34px; right: 34px; bottom: 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.quote-dots { display: flex; gap: 8px; flex-wrap: wrap; }
.dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: none; padding: 0; cursor: pointer;
}
.next-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent; color: var(--muted);
  padding: 10px 16px; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.next-button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
@media (max-width: 760px) {
  .quote { min-height: 0; }
  .quote-card { min-height: 320px; }
  .quote-controls { position: static; padding: 0 34px 26px; }
  .quote-slide { padding-bottom: 26px; }
}

/* ===== PHOTO HERO (homepage) ===== */
.hero-photo {
  position: relative;
  width: 100%;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: #0e0e0e url('/images/dj-hero.jpg') no-repeat;
  background-size: cover;
  background-position: 74% center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(96deg, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.66) 27%, rgba(12,12,12,0.24) 52%, rgba(12,12,12,0) 74%),
    linear-gradient(to top, rgba(12,12,12,0.62), transparent 26%);
}
.hero-photo-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
}
.hero-photo h1 { text-shadow: 0 2px 28px rgba(0,0,0,0.5); }
.hero-photo .lead {
  max-width: 560px;
  font-size: 19px;
  line-height: 1.8;
  color: #ececec;
  margin: 0 0 30px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.55);
}
.hero-photo .eyebrow.accent { color: #ff6b7d; }
.hero-photo h1 .acc { color: #ff6b7d; }
@media (max-width: 900px) {
  .hero-photo { min-height: 78vh; background-position: 70% center; }
  .hero-photo-inner { padding: 120px 22px 80px; }
  .hero-photo::before {
    background:
      linear-gradient(to top, rgba(12,12,12,0.95) 6%, rgba(12,12,12,0.55) 55%, rgba(12,12,12,0.38)),
      linear-gradient(96deg, rgba(12,12,12,0.80), rgba(12,12,12,0.30) 70%);
  }
}
@media (max-width: 560px) {
  .hero-photo { background-image: url('/images/dj-hero-sm.jpg'); }
}

/* ===== SUBHERO (photo banner for inner pages) ===== */
.subhero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  background: #0e0e0e no-repeat center center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.96), rgba(12,12,12,0.55) 46%, rgba(12,12,12,0.28));
}
.subhero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 34px;
}
.subhero .eyebrow.accent { color: #ff6b7d; }
.subhero h1 { margin: 0; text-shadow: 0 2px 22px rgba(0,0,0,0.5); }
.subhero p.lead { margin: 14px 0 0; max-width: 620px; color: #e6e6e6; line-height: 1.7; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }

/* ===== PRESS GALLERY (full images, masonry columns — never cropped) ===== */
.press-gallery { columns: 3; column-gap: 14px; }
.press-gallery .g {
  break-inside: avoid;
  margin: 0 0 14px;
  border: 1px solid var(--line);
  background: #111;
  line-height: 0;
}
.press-gallery .g img { width: 100%; height: auto; display: block; }
@media (max-width: 820px) { .press-gallery { columns: 2; } }
@media (max-width: 520px) { .press-gallery { columns: 1; } }

/* ===== BILINGUAL CONTENT (dual EN/ES blocks toggled by <html lang>) ===== */
html[lang="es"] [lang="en"] { display: none !important; }
html[lang="en"] [lang="es"] { display: none !important; }

/* ===== LANGUAGE SWITCH ===== */
.lang-switch { display: inline-flex; align-items: center; gap: 5px; margin-left: 4px; }
.lang-btn {
  background: none; border: none; cursor: pointer; font: inherit; font-size: 13px;
  color: var(--muted); padding: 2px 3px; display: inline-flex; align-items: center; gap: 4px;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: #fff; }
.lang-btn.active .lc { color: var(--accent); }
.lang-sep { color: #444; font-size: 12px; }

/* ===== COMING SOON — iOS app mockup ===== */
.comingsoon {
  border: 1px solid var(--accent-line);
  background: linear-gradient(120deg, rgba(242,66,87,0.10), rgba(230,77,179,0.05)), var(--panel);
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 44px; flex-wrap: wrap;
}
.cs-text { flex: 1 1 320px; max-width: 540px; }
.cs-text .tag { margin-bottom: 12px; }
.cs-text h2 { font-size: 26px; font-weight: 600; margin: 0 0 10px; }
.cs-text p { color: var(--muted); line-height: 1.7; margin: 0 0 22px; }
.phone {
  width: 236px; flex: 0 0 auto; position: relative;
  background: #0a0a0a; border: 1px solid #2c2c2c; border-radius: 38px; padding: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.phone-notch {
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 18px; background: #0a0a0a; border-radius: 12px; z-index: 3;
}
.phone-screen {
  background: #fff; color: #111; border-radius: 30px; overflow: hidden;
  padding: 34px 14px 8px; font-size: 11px; line-height: 1.3;
}
.ph-status { display: flex; justify-content: space-between; font-weight: 600; color: #111; margin-bottom: 6px; letter-spacing: .02em; }
.ph-title { font-size: 23px; font-weight: 800; color: #111; margin: 4px 0 9px; }
.ph-search { background: #f0f0f3; color: #8a8a8a; border-radius: 11px; padding: 9px 11px; }
.ph-loc { display: flex; justify-content: space-between; color: #9a9a9a; font-size: 10px; margin: 11px 2px 4px; }
.ph-ev { border-top: 1px solid #ececec; padding: 9px 2px; }
.ph-ev:first-child { border-top: none; }
.ph-ev-name { font-weight: 700; color: #111; font-size: 12.5px; }
.ph-ev-meta { color: #9a9a9a; font-size: 10px; margin-top: 3px; }
.ph-ev-meta .bf { color: var(--accent); }
.ph-tabs { display: flex; justify-content: space-around; border-top: 1px solid #ececec; margin-top: 6px; padding: 8px 0 4px; }
.ph-tab { color: #b3b3b3; font-size: 9px; font-weight: 600; }
.ph-tab.active { color: var(--accent); }
@media (max-width: 760px) { .comingsoon { justify-content: center; padding: 30px 24px; } }

/* ===== SETLISTS (DJ Sets page) ===== */
.set { border: 1px solid var(--line); background: var(--panel); padding: 26px 28px; margin-bottom: 22px; }
.set-head { margin-bottom: 14px; }
.set-head h3 { font-size: 23px; font-weight: 600; margin: 0 0 5px; }
.set-head .set-meta { margin-bottom: 7px; }
.set-note { margin: 0; color: #7c7c7c; font-size: 13px; }
.tanda { padding: 11px 0; border-top: 1px solid var(--line); }
.tanda-head { font-size: 13px; margin-bottom: 3px; }
.tanda-head .t-orch { color: #fff; font-weight: 600; }
.tanda-head .t-sing { color: var(--accent); }
.tanda-songs { color: var(--muted); font-size: 14px; line-height: 1.55; }
.cortina-div { text-align: center; padding: 7px 0 3px; }
.cortina-div span { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #4d4d4d; }
@media (min-width: 1000px) {
  .setlist { columns: 2; column-gap: 38px; }
  .setlist .tanda, .setlist .cortina-div { break-inside: avoid; }
  .setlist .tanda:first-child { border-top: none; }
}

/* booking form: two fields side by side */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ===== ARTICLE (learning modules) ===== */
.article { max-width: 760px; margin: 0 auto; }
.article p { margin: 0 0 18px; color: #dcdcdc; line-height: 1.85; font-size: 17px; }
.article .lede { font-size: 21px; line-height: 1.7; color: #f1f1f1; margin-bottom: 30px; }
.article h2 { font-size: 25px; font-weight: 600; margin: 42px 0 14px; letter-spacing: -0.01em; }
.article h3 { font-size: 18px; font-weight: 600; margin: 26px 0 8px; color: #fff; }
/* Songbook entry header: title with the year as a subtitle line, magazine style */
.article h3.song { margin-bottom: 6px; }
.article h3.song .yr {
  display: block; margin-top: 3px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent); font-variant-numeric: tabular-nums; text-transform: uppercase;
}
/* Songbook credit line (Letra / Música), magazine style */
.article p.credits { margin: 0 0 14px; font-size: 13px; color: #8c8c8c; font-style: italic; }
/* Magazine note printed under a lyric */
.article p.lyric-note {
  margin: 14px 0 8px; padding-left: 14px;
  border-left: 2px solid var(--accent-line);
  font-size: 14px; line-height: 1.6; color: #9a9a9a;
}
.article ul { margin: 0 0 18px; padding-left: 20px; }
.article li { margin-bottom: 9px; color: #dcdcdc; line-height: 1.7; font-size: 17px; }
.article a { color: #fff; border-bottom: 1px solid var(--accent); }
.article a:hover { color: var(--accent); }
.article strong { color: #fff; }

/* "In El Eje Player" callout */
.inapp {
  border: 1px solid var(--accent-line);
  background: linear-gradient(120deg, rgba(242,66,87,0.10), rgba(230,77,179,0.04)), var(--panel);
  padding: 20px 22px;
  margin: 30px 0;
}
.inapp .k {
  display: flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 9px; font-weight: 600;
}
.inapp p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.inapp p a { color: #fff; border-bottom: 1px solid var(--accent); }

/* References */
.refs { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.refs h2 { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.refs ol { margin: 0; padding-left: 20px; }
.refs li { font-size: 14px; color: var(--text-dim); margin-bottom: 11px; line-height: 1.6; }
.refs a { color: #cfcfcf; border-bottom: 1px solid var(--accent-line); }
.refs a:hover { color: #fff; border-color: var(--accent); }

/* Module prev/next nav */
.mod-nav { max-width: 760px; margin: 40px auto 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); }
.mod-nav a { color: var(--muted); font-size: 14px; border-bottom: 1px solid transparent; }
.mod-nav a:hover { color: #fff; border-color: var(--accent); }

/* ===== GIGS strip — upcoming auto-moves to "recently played" by date ===== */
.cred-inner.gigs-upcoming { padding-bottom: 2px; }
.cred-inner.gigs-played { padding-top: 10px; }
.cred-strip .flag { font-size: 13px; margin-right: 2px; }
.cred-strip .loc { color: #7c7c7c; }
.cred-strip .when { color: var(--accent); font-variant-numeric: tabular-nums; white-space: nowrap; }
.cred-inner.gigs-upcoming .item { color: #ededed; }
.cred-inner.gigs-upcoming .item .venue { color: #fff; font-weight: 600; }

/* ===== STORY-OF-TANGO ARTICLE SERIES ===== */
/* Inline figures inside long-form articles */
.article-figure { margin: 34px 0; }
.article-figure img {
  max-width: 100%; width: auto; height: auto; max-height: 78vh;
  display: block; margin: 0 auto;
  border: 1px solid var(--line); background: #0a0a0a;
}
/* Very tall (portrait / oval vignette) figures: keep them modest, not full-height */
.article-figure.tall img { max-height: 400px; }
.article-figure figcaption {
  margin-top: 9px; font-size: 13px; line-height: 1.55; color: #9a9a9a;
  padding-left: 13px; border-left: 2px solid var(--accent-line);
}
/* Let figures breathe wider than the 760px text column on big screens */
@media (min-width: 1080px) {
  .article-figure { margin-left: -90px; margin-right: -90px; }
  .article-figure figcaption { padding-left: 90px; border-left: none; }
}

/* Pull quote */
.pull-quote {
  margin: 40px 0; padding: 4px 0 4px 24px;
  border-left: 3px solid var(--accent);
  font-size: 24px; line-height: 1.5; font-weight: 500; color: #fff; letter-spacing: -0.01em;
}

/* In-article blockquotes (lyrics / testimony) */
.article blockquote {
  margin: 24px 0; padding: 14px 22px;
  border-left: 2px solid var(--accent-line); background: rgba(255,255,255,0.025);
  color: #ededed; font-style: normal; line-height: 1.7;
}
.article blockquote em { color: #aeaeae; display: inline-block; margin-top: 4px; }
/* Lyric fragment with its translation in a parallel column (songbook) */
.article blockquote.lyric {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start;
}
.article blockquote.lyric p { margin: 0; }
.article blockquote.lyric .orig { padding-right: 26px; color: #ededed; }
.article blockquote.lyric .trans { padding-left: 26px; border-left: 1px solid var(--accent-line); }
.article blockquote.lyric .trans em { color: #9a9a9a; display: block; margin-top: 0; font-style: italic; }
.article blockquote.lyric-orig p { margin: 0; }
@media (max-width: 640px) {
  .article blockquote.lyric { grid-template-columns: 1fr; }
  .article blockquote.lyric .orig { padding-right: 0; }
  .article blockquote.lyric .trans {
    padding-left: 0; margin-top: 10px; padding-top: 10px;
    border-left: none; border-top: 1px solid var(--accent-line);
  }
}

/* hero kicker number on subhero */
.subhero .eyebrow .ser-num { color: #fff; opacity: 0.55; }

/* ===== SERIES INDEX (articles.html) ===== */
.series-intro { max-width: var(--max); margin: 0 auto; padding: 46px 24px 8px; }
.series-intro .lead { font-size: 18px; line-height: 1.8; color: var(--muted); max-width: 680px; }
.series-toc { max-width: var(--max); margin: 0 auto; padding: 16px 24px 70px; }
.series-card .card img { height: 230px; }
.series-card .overlay { background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.38) 55%, rgba(0,0,0,0.05)); }
.series-card .ser-kicker {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 6px; font-weight: 600;
}
.series-card .overlay h3 { font-size: 19px; line-height: 1.28; margin: 0 0 7px; color: #fff; }
.series-card .overlay p { font-size: 13.5px; color: #cfcfcf; }
.series-card .card { transition: border-color .3s ease; }
.series-card .card:hover { border-color: var(--accent-line); }


/* ===== FEATURED ESSAY BANNER (articles index) ===== */
.feature-banner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
  border: 1px solid var(--accent-line); background: var(--panel);
  margin-bottom: 30px; overflow: hidden; transition: border-color .3s ease;
}
.feature-banner:hover { border-color: var(--accent); }
.feature-banner .fb-img {
  min-height: 320px; background-size: cover; background-position: center top;
  border-right: 1px solid var(--line);
}
.feature-banner .fb-text { padding: 34px 36px; align-self: center; }
.fb-kicker {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 12px; font-weight: 600;
}
.feature-banner .fb-text h2 { font-size: 30px; line-height: 1.18; margin: 0 0 14px; color: #fff; letter-spacing: -0.01em; }
.fb-dek { color: var(--muted); line-height: 1.7; font-size: 16px; margin: 0 0 18px; }
.fb-cta { color: #fff; font-size: 14px; font-weight: 600; margin: 0; }
.fb-cta span { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
@media (max-width: 760px) {
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner .fb-img { min-height: 220px; border-right: none; border-bottom: 1px solid var(--line); }
  .feature-banner .fb-text { padding: 26px 24px; }
  .feature-banner .fb-text h2 { font-size: 24px; }
}


/* ===== POETRY PAIRINGS (Persian verse / tango lyric) ===== */
.article blockquote.verse-fa {
  direction: rtl; text-align: right;
  border-left: none; border-right: 3px solid var(--accent);
  font-size: 23px; line-height: 2.0; color: #f4f4f4;
  font-family: "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  margin: 26px 0 6px; padding: 8px 22px 8px 0;
}
.article blockquote.verse-tango {
  border-left: 3px solid var(--accent); margin: 22px 0 6px; font-size: 18px; line-height: 1.7;
}
.article .translit { font-style: italic; color: #9a9a9a; font-size: 14.5px; line-height: 1.6; margin: 0 0 6px; }
.article .gloss { color: #e9e9e9; font-size: 16.5px; line-height: 1.7; margin: 0 0 4px; }
.article .v-attrib { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8a8a; margin: 0 0 4px; }
.article .pairing-vs { text-align: center; color: var(--accent); letter-spacing: 0.3em; font-size: 12px; margin: 14px 0; opacity: 0.8; }


/* ===== ESSAYS ARCHIVE (weekly releases) ===== */
.essays-head { margin: 54px 0 22px; padding-top: 30px; border-top: 1px solid var(--line); }
.essays-head h2 { font-size: 26px; font-weight: 600; margin: 0 0 8px; color: #fff; }
.essays-head p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 620px; margin: 0; }


/* ===== TILE TITLES: clamp so long titles never overflow a card ===== */
.series-card .overlay h3 {
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.series-card .overlay p {
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* lunfardo glossary (article body, dark theme) */
.lunf-glos{margin:6px 0 10px}
.lunf-glos dl{margin:0;display:grid;grid-template-columns:auto 1fr;gap:7px 18px;font-size:15.5px;line-height:1.5}
.lunf-glos dt{font-weight:600;font-style:italic;color:var(--accent)}
.lunf-glos dd{margin:0;color:var(--muted)}
@media(max-width:560px){.lunf-glos dl{grid-template-columns:1fr;gap:1px 0}.lunf-glos dd{margin:0 0 8px}}
.lunf-glos h4{font-family:var(--display,Georgia,serif);font-style:italic;font-weight:600;color:#e9e9e9;font-size:17px;margin:16px 0 5px;border-bottom:1px solid rgba(180,150,90,.28);padding-bottom:3px}
.lunf-glos h4:first-child{margin-top:2px}

/* ============================================================
   TUTORIAL / GUIDE PAGES (eleje-player-guide / eleje-chrome-guide)
   Indexed how-to pages: a sticky table of contents beside
   sectioned content, each section carrying a screen-recording
   placeholder that auto-swaps to a <video> once the file exists.
   ============================================================ */
.tut-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  max-width: var(--maxwide);
}

/* sticky table of contents */
.tut-toc { position: sticky; top: 86px; align-self: start; max-height: calc(100vh - 110px); overflow-y: auto; font-size: 13.5px; }
.tut-toc .toc-title { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 12px 16px; }
.tut-toc ol { list-style: none; margin: 0; padding: 0; }
.tut-toc a { display: block; padding: 5px 0 5px 16px; color: #9b9b9b; border-left: 2px solid var(--line); line-height: 1.45; transition: color .15s ease, border-color .15s ease; }
.tut-toc > ol > li > a { color: #d2d2d2; font-weight: 500; }
.tut-toc a:hover { color: var(--text); border-left-color: rgba(242,66,87,0.5); }
.tut-toc a.active { color: #fff; border-left-color: var(--accent); }
.tut-toc ol ol a { padding-left: 30px; font-size: 12.5px; color: #8a8a8a; }
.tut-toc ol ol a.active { color: #fff; }

/* content column reuses .article type scale */
.tut-content { min-width: 0; max-width: 768px; }
.tut-intro { font-size: 18px; line-height: 1.85; color: #e3e3e3; max-width: 720px; margin: 0 0 14px; }
.tut-sec { scroll-margin-top: 84px; padding-top: 14px; }
.tut-sec + .tut-sec { margin-top: 14px; padding-top: 30px; border-top: 1px solid var(--line); }
.tut-sec .sec-kicker { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 6px; }
.tut-sec h2 { font-size: 27px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.01em; }
.tut-sec h3 { font-size: 18px; font-weight: 600; margin: 26px 0 8px; color: #fff; }
.tut-sec p { color: #d9d9d9; line-height: 1.8; font-size: 16px; margin: 0 0 16px; }
.tut-sec ul, .tut-sec ol.list { margin: 0 0 16px; padding-left: 22px; }
.tut-sec li { color: #d6d6d6; line-height: 1.7; font-size: 16px; margin-bottom: 8px; }
.tut-sec a { color: #fff; border-bottom: 1px solid var(--accent); }
.tut-sec a:hover { color: var(--accent); }
.tut-sec strong { color: #fff; }
.tut-sec code, .tut-sec kbd { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.tut-sec code { background: rgba(255,255,255,0.07); padding: 2px 7px; border-radius: 4px; color: #f0d9dd; }
kbd { font-size: 12px; background: rgba(255,255,255,0.08); border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 5px; padding: 1px 7px; color: #ededed; white-space: nowrap; }

/* numbered procedure steps */
.steps { max-width: 720px; margin: 0 0 18px; padding: 0; list-style: none; counter-reset: step; }
.steps > li { position: relative; padding: 0 0 16px 50px; margin: 0; color: #dcdcdc; line-height: 1.7; font-size: 16px; border-left: 1px solid var(--line); margin-left: 15px; }
.steps > li::before { counter-increment: step; content: counter(step); position: absolute; left: -16px; top: -3px; width: 31px; height: 31px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.steps > li:last-child { border-left-color: transparent; padding-bottom: 2px; }
.steps strong { color: #fff; }

/* tip / heads-up callouts */
.callout { border: 1px solid var(--line); border-left: 3px solid var(--accent); background: rgba(255,255,255,0.025); padding: 14px 18px; margin: 18px 0; border-radius: 0 8px 8px 0; }
.callout .ct { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 6px; }
.callout p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.callout p + p { margin-top: 8px; }
.callout.warn { border-left-color: #e0a32e; }
.callout.warn .ct { color: #e8b54a; }
.callout.beta { border-left-color: #6f8fd6; }
.callout.beta .ct { color: #88a4e0; }

/* screen-recording placeholder → real <video> when the file lands */
.tut-video { position: relative; margin: 6px 0 18px; border: 1px solid var(--line); border-radius: 10px; aspect-ratio: 16 / 9; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(440px 210px at 50% 32%, rgba(242,66,87,0.09), transparent 72%), repeating-linear-gradient(135deg, #141414 0 14px, #101010 14px 28px); }
.tut-video .play { width: 58px; height: 58px; border-radius: 999px; border: 1px solid var(--accent-line); background: rgba(242,66,87,0.13); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 13px; font-size: 20px; padding-left: 4px; }
.tut-video .vlabel { font-size: 13px; letter-spacing: 0.03em; color: #d0d0d0; padding: 0 18px; }
.tut-video .vsub { font-size: 11px; color: #6c6c6c; margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.tut-video.has-video { background: #000; }
.tut-video video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }

/* a small "jump to extension/player guide" cross-link banner */
.guide-switch { display: flex; gap: 12px; flex-wrap: wrap; margin: 4px 0 26px; }

@media (max-width: 940px) {
  .tut-layout { grid-template-columns: 1fr; gap: 0; }
  .tut-toc { position: static; max-height: none; overflow: visible; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 28px; }
  .tut-toc ol ol { display: none; }
}

/* ============================================================
   ANNOTATED UI MOCKUPS + RICH GUIDE BLOCKS
   Faux app/extension surfaces drawn in HTML/CSS, with numbered
   coral callouts that map to a "what each control does" legend.
   ============================================================ */
svg.ic { width: 22px; height: 22px; display: block; flex: 0 0 auto; color: inherit; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
svg.ic.sm { width: 15px; height: 15px; }

.app-mock {
  position: relative; margin: 26px 0 4px;
  border: 1px solid var(--line); border-radius: 14px;
  background: radial-gradient(720px 340px at 50% -8%, rgba(242,66,87,0.07), transparent 70%), #0c0d10;
  padding: 30px 20px 22px; overflow: visible;
}
.app-mock .mock-cap { position: absolute; top: 11px; left: 18px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #7e828b; }
.app-mock .mock-cap .on { color: var(--accent); }

/* a deck/panel bar */
.mbar { position: relative; display: flex; align-items: center; gap: 18px; background: linear-gradient(180deg,#181b21,#121419); border: 1px solid #2a2d34; border-radius: 12px; padding: 12px 16px; min-height: 60px; }
.mbar.stack { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px 16px; }
.mrow { display: flex; align-items: center; gap: 18px; }
.mspring { flex: 1; }

/* a control: relative so its callout badge can pin to its corner */
.mc { position: relative; display: inline-flex; align-items: center; gap: 7px; color: #c9ccd2; }
.mc.grow { flex: 1; flex-direction: column; align-items: stretch; gap: 7px; min-width: 0; }
.mc.btn { width: 36px; height: 36px; justify-content: center; border-radius: 9px; background: #22252c; border: 1px solid #2a2d34; }
.mc.btn.lg { width: 46px; height: 46px; background: var(--accent); border-color: var(--accent); color: #fff; }
.mc.accent { color: var(--accent); }
.mc.on { background: var(--accent); border-color: var(--accent); color: #fff; }

/* numbered callout badge, pinned to a control's top-right corner */
.cue { position: absolute; top: -10px; right: -11px; width: 21px; height: 21px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 7px rgba(0,0,0,0.55); z-index: 4; }
.cue.tl { right: auto; left: -11px; }

/* faux deck pills / labels / readouts inside a mockup */
.pill { display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 2px 7px; border-radius: 5px; }
.pill.ghost { color: #9a9ea6; border: 1px solid #3a3e46; }
.pill.live { background: var(--accent); color: #fff; }
.m-titlewrap { min-width: 0; overflow: hidden; }
.m-title { color: #f2f2f2; font-size: 15px; font-weight: 600; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-sub { color: #8e929a; font-size: 12px; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-time { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px; color: #aeb2ba; white-space: nowrap; }
.m-time .rem { color: var(--accent); }
.m-pct { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: #d6d6d6; min-width: 46px; text-align: center; }
.m-ends { text-align: center; line-height: 1.1; }
.m-ends .k { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: #74787f; display: block; }
.m-ends .v { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: #c9ccd2; }

/* faux timeline + colored cue markers */
.m-line { position: relative; height: 8px; border-radius: 999px; background: #2b2f37; overflow: visible; }
.m-line .played { position: absolute; inset: 0 55% 0 0; border-radius: 999px; background: var(--accent); }
.m-line .head { position: absolute; left: 45%; top: 50%; width: 11px; height: 11px; border-radius: 999px; background: #0c0d10; border: 2px solid var(--accent); transform: translate(-50%,-50%); }
.m-pin { position: absolute; top: -7px; width: 3px; height: 22px; border-radius: 2px; }
.m-pin::after { content: ""; position: absolute; top: -4px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 999px; background: inherit; }
.pin-load { background: #46c46a; } .pin-fin { background: #6f8fd6; } .pin-fout { background: #e0a32e; }
.pin-min { background: #2fbfb0; } .pin-mout { background: #e25aa0; }

/* faux EQ curve */
.m-eq { display: flex; align-items: flex-end; gap: 6px; height: 92px; padding: 6px 4px 0; }
.m-eq .bnd { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 5px; height: 100%; }
.m-eq .bar { width: 7px; border-radius: 4px; background: linear-gradient(180deg, var(--accent), #b3354a); }
.m-eq .lab { font-size: 8.5px; color: #7e828b; letter-spacing: 0.02em; }

/* faux waveform strip */
.m-wave { display: flex; align-items: center; gap: 2px; height: 84px; padding: 0 2px; }
.m-wave i { flex: 1; background: #3a3f48; border-radius: 1px; display: block; }
.m-wave i.lit { background: var(--accent); }
.m-wave .ph { width: 2px; background: #fff; align-self: stretch; }
.m-zoom { display: flex; gap: 6px; align-items: center; }
.m-zoom .z { font-size: 11px; color: #8e929a; padding: 2px 8px; border: 1px solid #2a2d34; border-radius: 6px; }
.m-zoom .z.on { color: #fff; border-color: var(--accent); background: rgba(242,66,87,0.16); }
.m-range { margin-left: auto; font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: #8e929a; }

/* the legend that decodes the numbered callouts */
.ui-legend { list-style: none; margin: 14px 0 24px; padding: 0; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; background: var(--panel); }
.ui-legend li { display: grid; grid-template-columns: 26px 1fr; gap: 13px; align-items: start; padding: 12px 16px; border-top: 1px solid var(--line); font-size: 14.5px; line-height: 1.6; color: #d4d4d4; }
.ui-legend li:first-child { border-top: none; }
.ui-legend .n { width: 22px; height: 22px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ui-legend strong { color: #fff; }
.ui-legend code, .ui-legend kbd { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; background: rgba(255,255,255,0.07); padding: 1px 6px; border-radius: 4px; color: #f0d9dd; }

/* annotated real screenshot: numbered badges overlaid on an <img> */
.shot { position: relative; margin: 24px 0 4px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #0a0a0a; }
.shot img { width: 100%; height: auto; display: block; }
.shot .spot { position: absolute; width: 24px; height: 24px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 3px rgba(242,66,87,0.28), 0 2px 8px rgba(0,0,0,0.6); transform: translate(-50%,-50%); }
.fig-cap { margin: 9px 2px 0; font-size: 12.5px; color: #8e929a; text-align: center; letter-spacing: 0.02em; }

/* "what you'll learn" / quick-fact card grid */
.learn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; margin: 8px 0 6px; }
.learn-card { border: 1px solid var(--line); background: var(--panel); border-radius: 11px; padding: 16px 16px 15px; }
.learn-card .lc-ic { color: var(--accent); margin-bottom: 9px; }
.learn-card h4 { margin: 0 0 5px; font-size: 15px; font-weight: 600; color: #fff; }
.learn-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* small "watch the video" strip replacing the big placeholder */
.vid-strip { display: flex; align-items: center; gap: 12px; margin: 16px 0 8px; padding: 11px 15px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 0 9px 9px 0; background: rgba(242,66,87,0.05); }
.vid-strip .vp { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 999px; border: 1px solid var(--accent-line); background: rgba(242,66,87,0.14); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.vid-strip .vt { font-size: 13.5px; color: #d4d4d4; }
.vid-strip .vt b { color: #fff; font-weight: 600; }
.vid-strip .vt span { color: #7e828b; display: block; font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 1px; }
.vid-strip.has-video { display: block; padding: 0; border-left-width: 1px; background: #000; }
.vid-strip.has-video video { width: 100%; display: block; border-radius: 8px; }

@media (max-width: 640px) {
  .mbar { gap: 12px; }
  .mc.grow { min-width: 120px; }
}

/* lunfardo repertoire / track list (D'Arienzo etc.) */
.lunf-rep{margin:8px 0 6px;list-style:none;padding:0}
.lunf-rep li{margin:0 0 15px;padding:0 0 13px;border-bottom:1px solid rgba(180,150,90,.18)}
.lunf-rep li:last-child{border-bottom:0}
.lunf-rep .tk{font-style:italic;font-weight:600;color:var(--accent);font-size:17.5px}
.lunf-rep .mt{font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:var(--muted);margin-left:8px}
.lunf-rep .nt{display:block;color:#d9d4c8;font-size:15px;line-height:1.5;margin:3px 0 6px}
.lunf-rep .chips{display:flex;flex-wrap:wrap;gap:5px 6px}
.lunf-chip{font-size:13px;line-height:1.3;color:#e7e2d4;background:rgba(180,150,90,.14);border:1px solid rgba(180,150,90,.28);border-radius:3px;padding:1px 7px;font-style:italic}
