/* refined-content.css
   Fokus: typography tagline index
   Tidak menyentuh layout, terminal, atau boot animation.
*/

.tagline {
  font-family: "Inter", "IBM Plex Sans", "Roboto", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #d7d7d7;
  letter-spacing: 0.15px;
  margin: 10px 0 12px;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* justified for tidy multi-line tagline appearance */
  text-align: justify;
  text-justify: inter-word;
}

/* bilingual clarity */
.tagline[lang="en"] {
  color: #d8d8d8;
}

.tagline[lang="id"] {
  color: #cfcfcf;
  font-style: normal;
}

/* Responsiveness tetap lembut */
@media (max-width: 720px) {
  .tagline {
    font-size: 15px;
    line-height: 1.7;
  }
}
